Tagged Questions
6
votes
5answers
3k 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 ...
5
votes
2answers
171 views
WCF to ASMX binding much slower returning large data than standard web reference
I am binding to an existing ASMX web service using a WCF service reference. I have a method that returns a DataSet object that contains a string of 500k length.
As a standard "old-school" web ...
4
votes
4answers
87 views
Object instances in static classes
I am developing a web application with multiple WCF service references. Currently, each time we need to make a call to a service we do the following(as an example):
Service.ServiceClient ...
2
votes
1answer
132 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
1answer
158 views
WCF Service Reference not working?
I have created a RESTful WCF service (thanks to StackOverflow). I have created a test client, it's a simple .aspx page with 5 textboxes and a submit button. When I enter the data into the textboxes ...
1
vote
1answer
151 views
How to get all WebMethods of a WebService pointed by a ServiceReference.Path
In my ASP.NET application, I use the ServiceReferenceCollection to carry a set of WebServices, and in the code-behind, I'm asked to figure out all the public WebMethod(s) and corresponding arguments ...
1
vote
1answer
496 views
Compilation errors in Reference.cs after adding a Service Reference caused by multi-part namespace
I hit this weird namespace issue when adding my first 'Service Reference' to a client project in Visual Studio 2010.
If my project's default namespace uses two or more parts, e.g. MyCompany.MyApp ...
1
vote
3answers
319 views
Using ICollection property with WCF Service
I have a class, ExpenseInfo that includes an ICollection<String> property:
public ICollection<String> WhoOwes { get; private set; }
I have a WCF service that returns objects of type ...
0
votes
1answer
24 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
27 views
Multipart messaging in .NET with service references c#
I have looked for hours and haven't found an answer to what I would imagine is a somewhat common issue.
I have a lot of data (string[2000000]) that I want to send across to a service via a service ...
0
votes
2answers
35 views
Generate client for only one of the Service Contract interfaces available on a WCF service
I am currently refactoring a large WCF service which consisted of one service contract interface ("SCI" from here on) used by multiple different client applications. I have split up the SCI so that ...
0
votes
1answer
27 views
How do you add a WCF service reference with a fixed port?
I have a WCF service being hosed by a Windows Service with this in the app.config
<services>
<service behaviorConfiguration="serviceBehavior" name="AgileServer.AgileService">
...
0
votes
0answers
78 views
.NET SOAP Serializing Unbounded Sequence
We have a WSDL which contains the following type definition:
...
<xsd:complexType name="OrderItem">
<xsd:all>
<xsd:element name="source" type="xsd:string" />
...
0
votes
3answers
66 views
After converting console app to asp.net web app, post is no longer instantaneous
I have a console app which connects to a service reference that allows it to send SOAP calls to a service, which updates information in a separate program that I do not own or control. The console app ...
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
1answer
102 views
Code Only WCF Hosting has “localhost” in the link to the wsdl
I have a wcf service that I am self hosting in an console app.
When I run the service and deploy it to a machine (call it MyWCFRunningMachine) I can go to the "You have created a service" page. ...
0
votes
1answer
122 views
WCF - DataContract by copy/paste original code or by auto-generated code for shared abstract class?
[DataContract]
public abstract class FooBase
{
[DataMember]
public int Bar { get; set; }
}
That is a base class that I use as the base class for other classes that are also DataContracts. ...
0
votes
1answer
72 views
Problem adding Class Library ServiceModel section to Applications app.config
I have read on a number of question/answers how you would need to add the "system.serviceModel" section of a class library that has a service reference to the executing application's app.config if ...
0
votes
3answers
94 views
WCF - any way to mark an attribute as ignored?
Basically if I have the following:
[DataContract]
public class Foo
{
[MyCustomAttribute(...)]
[DataMember(IsRequired = true)]
public int bar { get; set; }
}
How can I get it so that the ...
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 ...