0
votes
1answer
15 views
Linq2sql and WCF, getting access to tables
Hi
I'm having some difficulties while using linq2sql and wcf.
Let suppose I have three tables: Reports, Tasks and Types. Tasks references Reports (one Report can have unlimited number of tasks), and …
1
vote
1answer
5 views
Duplex Mode StreamedRequest not working with Reliable Session Binding.
Hi.
I have been struggling with this for a while and could really use some help.
I am attempting to design a WCF endpoint that allows for the streaming of images to the server and then returns …
2
votes
1answer
7 views
Do you use ServiceReferences in LoB applications?
Do you use auto-generated WCF service references in line of business applications? Or do you roll your own? And why?
0
votes
1answer
23 views
Linq to entities order by over wcf
I'd like to expose a method over WCF something like GetEmployees(EmployeeColumn orderby), that returns a list of employees in an order.
I don't really want to create an enum EmployeeColumn that …
2
votes
1answer
23 views
Why would a self-hosted service hang after handling one response running on Mono?
I'm having trouble with a simple self-hosted WCF service, using basic HTTP binding on Mono. When I run the service on .NET, everything works fine. When I run the server on Mono, the first request …
0
votes
2answers
13 views
There is any WCF binding that accepts the data in a HTTP query string?
There is any WCF binding that accepts the data in a HTTP query string?
0
votes
1answer
5 views
WCF AJAX: scripting across ports
using ASP.net, C#, IIS, jQuery
I have a wcf service running in iis on port 2515.
the demo i created for this project works fine and i can utilize the service.
I have another project running on port …
2
votes
1answer
8 views
Silverlight client identity not always passed to server?
I have a Silverlight client that has some problems talking to the server it originates from via a WCF basicHttpBinding. The service configuration is as follows:
<system.serviceModel>
…
1
vote
2answers
25 views
Remove size limit of WCF-Service answers
Hi folks,
I have created an WCF-Service that runs an operation on a W2008-Server and returns a datastructure as a result. Problem is, that this result can be larger, than the standard service …
0
votes
2answers
12 views
Silverlight enabled WCF service port suddenly changed
I have a Silverlight web app solution with a Silverlight-enabled WCF service included. Everything has worked fine for the past 6 months or so. I can access data through the service with no problem.
…
1
vote
2answers
45 views
Can a .Net 2.0 winforms client app connect to a Windows Server .Net 3.5 WCF service? - architectural advice needed
In the bank I work all client workstations have .Net 2 installed it is outside my control to influence or get a newer version of the framework installed at the client end. On the server end I have …
0
votes
3answers
28 views
WCF: Exposing readonly DataMember properties without set?
I have a server side class which I make available on the client side through a [DataContract]. This class has a readonly field which I'd like to make available through a property. However, I'm unable …
1
vote
1answer
18 views
How many instances exists when a InstanceContextMode.Single WCF service exposes multiple endpoints?
Does the ServiceBehavior setting InstanceContextMode.Single sets a single instance regardless of the number of endpoints?
2
votes
2answers
14 views
Periodic tasks inside WCF service hosted in IIS
We would like to have some periodic actions executed by our WCF service hosted in IIS. What is the best way to do this...Creating a timer doesn't look as a good solution. Creating a windows service …
1
vote
2answers
39 views
How can i add contract attributes programaticly?
i have pure an interface like below
public interface IPure
{
Array GetEmployee(int employeeId);
DataSet GetAllProducts();
List<string> GetAllSubCategoryNames();
double …
