Forum Moderators: phranque

Message Too Old, No Replies

help regarding XML Post

         

hcs420

9:36 pm on Jun 17, 2003 (gmt 0)

10+ Year Member



Hi everybody,
I require help while sending XML Request.
I am very much new to XML.
I want to send encoded XML request to a particular server using VB or ASP.
I can send normal request using one XML Field by sending it in querystring but i want to send whole XML Request Block.

Please help..
Thanks in advance

HughMungus

6:39 pm on Jun 18, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Check out blogger's API. It has examples (related to blogs) that show how to do this.

macrost

9:21 pm on Jun 19, 2003 (gmt 0)

10+ Year Member



What type of server side language are you going to use to send the xml request? If you are using asp and need to encode your request you can do this.
xmlrequest="<bigblah><blah>asdf</blah></bigblah>"
encodedxmlrequest = Server.URLEncode(xmlrequest)

Mac