Tagged Questions

7
votes
1answer
4k views

WCF Service Base Address Http and netTcp

I have two base addresses defined in my WCF Service config file: <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.diagnostics> <sources> ...
2
votes
3answers
239 views

Passing Null Parameters to a WCF Service

I am curious about the way a non-.NET client application of a WCF service can signal to a given method that it doesn't want to specify a value for a given parameter (making the service then assuming a ...
2
votes
2answers
48 views

Is it possible sccessing a subset of a WCF service operations

I have the following doubt: Consider the following: /* My service is formed by several subservices (subfunctionalities). Here is functionality 1 */ [ServiceContract] public interface ...
2
votes
1answer
384 views

WCF: How to detect new connections to WCF PerSession services?

I have a self-hosted WCF service with the InstanceContextMode set to PerSession. How can I detect new client connections (sessions) to my service from the host application and use that new session ...
2
votes
2answers
10k views

net.tcp binding metadata problem

<system.serviceModel> <services> <service name="SUR.Core.Service.Implementation.SURDirectoryService" behaviorConfiguration="DefaultServiceBehavior"> <host> ...
1
vote
1answer
26 views

Is it possible to redefine the format of wcf messages?

I'm working on a server application, which will use web services to communicate with the user clients. I need to make the services accessible on every platform (basically all kinds of mobile phones), ...
1
vote
2answers
405 views

ASP.NET Web Service vs. WCF Service

Scenario: I have an existing https ASP.NET site to which I'm going to be adding some new remote services. The services provide calculations that need to be callable both via AJAX methods on the site, ...
1
vote
4answers
2k views

WCF service proxy not setting “FieldSpecified” property

I've got a WCF DataContract that looks like the following: namespace MyCompanyName.Services.Wcf { [DataContract(Namespace = "http://mycompanyname/services/wcf")] [Serializable] public class ...
0
votes
2answers
40 views

Using optional Parameter

I'm trying to you a web service with my MVC3 controller. This service has an optional parameter, such as Service.GetObject(int id, DateTime? date) But when I try to call it will a null value , ...
0
votes
2answers
136 views

WCF Web-Service crashes after minor change to underlying database and entities

I've been bashing my head on this for quite a while and I'll really appreciate some help. I am writing a website using ASP.NET. The Business Layer is separated into two parts: BL-Server and ...
0
votes
4answers
935 views

Publish WCF Service app on IIS Express using Web Deployment

I want to publish WCF Service Application created in Visual Studio 2010 on IIS Express. So I'm using Project -> Publish -> Web Deploy: Service URL: htttp://localhost Site/application: wcf But ran ...
0
votes
1answer
46 views

Dependent project build breaks a WCF Service

I have a WCF web service project, say FooService.vbproj with a FooService.svc endpoint. Its implementation is in a separate project, Foo.vbproj, with a Foo.vb class that implements the IFooService ...