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

Sending request in XML format | constructing XML node in SF
Hello,
How to send a request in XML format.
I want to add the above XML in the request i send
How to send a request in XML format.
<address> <name>Kirk Stevens</name> <street1>808 State St</street1> <street2>Apt. 2</street2> <city>Palookaville</city> <state>PA</state> <country>USA</country> </address>
I want to add the above XML in the request i send
<address> <name>Kirk Stevens</name> <street1>808 State St</street1> <street2>Apt. 2</street2> <city>Palookaville</city> <state>PA</state> <country>USA</country> </address>
HTTP h = new HTTP(); HTTPRequest req = new HTTPRequest(); req.setMethod('GET'); HTTPResponse resp = req.send(req);
http://it.toolbox.com/blogs/anything-worth-doing/a-better-way-to-generate-xml-on-salesforce-using-visualforce-55433