• Jill Plotke
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
I have an app that has been working for quite some time. Since the upgrade to Summer08 everything is broken, I am getting: SOAPAction HTTP header missing It looks like this:

Code:
 <?xml version="1.0" encoding="utf-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:enterprise.soap.sforce.com">
      <soapenv:Header>
        <urn:SessionHeader>
          <urn:sessionId>SESSION_id_GOES_HERE</urn:sessionId>
        </urn:SessionHeader>
      </soapenv:Header>
      <soapenv:Body>
        <urn:getUserInfo />
      </soapenv:Body>
    </soapenv:Envelope>



 Any help would be greatly appreciated.

My full response is:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<soapenv:Fault><faultcode>soapenv:Client</faultcode><faultstring>SOAPAction HTTP header missing</faultstring>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>

 It returns a status code of: 500 Internal Server Error which is strange to me.

I am posting to: https://na1.salesforce.com/services/Soap/c/10.0 which has worked for months.

Thanks,
Chris