I need to get the client IP address in my SoapService.
ie: WSE 2.0 SP3 service class has inherited from SoapService.
Does anyone have an idea how to do this?
(ps; I am passing SoapEnvelope back and forth)
Thanks
Ron
[SoapServiceAttribute("http://husky.ca/TcEng_MSMQ/Services")]
class Services : SoapService
{
[SoapMethod("SubmitRequest")]
public SoapEnvelope SubmitRequest(SoapEnvelope se)
{
Richard L Rosenheim - 13 Jul 2005 22:34 GMT
Check out System.Web.HttpRequest
Richard Rosenheim
> I need to get the client IP address in my SoapService.
> ie: WSE 2.0 SP3 service class has inherited from SoapService.
[quoted text clipped - 12 lines]
> public SoapEnvelope SubmitRequest(SoapEnvelope se)
> {