views:

417

answers:

1

I've started to try out BizUnit and noticed that the Http Request Response have a URL of BTSHTTPReceive.dll?ReqResp

I can't find anything in the doc's about using the ?ReqResp

Is this needed?, or does it add some value?

+2  A: 

It depends on whether you're sending a GET or a POST request. In general terms (and particularly for POST requests), the querystring can be used to host multiple receive locations through a single BTSHTTPReceive.dll, providing a way to difference the URL for each request location through the added query string params.

For GET requests, it can also be used as a way to pass data into the request message to the adapter. See the docs for the details.

tomasr