vote up 2 vote down star
1

I have an environment in which I cannot add another HTTP container (whether ServiceHost, IIS, etc.) but I still need to process SOAP requests (represented as strings) with a WCF web service. I was hoping to write a simple wrapper method (C#) such as:

string processSoapMessage(string req);

In that method, I would manually create a System.ServiceModel.Channels.Message instance with an XML reader that operates on the input string. I was hoping to avoid writing manual dispatching code by creating a ChannelDispatcher that would process the resulting Message instance, but it seems that ChannelDispatchers are tied to a particular ServiceHost, something I cannot have in my environment if it requires an open port. Is there some dispatching code I can call to accomplish this without creating a hosting container?

flag
1  
Where is the SOAP request that you are to process coming from? – Shiraz Bhaiji Jul 4 at 19:05
I'm going with Shiraz on this one: if you don't already have an open port, where is the soap from, exactly? – Alex Lyman Jul 12 at 2:52
The web service you have to talk to is on the same machine? – John Saunders Jul 20 at 13:05

3 Answers

vote up -1 vote down

Whatever you do, don't use the System.String type to hold XML. Pass an XmlReader or XmlDocument or something. Always use XML APIs to manipulate XML.

link|flag
Downvoter: huh? You think manipulating XML as strings is a good plan? – John Saunders Jul 20 at 16:11
vote up 1 vote down

Assuming everything is happening on the same machine, then using a Named Pipe binding is probably your best bet.

link|flag
vote up 0 vote down

So you cannot create a simple console app that will create and open a ServiceHost to host your service class?

Marc

link|flag
Anything that requires an open port is prohibited, but it just occurred to me that I might be able to use named pipes endpoints. I am going to try that. – Dan Jun 26 at 18:24
You can't even use port 80? – John Saunders Jul 20 at 13:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.