[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

AW: Using HTTPAPI to integrate with SalesForce



Hi Michael,

HTTPAPI is able to send any data. And web services is only a certain format of the data. It is XML with some specialties. Try to figure out how the SOAP-envelope should look like and if header data is required. If not, put the data into a SOAP-body and send it via do_post.

Below is an example from (the german)  Wikipedia:
<?xml version="1.0"?>
<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope";>
    <s:Header>
        <m:RequestID xmlns:m="http://www.lecture-db.de/soap";>a3f5c109b</m:RequestID>
    </s:Header> 
    <s:Body>
        <m:DbResponse xmlns:m="http://www.lecture-db.de/soap";>
            <m:title value="DOM, SAX und SOAP">
                <m:Choice value="1">Arbeitsbericht Informatik</m:Choice>
                <m:Choice value="2">Seminar XML und Datenbanken</m:Choice>
            </m:title>
        </m:DbResponse>
    </s:Body>
</s:Envelope>

Regards
Helmut

-----Ursprüngliche Nachricht-----
Von: ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx [mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx] Im Auftrag von Michael Cassabaum
Gesendet: Donnerstag, 4. August 2011 19:25
An: ftpapi@xxxxxxxxxxxxxxxxxxxxxx
Betreff: Using HTTPAPI to integrate with SalesForce

Has anyone used Scott's HTTPAPI to integrate to SalesForce with REST or SOAP ?
Any help would be appreciated. I am very new to web services.
-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------