I'm a newbie to WCF, REST etc. I'm trying to write a service and a client. I want to pass xml as string to the service and get some response back.

I am trying to pass the xml in the body to the POST method, but when I run my client, it just hangs.

It works fine when I change the service to accept the parameter as a part of the uri. (when I change UriTemplate from "getString" to "getString/{xmlString}" and pass a string parameter).

I'm pasting the code below.

Service

[ServiceContract]
public interface IXMLService
{
[WebInvoke(Method = "POST", UriTemplate = "getString", BodyStyle=WebMessageBodyStyle.WrappedRequest, 
    RequestFormat = WebMessageFormat.Xml, ResponseFormat = WebMessageFormat.Xml)]
[OperationContract]
string GetXml(string xmlstring);
}

// Implementaion Code

public class XMLService : IXMLService
{

#region IXMlService Members

public string GetXml(string xmlstring)
{
    return "got 1";
}

#endregion  
}    

Client

string xmlDoc1="<Name>";        
    xmlDoc1 = "<FirstName>First</FirstName>";
    xmlDoc1 += "<LastName>Last</LastName>";
    xmlDoc1 += "</Name>";


    HttpWebRequest request1 = (HttpWebRequest)WebRequest.Create       (@"http://localhost:3518/XMLService/XMLService.svc/getstring");
    request1.Method = "POST";
    request1.ContentType = "application/xml";
    byte[] bytes = Encoding.UTF8.GetBytes(xmlDoc1);        
    request1.GetRequestStream().Write(bytes, 0, bytes.Length); 


    Stream resp = ((HttpWebResponse)request1.GetResponse()).GetResponseStream();
    StreamReader rdr = new StreamReader(resp);
    string response = rdr.ReadToEnd();

Could somebody please point out what's wrong in it?

link|improve this question
Will it change if you use XElement instead of string as parameter? Also set Content-Length of the request. – Ladislav Mrnka Jun 6 '11 at 14:05
Thank you for your reply. I tried using XElement. no luck!! – sumi Jun 6 '11 at 14:26
feedback

3 Answers

up vote 1 down vote accepted

Change your operation contract to use an XElement and the BodyStyle of Bare

[WebInvoke(Method = "POST", 
    UriTemplate = "getString", 
    BodyStyle = WebMessageBodyStyle.Bare,
    RequestFormat = WebMessageFormat.Xml, 
    ResponseFormat = WebMessageFormat.Xml)]
[OperationContract]
string GetXml(XElement xmlstring);

Additionally I suspect you client code should contain (note the first +=):

string xmlDoc1="<Name>";
xmlDoc1 += "<FirstName>First</FirstName>";
xmlDoc1 += "<LastName>Last</LastName>";
xmlDoc1 += "</Name>";
link|improve this answer
feedback

I believe the problem is that you're setting the BodyStyle to WrappedRequest which would require your incoming XML to be wrapped in a <GetXml> element in whatever namespace your service contract is defined in. If you set the BodyStyle to Bare and use XElement as @Ladislav Mmka suggested in the comment you should be good to go.

link|improve this answer
feedback

You need to wrap your XML string in a <string/> tag with the appropriate Microsoft XML serialization namespace. This question has been answered before here on SO but, I can't find it at the moment.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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