How to Call System Default Email Client in BlackBerry - blackberry

I am new to blackberry so i need a code to call default email client in blackberry SDK If anybody knows share with me

Here you are:
Using Webworks
Using BB Java

Related

Use generated java sdk for web portal?

I am creating a web portal that controls the devices (like switching it on/off), visualize the data sent by those devices(endpoints). I have generated a java sdk. Do i use that sdk in my web portal or is it just for a device that sends telemetry data?
It is desirable to use generated sdk only for device that sends telemetry data.
There is no point in attaching sdk to your web application, as far as this part of the system doesn't treated as endpoint. It is bad practice to include endpoint sdk into the places, where lion's share of functionality would be ignored.

iOS and salesforce API connection

Hello I am new in WSDL salesforce API integration in iOS. And I got some WSDL to OBJC library files included into xcode project. And my first task is to go with app login screen. And as per android version we need to connect salesforce api with our app using :
ConnectorConfig config = new ConnectorConfig();
config.setUsername(username);
config.setPassword(password);
config.setAuthEndpoint(authEndPoint);
config.setTraceMessage(true);
config.setPrettyPrintXml(true);
partnerConnection = Connector.newConnection(config);
And in the response received sessionID. and set to sessionHeader.
So I think, I need same thing in iOS version. So please guide me to access the salesforce webservices.
Your best bet it to use a pre-existing SDK for Salesforce that is for iOS, rather than trying to map from some java/android code. Check out the Salesforce iOS SDK or ZKSforce

Firebase email or Facebook authentication with BlackBerry 10

I want to use Firebase with a BlackBerry 10 Native + Cascades App.
The problem is Firebase has no libraries for BlackBerry 10. I have done some research saying that I can use the REST API, but I cannot find anywhere on how to do email or facebook login via pure REST. Everything involves downloading the Javascript API which I cannot do as QML support with JS is giving me issues.
Does anyone have any ideas or suggestions?
By definition, you can't do authentication via REST. It requires that a user log into a third party service and enter credentials (not possible without a UI). You could create your own UI for authentication and generate your own custom tokens.
Once you have a token, you can pass that to the REST API by adding ?auth= to the URL.

Cookie managment in the blackberry mobile application

I have to implement the remember me functionality on my blackberry application so that to remember the user's login credentials for the next login. Could any one please guide me on this and tell me how can I accomplish this functionality and how to use cookie for this? I am developing my application in blackberry 5.0.
Thanks
Assuming it's really an application and not a website, just save your login token (that you get back from your web service) to the persistent store.

Paypal Integration in Blackberry?

Do we hav Paypal API for Blackberry as like the iPhone and Android. I have android PayPal API here https://www.x.com/community/ppx/xspaces/mobile/mep.
But i cant able to find it for Blackberry.
Please help me whether paypal transfer can be made in Blackberry or not.
Try by using this sdk https://www.x.com/community/ppx/sdks#WSDL
As far as I know there isn't a BlackBerry specific Paypal API.
So to get around this, we just launched the browser to the Paypal link. From there they could enter their Paypal credentials and pay as if they were using a desktop browser. It's not as clean as using an API though.
If you're looking for a cleaner solution, you could try creating a Paypal API wrapper for example using PHP, which is used by a proxy page. Then in the BlackBerry, use standard HTTP requests to send GET/POST requests to the proxy page. The proxy page will in turn use the wrapper you created to set up payment for you and your customer. This way you won't necessarily have to leave the application.

Resources