C# webservice needs to convert SOAP to REST on the fly. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:24:54Z http://stackoverflow.com/feeds/question/533525 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/533525/c-webservice-needs-to-convert-soap-to-rest-on-the-fly 0 C# webservice needs to convert SOAP to REST on the fly. Neil Andrew 2009-02-10T18:25:24Z 2009-02-11T18:15:05Z <p>I am trying to write a translation layer for a test system for which I am writing software. I am using LabVIEW for the test system and that uses a RESTful webservice. I have implemented the REST Methods and they are working OK. The remote Test controller and data service layer etc are written in C# and SQL and these are the items I have to interface with using SOAP. I have a simple webservice client that has been written in C# for the SOAP side by a colleague. I basically need to take the the objects collected by the C# program and then build a small XML that can be sent to the REST URI as post data. </p> <p>I have done an introduction to C# course but it was a "this is C# based on your text based language" not helpfully when I mainly code in LabVIEW. I have trained with C and a bit of C++ ages ago but really struggled in the course it was a very steep learning curve and not used C# since the course about 3 months ago. I want to learn C# and thought this would be an easy way to start but I am struggling so far.</p> <p>OK some code:</p> <pre><code>[WebMethod] [SoapHeader("RMSSvcHeader", Direction = SoapHeaderDirection.InOut)] public ReturnStatus Initialise(string uri) { ReturnStatus rs = new ReturnStatus(); try { rs.Message = HttpPostXml(uri, @"C:\Inetpub\wwwroot\RMS\XMLMessages\Initialise.xml"); } catch (Exception exc) { rs.Status = 1; rs.Message = exc.Message; } return rs; } </code></pre> <p>So this current version uses a method to post a set XML file of dummy data to the REST URI as POSTDATA for test purposes. The SOAP data passed to this method exposes a UUID (GUID) and the Method name. This means that from this I have enough info to create the XML for the POSDATA message that need to be sent to the REST service. Something like this:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;Initialise&gt; &lt;UUID&gt;d7051980-a690-11dd-ad8b-0800200c9a66&lt;/UUID&gt; &lt;/Initialise&gt; </code></pre> <p>I just need pointing in the right direction as how best to convert the objects to XML for the REST service.</p> <p>Thanks,</p> <p>Neil.</p> http://stackoverflow.com/questions/533525/c-webservice-needs-to-convert-soap-to-rest-on-the-fly/533563#533563 2 Answer by BC for C# webservice needs to convert SOAP to REST on the fly. BC 2009-02-10T18:34:41Z 2009-02-10T18:34:41Z <p>Have you considered using WCF instead? <a href="http://msdn.microsoft.com/en-us/netframework/cc950529.aspx" rel="nofollow">There is an easier way</a> to publish those services for REST interaction.</p> http://stackoverflow.com/questions/533525/c-webservice-needs-to-convert-soap-to-rest-on-the-fly/538053#538053 0 Answer by Jeremy for C# webservice needs to convert SOAP to REST on the fly. Jeremy 2009-02-11T18:11:39Z 2009-02-11T18:11:39Z <p>What you could do is have webservices, pages that expose the service in a RESTful way, or a SOAP way (through spitting back the XML).</p>