Are you sure that is the correct URL to use. Typically you provide the URL for the service, and the service provider looks up the metadata on its own. However your code is providing the URL for the metadata.
Because of this, the type provider is probably adding additional information to the URL in order to utilize it, and the service does not know what to do with these compound URLs.
EDIT: Apparently someone felt I was not clear.
https://wamsstageclus001rest-hs.cloudapp-int.net/API/$metadata?api-version=1.0
Will become, when the ODataAdapter attempts to obtain metadata information
https://wamsstageclus001rest-hs.cloudapp-int.net/API/$metadata?api-version=1.0$metadata
Or something similar. If you browse to that particular site, you will see a 404 error.
However if you give the ODataAdapter
https://wamsstageclus001rest-hs.cloudapp-int.net/API/
Then adding the metadata won't cause a 404 error. You should be able to leave the version information, since it is using a URL class instead of string manipulation (or so I would hope) which would look like the following
https://wamsstageclus001rest-hs.cloudapp-int.net/API/?api-version=1.0
OdataServuce<@"https://.....">work? this should stop the compiler interpreting escape sequences – John Palmer Jul 8 '12 at 23:54%24metadatainstead of$metadata-- URL encoding 101. – ildjarn Jul 9 '12 at 4:08