开发者_JAVA技巧Possible Duplicate:
Call an IIS Web Service without the .asmx extension
We have to recieve an incoming call from client's wbeserver It is looking for url webservice/somethig.cgi in our webserver How can I map this to our .net webservice?
Use the HttpHandlers to handle the .cgi files.
Whenever the .cgi file has been requested. Check its name as you mentioned here the CGI name is "Somethig" so correspondingly call the webserivce or redirect to any other page which calls the webservice u want.
ref.
http://www.c-sharpcorner.com/UploadFile/civa_kumar2000/HTTPHandlersinASP.NET11282005003115AM/HTTPHandlersinASP.NET.aspx
精彩评论