[XSLTalk] ServerXMLHTTP Help

Hi all,

I am having a tough time with the MSXL4 ServerXMLHTTP object.

The crux of what I am doing is this:

I have an ASP page which is called (I think) from an external source where 
the request is made by the  ServerXMLHTTP object.

The request is raw xml which I am able to load into a DOM like so:

oDOM.load(Request)

I always thought that the load method only accepted a file path but here it 
accepts and perfectly loads a DOM object from the Request object.  Is this 
documented???

I then parse this incoming XML and do various other things which l then 
construct a new DOM and load like this:

oDOM.LoadXML sXMLResult

I then have to send this XML to another page on another server which is GOD 
knows where and  the people working there seem to know less than me of what 
is supposed to happen but I think it is placed on a BizTalk Server queue or 
somethin, which I do like so:

Set oSrvHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
oSrvHTTP.Open "Post", "http://DIS_SERVER/dissite/recAddressResponse.asp", 
False
oSrvHTTP.Send(oDOM)

When I query the ServerXMLHTTP object afterwards I get the following codes:

Status Code: 400
Status Text: Invalid request

If I call the getAllResponseHeaders I get the following text:

Response HeadersServer: Microsoft-IIS/5.0
Date: Thu, 17 Jul 2003 08:37:15 GMT
Content-Length: 0
Content-Type: text/html
Set-Cookie: ASPSESSIONIDQGGGGOPQ=JKCBJMJAIGBEGPGFDAOFOCNO; path=/
Cache-control: private

Can anyone shed any light onto this matter of either what the status code 
means or if any of the ResponseHeaders are giving anything away.

Please Help, my head hurts!!

Paul








dagda1@hotmail.com

_________________________________________________________________
Find a cheaper internet access deal - choose one to suit you. 
http://www.msn.co.uk/internetaccess


------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/sOykFB/k9VGAA/ySSFAA/2U_rlB/TM
---------------------------------------------------------------------~->

This discussion list is hosted at TopXML (topxml.com).  If you like what we're doing, please show your support by posting your small code snippets there!  Also, post your tech announcements and news on our new site, Markup World (markupworld.com)

To unsubscribe from this group, send an email to:
XSLTalk-unsubscribe@egroups.com
 

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 

Received on Thursday, 17 July 2003 05:34:58 UTC