Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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> ...
3
votes
4answers
3k views

Msmq and WCF Service

I have created a WCF service using the NetMsmq binding for which i created a private queue on my machine and executed the project. This works fine as such and my WCF service is started and accesses ...
2
votes
1answer
36 views

Is it possible to use an interface type as parameter type in a WCF operation?

There's some interface: public interface IMessage { string Content; Person Sender; } public class Priv : IMessage { public string Content { get; set; } public Person Sender { get; ...
2
votes
2answers
319 views

Silverlight 4 Secure LOB Application - WCF vs WCF Ria Services

I am new to Silverlight and i am planning to develop a Secure LOB application which connects to a SQL backend for the company i work for. I have been reading around the topic on services and have ...
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
949 views

Request to web service with Basic authorization via proxy with NTLM authorization not working

I have a web service that requires basic authorisation and a user behind an internet proxy that requires NTLM authorisation. I also have a forms application that makes calls to the web service and ...
2
votes
3answers
567 views

Returning Meaningful Exceptions from a WCF Project

I am pretty new to WCF in general. What little experience I have comes from using fairly simple .SVC services in ASP.NET web applications. I tried experimenting with using a WCF Project for the first ...
2
votes
1answer
383 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
1answer
1k views

Collection was modified; enumeration operation may not execute

I cannot get to the bottom of this error because it happens only in one instance, and I can't find any code that can be the cause of the error. I have a 3.5 web service that I'm calling from a ...
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
38 views

service Method = “DELETE”. Method not allowed

