Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML Post - Receive

Status
Not open for further replies.

DrinkN1

Programmer
Apr 15, 2002
23
US
From an ASP.NET web-form, I need to do the following:
1) HTTP Post XML Data to a URL (Java Servlet)
2) Wait for processing, receive a return value
3) Continue on with my code.

Please advise on how this would be done.

Thanks!
 
Look into HttpRequest and HttpResponse of System.Web I think it is.
 
I was having issues accessing this site over the weekend.

Got nearly all of what I need from GotDotNet.com's message boards. However, I have no idea on how to create XML DTDs, which are now haunting me...But, found some documentation that should ease that issue out.

The answer is indeed the request/response objects.

Thanks.
 
Don't use DTD's. Opt for XSD's, instead. That's the newer standard for defining XML documents... they provide much more granular control over the various parts of the document -- Data Types being the most notable.

-p

penny.gif
penny.gif

The answer to getting answered -- faq855-2992
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top