Link to home
Start Free TrialLog in
Avatar of dthansen
dthansen

asked on

REST API in .NET

This is my first venture into a REST API in .NET so I expect this is just a minor issue on my part but I have a simple API that accepts 1 LNP value and returns a response. A live call is available at: http://54.221.223.0/RESTLNP/RESTLNPService.svc/lnp/16135551233

I thought however, a call to http://54.221.223.0/RESTLNP/lnp/16135551233 would work but it returns a 404 and I don't know why.

Is is some piece of configuration I'm missing?

Thanks,
Dean
Avatar of Alexandre Simões
Alexandre Simões
Flag of Switzerland image

Basically you want to get rid of the service name on the URL.

<< link removed by padas >>
ASKER CERTIFIED SOLUTION
Avatar of Alexandre Simões
Alexandre Simões
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Nice answer AlexCode!
Thanks for pulling it out of me padas! :)

Cheers!