You need to sign in to do that
Don't have an account?

Does salesforce provide API for java?
I am quite new to salesforce development. I wonder if salesforce provides API for java ? Namely, it provides some jar files which I can add them into project build path, and then I can call some method by this API ?
There is a salesforce API which is a SOAP API. Two versions exists of this API. One is the partner API (used by salesforce.com partners) and the other is the enterprise API which is available for everyone with a salesforce enterprise license.
In our company we use the enterprise API and I must say it is very nice to work with. And, if you have ever worked with a SOAP API before I'm sure you will find it quite easy as well. You simply download the WSDL file and generate the client source code and you're ready to go!
/Søren Nødskov Hansen
at org.apache.axis.wsdl.WSDL2Java.createParser(WSDL2Java.java:209)
at org.apache.axis.wsdl.gen.WSDL2.<init>(WSDL2.java:96)
at org.apache.axis.wsdl.WSDL2Java.<init>(WSDL2Java.java:194)
at org.apache.axis.wsdl.WSDL2Java.main(WSDL2Java.java:371)\
you can use eclipse IDE to generate the stub for enterprise or partner wsdl. There are lot of plugins avaliable to convert wsdl to java..make sure that all the jar files in the lib folder of axis.war(in the axis distribution ) are in classpath .......
The following jar files should be in the classpath of the project.
thanks
D.kamalakar rao