The soap tag has no wiki summary.
1
vote
2answers
53 views
SOAP callout fails silently
I have generated an Apex class from my WSDL successfully and was able to authenticate on the remote server by setting the HTTP Authorization header manually. I have double checked on the remote server ...
4
votes
1answer
62 views
Call tooling API via WSC or AXIS
Was somebody able to access the new tooling API via the force.com Webservice Connector (WSC) or Axis? The code generation seemed to work fine for both of these stacks and I was also able to login and ...
1
vote
2answers
95 views
php SOAP webservice failing to send an acknowledgement (ack) response to Salesforce
I am trying to set up a very simple webservice to consume salesforce outbound messages using php SoapServer class.
The salesforce outbound messages are being successfully received by the ...
3
votes
1answer
43 views
Two Way Authentication and SSL Certitificates
I'm building an integration to a third party webservice, and wanted to implement Two Way SSL Certificates based on this article
We started out using Digicert certificates, but after many hours of ...
2
votes
1answer
60 views
SOAP API - No operation available for request
I am trying to access Salesforce via the SOAP API (at the moment just using the python requests library). I have a developer account.
I am trying to use an existing OAuth access token as described in ...
2
votes
2answers
76 views
Lookup displaying JavaScript error (Internet Explorer)
One of our user is receiving a JS alert when filling a lookup (from a custom object).
error: {
faultcode: 'soapenv:Client',
faultstring: 'Attribute "xmlns" bound to namespace ...
0
votes
1answer
38 views
SOAP XML node Sequence
So I recently had the task of logging in using the SOAP API. I constructed the envelope, and logged in fine with the following:
<soapenv:Envelope ...
0
votes
1answer
119 views
Jitterbit consuming outbound messages
I'm working with the Jitterbit application to try and consume the salesforce SOAP outbound message to send case data over to bugzilla.
I don't know much about SOAP but been reading ...
3
votes
3answers
351 views
Can't log user in on SOAP API
I have added the IP to SalesForce and tried appending the security token to the password and checked that the user's profile has API enabled but still no luck.
The user account can log in fine using ...
1
vote
4answers
304 views
How do I consume workflow outbound messages?
I'm working on integrating a record update in Salesforce into a third party application. My plan is to create a service using the ASP.NET Web API that listens for requests from Salesforce. I'm ...
1
vote
1answer
288 views
Maximum size of a SOAP API Response
I'm writing some Java code to retrieve attachments from Salesforce.
It seems I can query the Attachment object and retrieve the body column, but I'm concerned that I'll blow a limit on the maximum ...
4
votes
1answer
506 views
Is there a way to Query Role Hierarchy?
Using the Web-Services SOAP API, I'd like to query for all UserRoles under the same Parent Role.
The only way I can think of doing this is by querying all Roles, then putting together a tree using ...
3
votes
3answers
321 views
SOAP API Request with body larger than 16 Kilobytes results in Timeout Exception
I stumbled upon an interesting limitation, it seems that SOAP API endpoint handles requests larger than 16Kb differently --- whenever body is larger than that request just times out.
We're using ...