The contract of my method is like this: [OperationContract] [WebInvoke(Method = "DELETE", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, ...
1
vote
2answers
62 views

Invoking a method when WCF service is started

I have a WCF service (VS 2010, .Net 4.0) hosted as a Windows service. What I want to do is this: I want a method which is in the service to be executed when the service is started.
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
1answer
76 views

How to send large Messages to the WCF Services?

I have one DataContract in the WCF service.In that it has one Array and i am setting that array in the Client code. If I set the array to more than 1000 thousand its throwing up an error saying ...
1
vote
1answer
650 views

Exception: type initializer for 'system.data.sqlclient.sqlconnection'?

I couldn't figure out what is the problem for this exception. The type initializer for 'system.data.sqlclient.sqlconnection' threw an exception First attempt: I was using the WCF Service to make ...
1
vote
1answer
757 views

Could not connect to net.tcp://localhost… TCP error code 10061

Referring to a video tutorial about WCF service in windows service,i have created a sample WCF service and hosted that Service with netTcpBinding in Windows Service.(since i want this WCF service to ...
1
vote
1answer
106 views

WCF Test Client - Any way to save the services/settings to a file to reload easily later?

The WCF Test Client is a really powerful tool. I can avoid creating a new console app to test my services. However, what is annoying is that I can't seem to save the services/config I add to the ...
1
vote
1answer
115 views

Is it possible to use generic DataContract's from the client end?

I know when you create a service you can create a generic DataContract: [DataContract(Name = "Get{0}Request") public sealed class GetItemRequest<T> where T : class, new() { ... } ...
1
vote
1answer
191 views

How to view wcf service in browser

I have develope a small web application in that i am using wcf service,I have creating a methods like GetData(), When i call this method in Browser it doesn't show any data just it showing blank page ...
1
vote
0answers
338 views

Invalid URI: A port was expected because of there is a colon (':') present but the port could not be parsed

I have just started working with wcf webservices under .net35 and I am using library http://chunktransporter.codeplex.com/ the issue i am having is when running my service hosted through iis7 i get ...
1
vote
1answer
130 views

Restricting WCF TCP endpoint to Administrators

How do I restrict access of a remotely-accessible WCF endpoint to a local/domain administrator? Edit: After adding [PrincipalPermission(SecurityAction.Demand, Name = "AdminUser")] to my WCF channel ...
1
vote
3answers
435 views

WCF - how to get some channel identifier?

I need to identify a channel in my WCF service. One way is to use Session.SessionID, but I can't seem to get the binding to work with sessions, and the session seems too much for what I'm trying to ...
1
vote
1answer
714 views

WCF Service configuration in Web Farm and Load Balancing envrionment

I want to configure ASP.NET Website Project using WCF Service[NetTcp] (both in c#) for web-farm (for website) and NLB Load balancing (for service). I would like to configure following options for ...
1
vote
1answer
146 views

WCF Service to WCF Service Communication

I am trying to create a number of WCF services. These services will expose certain public methods and require to consume each other (i.e. call WCF Service methods from another WCF Service) Is there ...
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
1answer
572 views

Implement 'Ping' functionality using Message Inspector causes WCF runtime to throw NullReferenceException

I'm using WCF to implement a web service. This web service requires a 'ping' feature as a health monitor for each service. This functionality has been implemented using IDispatchMessageInspector and ...
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
0answers
25 views

Accessing POST method from Wcf REST service from client app

I need to access the methods from my Wcf service. Here is how I access the GET methods: WebClient proxy1 = new WebClient(); string ServiceUri1 = ...
0
votes
0answers
23 views

Call wcf service GET methods from client application

I have a Wcf service RESTful and now I'm making a client ASP.NET MVC application. I added service reference. I want to call GET method from my wcf service. Here is what I tried: EndpointAddress ...
0
votes
1answer
52 views

Hosting WCF Service using unmanaged DLLs

I have a managed DLL that internally references a couple of unmanaged DLLs. This managed DLL is added as a reference to my WCF service project. However, the unmanaged DLLs have to be manually copied ...
0
votes
0answers
18 views

Wcf service RESTful returning xml

I'm making a Wcf service with a method which will return xml. I use Entity model, and I have three tables in my database which should be in the xml. Here are the tables: City (idCity, name, ...
0
votes
0answers
5 views

Interconnected WCF Client Communication

The program I am writing uses WCF as the communication layer between the clients and the server, and part of the servers operation requires a certain level of inter-connectivity between the clients ...
0
votes
1answer
15 views

Wcf resful service Method = “DELETE”

The contract of my method is like this: [OperationContract] [WebInvoke( Method = "DELETE", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, UriTemplate = ...
0
votes
1answer
26 views

Multiple services in one Wcf service project

I have one Wcf service project and in it many services called Service1, Service2 etc. However, only Service1 is running. Why is this and how to resolve it?
0
votes
0answers
24 views

When I add new item (wcf service) an error happens after I run the service

I have a Wcf service which works fine with the Service1, which is default. I'm getting to it by the url localhost:1234/Service2.svc/myMethod2/comeOn If I add another service file (by Add new item ...
0
votes
1answer
42 views

Hosting the same WCF Service on multiple Servers for Load Balancing

I am building a WCF Service, and for optimum connectivity for the users, I was going to run it on 3 or 4 servers on different internet connections. How would I setup the client to connect to the ...
0
votes
1answer
102 views

iOS consume WCF Service using HTTPS

I'm developing a iPad application that will consume a WCF Service HTTPS (using soap probably). I used NSURLConnection on iPad to connect to HTTP web service and worked fine. But the WCF Service will ...
0
votes
0answers
20 views

add reference to System.Web in WcfServiceLibrary

Can you add a refference to System.Web.dll in aWcfServiceLibrary. I want to create a Wcf service that executes a EXE on the server. For this I have the following code: System.Diagnostics.Process ...
0
votes
0answers
17 views

Allow requests from other hosts in selfhosted WCF service

I have a self-hosted WCF service (Windows Service manage it) that listens to [machine host name]:55555. From this machine i create a ssh tunnel like this: ssh -L 30300:localhost:8080 -R ...
0
votes
0answers
32 views

passing an object from a WCF service to client

I'm running into a stumbling block on getting my object passed down to my client. I have added [DataContract] and [KnownType] attributes to my class on the service, and created a property with {get; ...
0
votes
0answers
41 views

Web Service(ASMX or WCF) to continously monitor my Email Inbox for processing the unread messages

I want to process all the unread inbox messages through a live web service (ASMX or WCF) so that i can process the messages and do futher processing. Now we have one API RSSBUS ...
0
votes
0answers
44 views

Strange error when testing WCF services - any idea?

I have a WCF service library which contains multiple services. I test them using WCF service host Not all services have endpoints configured, so only some of them are started by WCF Service host. ...
0
votes
0answers
71 views

How to consume asp.net wcf service into J2ME

We have a mobile game application created using j2me. This application need to communicate with an asp.net wcf service to send/receive data in json format. I have created the service and uploaded on ...
0
votes
0answers
98 views

creating WCF Binding to accept Soap 1.1 messages

I know this may be a repeat but I've tried all of the examples I can find and have had no success. I have successfully created a WCF Service Application and a client tool as well. But I need to ...
0
votes
1answer
74 views

Why should i use Object instead of DataSet as the return type of my WCF Method [closed]

I heard some people saying Returning DataSet as a return type of your WCF method is not a good practice. What are the problems if i use DataSet as return type of my method ? What are the advantages of ...
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
1answer
74 views

how to make your WCF service private to your own client?

I have a WCF service and I create a client library to access to our WCF and provide this to our customers to simplify the process of accessing to our WCF. For the customer, they do not need to know ...
0
votes
1answer
143 views

Generation proxy and config by svcutil - endpoint problem

I probably don't understand something with endpoints in wcf. I've simple exemplary wcf service in "clean" wcf service library. It's public interface IService1 { [OperationContract] ...
0
votes
3answers
128 views

wcf service endpoint null

I have this App.config in my wcf service library: <?xml version="1.0"?> <configuration> <appSettings> <add key="addr" ...

1 2