A
apoc69
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.
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.