Tagged Questions
2
votes
2answers
65 views
WCF common types not reused
Hint: This questions has many duplicates, but none of the solutions works for me.
What I have is a web service and a client, both having references to a shared assembly "DataModel". I'm creating the ...
2
votes
1answer
135 views
Use/generate methods signatures with int[] insted of ArrayOfInt on .NET web service
I have a ASP.NET web service (.asmx) with methods that receives int arrays (int[]) and nullable int arrays (int?[]) as parameters. I also have a test web application for consuming this web service via ...
2
votes
1answer
2k 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
52 views
WebService won't update through ServiceReference
I have two projects in my Visual Studio solution: The one is a WcfService Application project and the other one is an ordinary C# Silverlight project with a ServiceReference to access the Web Service ...
1
vote
0answers
275 views
silverlight service reference from wsdl - methods missing
I'm successfully creating a Service Reference for a silverlight application by pointing to a local wsdl file. The preview pane shows the 6 methods avaialble in this wsdl.
However, the generated ...
0
votes
0answers
18 views
Content type does not match? application/xml vs text/xml (or application/soap+xml)
I'm having trouble getting data after having created a service reference for a third party web service I am attempting to get information from. When I create the request and call the method, this is ...
0
votes
1answer
31 views
Call from Service Reference to Java Web Service returns nothing
I'm new to using Service Reference in Visual Studio, and I'm trying to consume a Java Web Service. I've added Service Reference using the wizard. The wizard built the proxy code and added endpoints to ...
0
votes
1answer
188 views
Consuming non-asmx SOAP 1.1 Web Service in C# with Header Security
First time poster so please take it a bit easy on me if I break any posting rules - I have read them and I think I'm right.
I've been searching for a while before posting and can't seem to find a ...
0
votes
0answers
80 views
SoapServerException thrown web calling WSS3.0 web service
I've a console app, which i've added a service references to - the Lists.asmx on a WSS3.0 site.
ListsService.ListsSoapClient client = new ListsService.ListsSoapClient();
try
{
XElement r = ...
0
votes
1answer
184 views
SOAP webservice call gives null result
I am trying to get a result from a webservice in an ASP.NET MVC (3) app. The webservice call (see below) works perfectly and I can see in Fiddler that I get a proper SOAP result back.
However, the ...
0
votes
2answers
189 views
Consuming a web service in a WPF app
I wan't to consume a web service inside a WPF app.
I can add the Service Reference and all the objects show up in the object browser except for the ServiceClient itself.
I tried adding the service ...
0
votes
1answer
100 views
WCF Web services and constructors
I wrote a couple of simple web methods (as a part of WCF service) that use a couple of (more complex) classes as input/returned parameters. Each web method attributed by [OperationContract], each data ...
0
votes
0answers
18 views
Connecting to service web by code
Hi I need to create a client that connects to a web service without using "Add Service Reference" because I want to do it at runtime when the user afford the web service's url and next extract methods ...
0
votes
2answers
571 views
Consuming asmx webservice in windows phone 7 app
Created an asmx service. Added service reference in Windows Phone 7 app. Trying to include the using statement with Namespace
using MyWP7APP.Servicereference1;
The statement is not recogonised by ...
0
votes
1answer
314 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 ...
0
votes
1answer
74 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 ...