1

I use SoapExtension to handle asmx web services and store request/response xml into database, here is my web service:

[WebMethod]
public DemoResponse demoService(DemoRequest demoRequest)
{
}

How to get method name of web service [expect: demoService ]

I use soapUI to send request

minhhungit
  • 180
  • 4
  • 25

1 Answers1

1

I figured it out, we can use:

HttpContext.Current.Request.Headers["SoapAction"]
minhhungit
  • 180
  • 4
  • 25