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

apex WSDL requirements
I am trying to get an external web service called inside salesforce. I just finished ironing out all the 'problems' in one WSDL. The thing is I need to parse another WSDL and I am running into new problems.
Could someone tell me where to find SFDC requirements for WSDLs?
(this is a suggestion to SF).--->
I really want it in a single document/ section of a document. Salesforce could at least list all the errors and a short description.
I am really tired of having to ask on discussion boards and wait for the reply (if ever anyone knows of it). If not for the people on the community, i wouldn't even consider going with SFDC. thanks guys.
Could someone tell me where to find SFDC requirements for WSDLs?
(this is a suggestion to SF).--->
I really want it in a single document/ section of a document. Salesforce could at least list all the errors and a short description.
I am really tired of having to ask on discussion boards and wait for the reply (if ever anyone knows of it). If not for the people on the community, i wouldn't even consider going with SFDC. thanks guys.
If that utility doesn't successfully create the Apex class, you can also use the HTTP Classes in Apex to execute the web service call. Some helpful documentation here: http://www.salesforce.com/us/developer/docs/apexcode/index_Left.htm#StartTopic=Content/apex_classes_restful.htm
In short, you can use the HTTPRequest class to construct the body of your soap msg, send it, and receive the response in an HTTPResponse object.
You can also get an XMDom parser in apex via Code Share (thanks to Ron Hess): http://developer.force.com/codeshare/apex/ProjectPage?id=a0630000002ahp5AAA
most of the docs have feedback forms for every page of the doc, please use them, that feedback goes directly to the doc team and is the best way to tell them what works and what doesn't.
Frankly, the section wasn't impressive in its coverage. (Example: SOAP 1.2 was released in 2003 and is still not supported). It wouldn't be as hard if at the least these were documented. The other thing was poor linkages between related at\rticles/ sections.
As for SOAP 1.2, it was too little too late, and while SOAP 1.2 was ratified a while back, there was no standard for describing services using SOAP 1.2 until WSDL 2.0 was finalized last year.