Tagged Questions

0
votes
1answer
24 views

Error message when trying to add a Service Reference.

I'm trying to add a service reference to my silverlight project from a file stored on my hosting server. When I put the link in I get the following error: The document at the url …
1
vote
1answer
34 views

What are these WCF service reference files

When I add a WCF service reference in Visual Studio 2008, a directory named Service Reference\ServiceReferenceNamespace is created. In this directory, there's files named Service.xsd, Service1.xsd, …
2
votes
1answer
78 views

Calling WebService using Service Reference and Maintain Session

I have a asp.net web-service which I use from my ASP.NET website. I can call it from raw Javascript or jQuery to post/get data. The web-service is enabled with session so that only authorized users …
1
vote
1answer
79 views

WCF Service Reference .datasource files

What are the .datasource files that are automatically generated by "Create Service Reference" in Visual Studio? The comment in the file is this: This file is automatically generated by Visual …
0
votes
1answer
35 views

Service Reference namespace becomes unknown after I ‘Update’ the service reference

Service Reference namespace becomes unknown after I 'Update' the service reference. Has any one else encountered/resolved this issue? The changes I make to the Service Reference code are sometimes so …
3
votes
4answers
721 views

How to configure WCF in a separate dll project

Aloha I'm developing a web application (ASP.NET 3.5) that will consume a number of web services. I have created a separate dll-project for each web service: these projects contains the service …
1
vote
2answers
266 views

How to obtain OSGi service references from a Servlet that is registered in OSGi HttpService?

It seems natural that a HttpServlet running in OSGi environment (i.e. registered in OSGi HttpService) would want to call some OSGi services to accomplish it's tasks. The question is how to obtain …
2
votes
4answers
367 views

Including a service reference from a class library

I have a C# class library and a startup project (a console app). The class library includes a service reference to a web service. When I try to run the project, I get an InvalidOperationException …
0
votes
1answer
29 views

What is the best way to add summary tags to a generated webservice proxy class?

Aloha I'm referencing an external webservice in my .NET 2.0 application. Adding a service reference generated a nice proxy class for me. I'd like to add ///<summary> style documentation to …