Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am invoking a web service for my web application. It runs slow on HTTP requests from an external source.

Would this be a problem with the URI namespace defined in the WSDL file? I have noticed that the URI Namespace defined in the WSDL points to a non-existing url. Lets stay

IN WSDL URL: http://www.corrrecturl.com < spelling mistake
CORRECT URL: http://www.correcturl.com < correct url

Because I cannot resolve the URL of the WSDL defined URI Namespace, would this be making the times slow?

Webservice:

  • ASP 2.0
  • .NET
  • IIS 7

Thanks for your help.

share|improve this question

1 Answer

up vote 1 down vote accepted

The URI used in a namespace is not used as the location of a resource on a network. It is never used in an HTTP request.

You will realized this when you know that it is a URI, not a URL. It's an Identifier, not a Locator. A URI like "urn:schemas-microsoft-com:something" could not be used in an HTTP request.

share|improve this answer
so it could be anything? – claw Apr 10 '11 at 2:58
No, it has to be a valid URI. But it doesn't point to anything. It's used as a namespace, like a namespace in .NET. – John Saunders Apr 10 '11 at 2:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.