• Merrill
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 6
    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


Earlier this year, I saw a post with the proper code in it. Now that I need it I cannot find it.

I would like launch an S-Control up saving a page.

Particularly, When an Opportunity Product is Edited.

The previous post talked about using a workflow and 'New Outbound Message'. I just cannot figure out what to put in the 'Endpoint URL'

Thanks!

Off i go on my hunt...
I cannot seem to find the historical changes to Forecast Category. Stage history is pretty straightforward to find.
 
Any help would be greatly appreciated
 
thanks!
Chris
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


Can you call s-control from a trigger?
  • August 31, 2007
  • Like
  • 0
I cannot seem to find the historical changes to Forecast Category. Stage history is pretty straightforward to find.
 
Any help would be greatly appreciated
 
thanks!
Chris

Code:
with(sforce.connection)deleteIds(query("SELECT Id FROM "+sobjectType).getArray('records').map(function(r){return r.Id}))

 

This should work in Firefox 1.5 + and IE7.
IE6 with prototype.js is also OK (Array.prototype.map is defined).
Note that it deletes only up to 200 records (deleteIds maximum is 200...).

You can use this snippet sforce.debug.open() window or firebug.
  • May 24, 2007
  • Like
  • 0