System.Configuration.ConfigurationErrorsException raised
Mon, 17 Mar 2008 04:36:03 -0700
I've build a small sample WCF server (.exe). I'm using app.config to set it
up. When I start the application, I receive multiple first chance exception:
System.Configuration.ConfigurationErrorsException occurred
Message="This element is not currently associated with any context"
Source="System.Configuratio ...
|
Serialization of DataContract with Unwrapped Array
Fri, 14 Mar 2008 12:09:45 -0400
I am having a problem getting a data contract to serialize correctly and I
haven't been able to come up with a solution yet.
Basically, I have the following Xml Schema that clients are sending to my
WCF Service as pure Xml:
http://docs.oasis-open.org/emergency/cap/v1.1/errata/approved/cap.xsd
...
|
WCF Event Publishing
Fri, 14 Mar 2008 04:40:02 -0700
The Publisher Subscriber model can be easily and effectively implemented in
.NET using events and delegates. But implementing the same over the network
seems to be a bit more challenging.The code sample provided here demonstrates
a simple chat room and it shows you how to go about setting up a
publisher-subs ...
|
how to close a duplex channel
Tue, 11 Mar 2008 09:00:01 -0700
Hi all,
how do i close a duplex channel on the server side? Everything i have is an
interface reference to the callback. This doesn't expose something like close
or abort.
Thanks in advance
...
|
Calling methods on DataContracts
Mon, 10 Mar 2008 13:39:47 -0700 (PDT)
Hi,
I have this requirement that a web service be used to return an object
that the client can call methods on. For e.g:
WebServiceClient c = new WebServiceClient();
SomeObject o = c.GetObject();
o.DoSomething();
o.Save();
Is this possible with current state of WCF? If so, how?
Thanks! ...
|
Monitor a WCF service from operation point of view
Thu, 6 Mar 2008 11:33:07 +0100
Hello,
does anyone have an idea how you can monitor if a WCF service still responds
correctly to his 'queries'?
Kurt Biesemans
Belgium
...
|
Too large WCF response (Compact framework)
Wed, 5 Mar 2008 16:50:25 +0100
Hi,
One service function returns a dataset as a large xml string (> 45 KB).
When I call the WCF function from a winforms app, I can receive the string.
But first I had to change the app.config:
<binding name="BasicHttpBinding_IOPSSvc"
maxBufferSize="2048000"
maxReceivedMe ...
|
|
|
reliableSessionEnabled
Wed, 5 Mar 2008 07:39:09 -0800
Hi all,
what capabilitiy/property/behaviour/function - or whatever you call it -
does "reliableSessionEnabled=true" add to a NetTcpBinding? I thought TCP is
inherently reliable.
Thanks in advance ...
|
duplex channel client-side behaviour
Wed, 5 Mar 2008 07:24:10 -0800
Hi all,
i have a simple contract with an associated callback contract (over a simple
NetTcpBinding). I instantiated two clients. When the clients are called back
by the service i notice the callbacks being executed on different threads
than the one where both clients were constructed. Further i can observe th ...
|
POX IIS PROBLEM
Wed, 5 Mar 2008 05:08:00 -0800
Hi,
I have an interesting problem which appears to be a IIS / WCF setup / config
issue.
I have the WCF POX SDK example application hosted under IIS. The application
works as expected on another developers machine. However, when I enter the
URL on my machine: http://localhost/servicehost/customers.svc/cus ...
|