Skip to main content
Participant
July 6, 2008
Question

Sending xml request using POST- how do I do that in C#?

  • July 6, 2008
  • 1 reply
  • 737 views
I am not sure how to send an all XML post request to the Adobe XML API in C#. I created an HttpWebRequest and I can form a request vai the GET command that uses name value pair variables but I would like to contruct an all XML request for my application. Are there any C# examples out there?

# 4 in these steps: http://livedocs.adobe.com/en_US/AcrobatConnectPro/7.0/web_services/index.html

thanks
    This topic has been closed for replies.

    1 reply

    RSondlesAuthor
    Participant
    July 6, 2008
    I got it... you simply have to convert your paramlist xml to a byte array and write that into the request stream before sending. cool.

    stuffing a web request with data: http://www.terminally-incoherent.com/blog/2008/05/05/send-a-https-post-request-with-c/