Brijesh Patel
Brijesh Patel

Reputation: 2958

Blackberry what SDK and language are used

I am new in Blackberry. Can anyone help me out for following queries?

  1. Which SDK is used in Blackberry?
  2. In what language are Blackberry applications developed?
  3. Can we call webservices through Blackberry applications?

Upvotes: 2

Views: 2402

Answers (2)

Fermin
Fermin

Reputation: 36081

As heavyd said you can use the Rapid Application Development for accessing web services.

I've used the Visual Studio plugin before but this doesn't allow you as much access to the API as using the standard JDE plugin for Eclipse or the Blackberrys Java Development Environment (at least when I used it). It all depends on what you want to do, whether it's whip up a quick app or create a fully customised sweet looking application that'll take a little longer.

If you don't decide to go down the RAD route you can use a 3rd party library like KSOAP2, or, the way I do it, is use the Sun Wireless Toolkit (WTK) to create Stubs for you're web service methods which you can then call in your application. I've used this method for a .NET web service and it's pretty straightforward.

Upvotes: 2

heavyd
heavyd

Reputation: 17711

Blackberry applications are written in Java. They support Java ME as well as some additional blackberry specific APIs. Check out http://na.blackberry.com/eng/developers/javaappdev/overview.jsp

As for calling a web service, yes you can do that as well. Check out the Rapid Application development tutorial at: http://na.blackberry.com/eng/developers/rapidappdev/

Upvotes: 5

Related Questions