Hi, i need help accessing a webservice the return values of a
webservice created in vb.net. The webservice accepts a string
studentid and returns a class containg the info of the student. im am
able to send the parameter using
Server.CreateOb ject("Msxml2.Se rverXMLHTTP"). How do i retrieve the
values back passed from server?
this is part of the web servce..
POST /ws/service.asmx HTTP/1.1
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelop e xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema" xmlns:soap="htt p://
schemas.xmlsoap .org/soap/envelope/">
<soap:Body>
......
</mtdSendData>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelop e xmlns:xsi="http ://www.w3.org/2001/XMLSchema-
instance"
.....
<ConfirmResul t>
<ReturnGrade>st ring</ReturnGrade>
<ReturnPass>str ing</ReturnPass>
<ReturnSection> string</ReturnSection>
<ConfirmResul t>
webservice created in vb.net. The webservice accepts a string
studentid and returns a class containg the info of the student. im am
able to send the parameter using
Server.CreateOb ject("Msxml2.Se rverXMLHTTP"). How do i retrieve the
values back passed from server?
this is part of the web servce..
POST /ws/service.asmx HTTP/1.1
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelop e xmlns:xsi="http ://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http ://www.w3.org/2001/XMLSchema" xmlns:soap="htt p://
schemas.xmlsoap .org/soap/envelope/">
<soap:Body>
......
</mtdSendData>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelop e xmlns:xsi="http ://www.w3.org/2001/XMLSchema-
instance"
.....
<ConfirmResul t>
<ReturnGrade>st ring</ReturnGrade>
<ReturnPass>str ing</ReturnPass>
<ReturnSection> string</ReturnSection>
<ConfirmResul t>
Comment