I have web-services applications, running on Windows Server 2003. These hosts (each of them on separate appPool) contains multiple operations (consulting services).
Does exist an approach to perform reliability on these hosts, in terms of appPools (like customizing the pools): If an worker process fails, another will be started in its pl...
any insights are helpful
...
I have configured a Virtual Directory on IIS 6.0 running under UserA.
AppPool for the same is configured under Network Services.
I have one WCF svc file running under it,
My question is:
Is it running on UserA Account Or Network Service?
...
So far I've been successfully using fiddler to sniff web service traffic from both test fixtures, console apps and web projects.
Today I noticed I am not able anymore to sniff that kind of traffic if I am running my web application (it's a ASP.NET website, hosted locally on IIS). I see all the local traffic but the web service traffic i...
Hi, I was working on a Silverlight + WCF application. One fine day when I opened the website in Visual Studio 2008, it gave me an error:
"Error 99 It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an ...
What is the best practice for emulating overloaded methods over WCF?
Typically I might write an interface like this
interface IInterface
{
MyType ReadMyType(int id);
IEnumerable<MyType> ReadMyType(String name);
IEnumerable<MyType> ReadMyType(String name, int maxResults);
}
What would this interface look like after yo...
Here's what I have so far:
IService:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
namespace ServiceLibrary
{
[ServiceContract(SessionMode = SessionMode.Allowed, CallbackContract = typeof(IServiceCallback))]
public interface IService
{
[OperationCon...
...what options are there now with .NET 4.0, in a way that does support NAT for the client side (i.e. client behind NAT).
I would prefer to use something HTTP based, but that is a weak condition - I think mid term I will have some non http communication outside WCF anyway, so proxy traversal is something I could delay.
Pre .NET 4.0 the...
Hi,
I have a setup with a .NET WCF Service hosted on IIS.
The client apps are connecting to the service through a set of ISA proxy's. I don't know how many and don't know about their configuration etc.
In the client apps I open a client to the service and make several calls via the same client.
It works great in my office, but when I d...
I'd like to setup my WCF services to use an IoC Container. There's an article in the Autofac wiki about WCF integration, but it's showing just an integration with a service hosted in IIS.
But my services are hosted in a windows service.
Here I got an advice to hook up the opening event
http://groups.google.com/group/autofac/browse_thr...
Hi everyone,
here's my problem. I am using WCF for communication between two services. I am wondering if the reliableSession option guarantees that a message received by one service is really the same as the message sent by the other service, i.e., that no bit flips or similar happened on the wire?
I know that reliableSession takes car...
I have a WCF application that is using sessions.
Is there any central event to get thrown when a session ends? How can I find out when a session is ending WITHOUT (!) calling a method (network disconnect, client crashing - so no "logout" method call)?
The server is hosted as:
[ServiceBehavior(
InstanceContextMode = InstanceContext...
Hey guys,
I have a list i'm filling at server side. It's a list of "User", which implements IComparable.
Now when WCF is serializing the data, i guess it's not including the CompareTo method. This is my Object class :
[DataContract]
public class User : IComparable
{
private string e164, cn, h323;
private int id;
private D...
I'm writing a data driven WPF client. The client will typically pull data from a WCF service, which queries a SQL db, but I'd like the option to pull the data directly from SQL or other arbitrary data sources.
I've come up with this design and would like to hear your opinion on whether it is the best design.
First, we have some data ob...
I'm trying to determine the best approach for building a WCF Service, and the area I'm struggling with most is returning lists of objects.
The built-in maxMessageSize of 64k seems pretty high, and I really don't want to bump it up (quick googling finds 100s of places bumping the maxMessageSize up to multi-gigabyte range which seems fool...
I once read a blog post and cannot find it anymore. drat!
It was about a guy who setup a wcf service (I guess RIA, but could have been something else) exposing the model via IQueryable to the querystring.
Sou you could say
http://host/articles/123/ratings
and you'd get a list (soap or json) of serialized Rating entities (the properti...
I have created a WCF service in Visual Studio 2010 along with some supporting assemblies. I have also created a test project which contains multiple unit tests for the service and the supporting assemblies. Right now I have them all in one solution with the Test project having a service reference (http) to the WCF service.
If I debug th...
I have a WCF web service running in IIS 7 using a self-signed certificate (it's a proof of concept to make sure this is the route I want to go). It's required to use SSL.
Is it possible to use the WCF Test Client to debug this service without needing a non-self-signed certificate?
When I try I get this error:
Error: Cannot obtain M...
Hi every one.
let's say that i have an order system.
each "Order" references a "Customer" Object.
when i fill the orders list in Data Access Layer, the customer object should be brought from
a Customer Web Service "WCF".
so i didn't map the Customer property in the Order mapping class,
Id(o => o.OrderID).GeneratedBy.Identity();
...
I have a windows service written in .NET 3.5 (c#) with a System.Threading.Timer that spawns several Threads in each callback. These are just normal threads (no Thread Pool) and I've set the IsBackground = true on each thread since I'm only going to be running managed code.
When a user stops the service, what happens to all the threads? ...