Link to home
Start Free TrialLog in
Avatar of watersidedesigns
watersidedesigns

asked on

Passing xml using httpwebresponse in vb.net

Dear Experts

I have a working html file that when submitted sends xml to a server and displays the resonse (code attached).  I need to replicate this in VB.net.

I believe i need to use HttpGetWebresponse with .net but cant seem to get this to worl. Any ideas
<HTML>
<BODY>
<FORM action = "http://localhost/abc/XmlService" method = "POST">
<TEXTAREA id=ABCXML name=ABCXML>
<?xml version="1.0"?>
<ABC version="1.0">
	<Request Object = "System" Action = "Logon" Username = "Import" Password = "12345" />
 
 
<ABC version = "1.0">
<Request
Object = "System"
Action = "Logon"
Username = "SomeValidUsername"
Password = "SomeValidPassword"
/>
</ABC>
 
 
</ABC>
</TEXTAREA><BR>
<INPUT type="submit">
</FORM>
</BODY>
</HTML>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Craig Wagner
Craig Wagner
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of watersidedesigns
watersidedesigns

ASKER

Thanks Craig, this pointed me in the right direction.