Tagged Questions

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
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 ...
1
vote
2answers
79 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
845 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
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
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
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
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
1answer
166 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
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
2answers
163 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
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
1answer
705 views

How to enable and disable a CRM 2011 Organization using C#/VB.Net and WCF Deployment Service or CRM 2011 SDK?

I want to be able to enable/disable a CRM 2011 Organization using Deployment Service (Deployment.Svc) or using CRM 2011 SDK (Microsoft.Xrm.Sdk.Deployment Namespace) using C# or VB.Net application. I ...
0
votes
1answer
401 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
3answers
281 views

C# WCF service host question

I have a C# WCF service DLL that gets hosted by WcfSvcHost.exe when I debug. I would like to deploy this onto a machine nearby. What do I use to host this dll on the machine that I want to deploy it ...
-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 ...