Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
16k views

Resolving Configuration Error in WCF AddressFilter Mismatch

I am getting the following error and could use some help resolving it. Anyone have any ideas? The message with To 'http://localhost:60078/BidService.svc/Query' cannot be processed at the receiver, ...
6
votes
3answers
638 views

How do I modify WCF to process messages in a different (non SOAP) format?

I am working with WCF to exchange messages with a third party company. The messages need to be sent and received in an envelope that matches the ebXML specification. Ideally I would like to use as ...
6
votes
2answers
4k views

How can I deploy my WCF Service without IIS?

I'm doing some quick Java-.NET interop and have decided on POX with WCF. However, I don't want to -- nor have access to -- deploy to IIS. Would just wrapping it up as a .NET Service be the way to ...
4
votes
5answers
1k views

A simple WCF Service (POX) without complex serialization

I'm a complete WCF novice. I'm trying to build a deploy a very, very simple IIS 7.0 hosted web service. For reasons outside of my control it must be WCF and not ASMX. It's a wrapper service for a ...
3
votes
3answers
3k views

WCF REST tutorials for POX

can anyone tell me where to find good WCF REST tutorials? using (POX) this one is ok http://msdn.microsoft.com/en-us/library/aa395208.aspx but i want to use something a little simpler i cant seem to ...
2
votes
2answers
434 views

Can I call a WCF service without setting content-type?

I'm trying to replace a legacy REST/plain old xml web service with a WCF one using webHttpBinding. It MUST be backwards compatible with existing clients - which currently do not send a content-type ...
2
votes
4answers
267 views

What is the significance of POX (“plain old XML”)?

I've seen some references recently to POX or "plain old XML". Is there a movement to simplify XML use? Wikipedia says: People typically use the term [POX] as a contrast with complicated, ...
1
vote
2answers
40 views

POX (Plain-Old-Xml) service using Stream parameters

I want to develop a WCF service, which will receive various XMLs and save them for further processing. I can't stick to particular data type, because the incoming XMLs will be totally different. So ...
1
vote
0answers
135 views

WCF authentication using credentials embedded in message

We are replacing an existing web service that supports both SOAP and POX endpoints for a large number of clients. SSL provides transport security but the messages contain credentials ...
1
vote
0answers
254 views

Accepting XML as method parameters in WCF RESTful Service

Folks, I'm about 90% of where I want to be with my WCF RESTful service but I'm having a little trouble with figuring out a good way to do POST data. I want it to work the way it does in the MVC ...
1
vote
1answer
626 views

WCF - SSO authentication token and POX interfaces

Here's what I'm trying to do. We have a SSO authentication service that other externally facing web pages and services use to authenticate users. A user tries to reach a service, if no cookie is ...
1
vote
2answers
1k views

Configure WCF endpoint for Plain Old XML (POX)?

Is there anyway to configure WCF endpoint/binding to send the data "as-is" without wrapping as a soap message (with the Envelope tag, etc.)? I'm trying to send an xml using WCF and its ended up ...
1
vote
3answers
4k views

WCF Rest parameters involving complex types

Setting up a WCF service that uses the webHttpBinding... I can return complex types from the method as XML ok. How do I take in a complex type as a parameter? [ServiceContract(Name = "TestService", ...
1
vote
3answers
2k views

Problem with serialization to XML using REST and WCF

I am having problem with using REST and returning response as an XML. I've created basic service from the template and everything looks nice but when I want to serialize my class and return it as a ...
1
vote
2answers
816 views

Double request while making POX REST call using WCF with WebHttpBinding set to Basic Authentication

Having an issue while making POX REST call using WCF with WebHttpBinding set to Basic Authentication (HttpClientCredentialType.Basic) Instead of one call from the client with “Authorization: Basic” ...
1
vote
2answers
758 views

Manually writing WCF POX posts

Let's say I have a WCF contract such as [ServiceContract] public interface IContract { [OperationContract] [WebInvoke(Method="POST", RequestFormat=WebMessageFormat.Xml, ...
0
votes
1answer
41 views

Error with WCF REST (POX) Client when 201 Created and No Response Content

I am creating a WCF POX proxy using the generic ClientBase base class against a fixed specification. The specification has items created with a POST call to an endpoint. With no body response packet ...
0
votes
0answers
103 views

Plain Old XML webservice using Spring: which view technolgy?

I have been writing a Plain Old XML webservice using Spring MVC. Currently I am using Freemarker to layout the XML, and that works ok. But I'm wondering what other approaches I could look at? Reason ...
0
votes
1answer
178 views

POX return data from WCF Data Services

I am using WCF Data Services (netfx4) to provide data sourced from SQL via EF, the standard OData mechanism is fine and JSON works as well but I need a third option for generic POX (plain old xml). I ...
0
votes
1answer
513 views

WCF REST: passing a generic list as a request

I have a POST with a WebMessageFormat.Xml. It's a simple method that takes in a Company object. Aside from simple types containing "CompanyId", "CompanyName", "CompanyDescription etc., inside the ...
0
votes
1answer
3k views

How to create HTTP POST Request Body content with WCF REST (Starter Kit)

I'm integrating an app with ZenDesk. They have a REST API. I need to send POX in the request body. I'm using the WCF REST Starter Kit. How do I programmatically add my xml to the request body? ...
0
votes
1answer
236 views

WCF + POX + XDocument, is there a way to do it?

I'm in deep trouble because I wrote a POX service w/ WCF and WebInovke and specified the input type as XElement because we need several different types of data coming into. I'm in trouble now because ...