Page 1 of 1

Sending Raw POST Data

Posted: Thu Nov 30, 2006 7:02 am
by Ree
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:

Code: Select all

<Root>
  <Header>
    <SomeTag>...</SomeTag>
    <AnotherTag>...</AnotherTag>
  </Header>
  <Main>
    <Tag>...</Tag>
    <Tag>...</Tag>
    <Tag>...</Tag>
    <Tag>...</Tag>
  </Main>
</Root>
The responses would be similar

Posted: Thu Nov 30, 2006 9:37 am
by volka