Sending Raw POST Data
Posted: Thu Nov 30, 2006 7:02 am
Basically, I need to send XML messages as raw POST data to a server address and then read the XML response I get. What would be the best way to do this? CURL?
It's not calling remote methods or anything, just sending XML messages, for example:
The responses would be similar
It's not calling remote methods or anything, just sending XML messages, for example:
Code: Select all
<Root>
<Header>
<SomeTag>...</SomeTag>
<AnotherTag>...</AnotherTag>
</Header>
<Main>
<Tag>...</Tag>
<Tag>...</Tag>
<Tag>...</Tag>
<Tag>...</Tag>
</Main>
</Root>