hey folks,
i am pretty new to web services and here is my first question:
I have a /Order.asmx where other customers can post theire orders via
theire SAP Business Connector. The Order.asmx has a
public string Post( string xml ) {}
Method. So everybody can post theire order xmls theire.
But here comes my issue:
The SAP business connector post xmls like this:
POST /Orders.asmx HTTP/1.0
User-Agent: Mozilla/4.0 [en] (WinNT; I)
Accept: image/gif, */*
Host: xxx.xxx.xxx.xxx:8080
Content-type: text/xml
Content-Length: 2533
<?xml version="1.0"?>
<.......>
as you see, there is no parameter like:
xml=<?xml version...
so how i can handle that?!
thanks.
Martin Honnen - 15 Feb 2006 16:01 GMT
> The SAP business connector post xmls like this:
>
[quoted text clipped - 7 lines]
> <?xml version="1.0"?>
> <.......>
> so how i can handle that?!
You don't need a web service then, a HTTP handler that accesses the
request stream will do.
<http://samples.gotdotnet.com/quickstart/aspplus/doc/httphandlers.aspx>

Signature
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
apoc69@gmx.net - 15 Feb 2006 16:11 GMT
oooooh..ok, thanks :D
steven.