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>
...
3
votes
3answers
605 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 ...
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
40 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
3answers
265 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
50 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
406 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
29 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
87 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
121 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
135 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
0answers
359 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
136 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
460 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
169 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
423 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
606 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 ...
0
votes
1answer
73 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
0answers
30 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
47 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
47 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
118 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
3answers
157 views
wcf service endpoint null
I have this App.config in my wcf service library:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="addr" ...
0
votes
1answer
75 views
WCF Data service, some question
I've two questions on WCF Data service:
-98% of my needs are covered by the WCF Data service, I only need one business methods, is it possible to mix a WCF Data service? Or should I create a second ...
0
votes
4answers
1k 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
47 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 ...
0
votes
1answer
400 views
Default wcf service application has no endpoint defined
I just created a new WCF Service Application project in VS2010 (Premium), and it works out-of-the-box, but when I opened up the web.config file there are no endpoints present. The application works ...
0
votes
1answer
346 views
WCF Client DLL Internet Delivery Problem
We are creating a WCF service with a companion client DLL (.Net) that we will be delivering to a user's GAC via a web page. The DLL knows how to communicate with and how to interface with the service, ...
-2
votes
1answer
83 views
command to create custom controls in dotnet 3.5 [closed]
I have been for an interview, they asked me a question which I could not get the answer for.
1: is there any tool/command to create a custom control
2: how do we create schema in wcf services
...