Search code examples
asp.netwcfweb-servicesproxywcf-client

WCF and Client accessing error, local runs fine, on uploading gives 404


I have a RESTful service on a server whose url say is www.webserve.com i have a proxy client on my local machine to hit and get the details from this service.. the client has a page name default.aspx which post and hit the www.webserve.com and get the data.

it works fine but as soon as i upload this client on the same server(IIS) with a name say www.proxyclient.com and open it with my browser the default.aspx works fine but as soon as i post the data and hit the service through it it gives mt a 404 error..

I dont know whats wrong with it.. may be this is the static vs dynamic IP mess or something like that.. can u please help me out. i need to get this done on urgent basis

Thnx guys

Alright got the solution. my proxyclient was using a handler to handle a custom extension. I mapped that extension to IIS with aspnet dll and it worked.. thnx guys for ur support :)


Solution

  • Actually I needed to register .svc to my IIS ISAPI with .net framework dll

    then it worked fine :)