| satish2005 2005-04-27, 11:11 am |
| Hi All,
I am sending request(sales order number) to WBI exposed web services's WSDL via Biztalk 2004 orchistration using default SOAP adapater.
The response from WBI contains some danish characters, which are missing by the time I receive them.
When I did the same test using VB.NET client by setting RequestEncoding = System.Text.Encoding.Default, I was able to see complete response with danish characters.
Here is my VB.NET client code:
'Making Direct call to WBI exposed web service WSDL
Dim wbiOrderRqst As New wbiWS. SERVICE_SYNCH_OrderDetails_Content_Reque
st
wbiOrderRqst.SalesOrderNumber = "5831"
'Response object
Dim wbiOrderRspns As New wbiWS. SERVICE_SYNCH_OrderDetails_Content_Respo
nse
'Submit object
Dim wbiOrderSubmit As New wbiWS.SERVICE_SYNCH_OrderDetails
wbiOrderSubmit.RequestEncoding = System.Text.Encoding.Default
'Pass request parameter and wait for response here
wbiOrderRspns = wbiOrderSubmit.requestOrderDetails(wbiOrderRqst)
Now, to achieve the same in BTS2004, what am I suppose to do ?
Kindly help me in this.
Regards,
- Satish. |