function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Frederic_DFrederic_D 

Axis Error

Hello all:
I'm running into a problem when using the Login web service call to SFDC:
I'm using Axis 1.2 and I can confirm that all the Axis classes are there on the server....
 
java.lang.NoSuchMethodError
at org.apache.axis.deployment.wsdd.WSDDDocument.setDocument(WSDDDocument.java:136)
at org.apache.axis.deployment.wsdd.WSDDDocument.<init>(WSDDDocument.java:65)
at org.apache.axis.configuration.FileProvider.configureEngine(FileProvider.java:179)
at org.apache.axis.AxisEngine.init(AxisEngine.java:172)
at org.apache.axis.AxisEngine.<init>(AxisEngine.java:156)
at org.apache.axis.client.AxisClient.<init>(AxisClient.java:52)
at org.apache.axis.client.Service.getAxisClient(Service.java:103)
at org.apache.axis.client.Service.<init>(Service.java:112)
at com.sforce.soap.partner.SforceServiceLocator.<init>(SforceServiceLocator.java:16)
at com.itl_sfdc.wrapper.Client.Login(Client.java:166)
at com.itl_sfdc.apps.SFDCDataExport.runProgram(SFDCDataExport.java:98)
at oracle.apps.fnd.cp.request.Run.main(Run.java:148)
 
Any pointers on how to solve that problem?...
Thanks!
Fred
zakzak
Your wsdd file is referencing a method that doesn't exist.
Frederic_DFrederic_D

I understand that, but I am using Axis 1.4 and I am pretty sure that the setDocument method exists in the org.apache.axis.deployment.wsdd.WSDDDocument class.

Any other inputs?