Click here to Skip to main content
15,913,027 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: XML Pin
MS le Roux13-Apr-02 9:36
MS le Roux13-Apr-02 9:36 
GeneralRe: XML Pin
Mazdak13-Apr-02 10:07
Mazdak13-Apr-02 10:07 
GeneralRe: XML Pin
Michael A. Barnhart16-Apr-02 11:38
Michael A. Barnhart16-Apr-02 11:38 
GeneralRe: XML Pin
Mazdak16-Apr-02 20:29
Mazdak16-Apr-02 20:29 
GeneralRe: XML Pin
jkgh20-Jun-02 7:20
jkgh20-Jun-02 7:20 
GeneralRe: XML Pin
Mazdak21-Jun-02 8:31
Mazdak21-Jun-02 8:31 
GeneralSOAP Newbie Pin
Tom Archer12-Apr-02 8:24
Tom Archer12-Apr-02 8:24 
GeneralRe: SOAP Newbie Pin
Michael A. Barnhart16-Apr-02 11:52
Michael A. Barnhart16-Apr-02 11:52 
First your soap request and responce is packaged as a standard HTTP request and responce that is the first set of data in both of your samples.
Then internal to that you have a "data" section that is that meaningful part.


POST /StockQuote HTTP/1.1
This line is a stock HTTP post
Host: www.stockquoteserver.com
Who is it to
Content-Type: text/xml;
what is the type of data text and xml
charset="utf-8"
how is the dataset being used
Content-Length: 323
how much data is to be read from the socket being used.
you have an error in your sample here. The header block should be terminated with a blank line (not a line with blanks ok)

SOAPAction: Some-Namespace-URI#GetLastTradePrice
define namespace to apply to the child data

<SQ:Envelope xmlns:SQ="http://schemas.xmlsoap.org/soap/envelope/" SQ:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
root element of the XML document being sent. it includes the version etc of the request.
<SQ:Body>
start of the body of data to be made available to the soap process
<m:GetLastTradePrice xmlns:m="Some-Namespace-URI">
What routine on the server is being called and the namespace to use
<symbol>DIS
arguments to be made available to the routine processing the request. It will ask for them by name (like an envoriment variable). You only have one and it is not properly terminated.
</m:GetLastTradePrice>
end of info for this process
</SQ:Body>
end of body
</SQ:Envelope>
end of data to make it a well formed document.

Your responce is identical other than the header is that of a valid http responce vs request.

Take Care and when should I start looking for your book a the stores?



To be conscious that you are ignorant of the facts is a great step towards Knowledge. Benjamin Disraeli
GeneralRe: SOAP Newbie Pin
Tom Archer16-Apr-02 12:14
Tom Archer16-Apr-02 12:14 
GeneralXML,Oracle+sqlserver integration Pin
vins8-Apr-02 3:54
vins8-Apr-02 3:54 
GeneralHTML Question Pin
[James Pullicino]7-Apr-02 22:34
[James Pullicino]7-Apr-02 22:34 
QuestionIs this a bug of Internet explorer? Pin
wilbur7-Apr-02 21:53
wilbur7-Apr-02 21:53 
AnswerRe: Is this a bug of Internet explorer? Pin
MS le Roux8-Apr-02 0:01
MS le Roux8-Apr-02 0:01 
GeneralXSL and Netscape Pin
Jon Newman2-Apr-02 7:01
Jon Newman2-Apr-02 7:01 
GeneralRe: XSL and Netscape Pin
Philip Patrick5-Apr-02 4:13
professionalPhilip Patrick5-Apr-02 4:13 
GeneralRe: XSL and Netscape Pin
markkuk6-Apr-02 9:51
markkuk6-Apr-02 9:51 
GeneralDisplaying an excel spreadsheet with xsl Pin
28-Mar-02 6:11
suss28-Mar-02 6:11 
GeneralRe: Displaying an excel spreadsheet with xsl Pin
Michael A. Barnhart28-Mar-02 9:06
Michael A. Barnhart28-Mar-02 9:06 
GeneralRe: Displaying an excel spreadsheet with xsl Pin
Lilian Chan-Grant28-Mar-02 9:29
Lilian Chan-Grant28-Mar-02 9:29 
GeneralRe: Displaying an excel spreadsheet with xsl Pin
Lilian Chan-Grant28-Mar-02 9:58
Lilian Chan-Grant28-Mar-02 9:58 
GeneralEditable XML from MSXML Pin
David Chamberlain28-Mar-02 4:27
David Chamberlain28-Mar-02 4:27 
GeneralRe: Editable XML from MSXML Pin
28-Mar-02 4:58
suss28-Mar-02 4:58 
GeneralRe: Editable XML from MSXML Pin
Michael A. Barnhart28-Mar-02 8:52
Michael A. Barnhart28-Mar-02 8:52 
GeneralRe: Editable XML from MSXML Pin
David Chamberlain28-Mar-02 10:37
David Chamberlain28-Mar-02 10:37 
GeneralRe: Editable XML from MSXML Pin
Neville Franks28-Mar-02 11:08
Neville Franks28-Mar-02 11:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.