I know this may be a repeat but I've tried all of the examples I can find and have had no success.
I have successfully created a WCF Service Application and a client tool as well. But I need to accept messages that are going to look like this:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<SubmitMessage xmlns="http://tempuri.org/">
<username>username</username>
<password>password</password>
<data>simpleData</data>
</SubmitMessage>
</soapenv:Body>
</soapenv:Envelope>
But either I am not creating the binding correctly or I am not testing our service correctly. I have tried SoapUI and if I let it discover the service the messages work properly but they look slightly different from the one above. When I use the message formatted as above I get "Object reference not set to an instance of an object."
Here is an example of one that does work in SoapUI:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:dhit="http://schemas.datacontract.org/2004/07/dhitPCC">
<soapenv:Header/>
<soapenv:Body>
<tem:SubmitMessage>
<tem:value>
<dhit:data>data</dhit:data>
<dhit:password>?</dhit:password>
<dhit:username>?</dhit:username>
</tem:value>
</tem:SubmitMessage>
</soapenv:Body>
</soapenv:Envelope>
Can someone provide a Web.config example that would be awesome. Any general advice, links, or keywords to help me on my way would be just as helpful. Thank you in advance.
EDIT: Here is what I have for the Web.config. I arrived at this using the MS Service Configuration Editor.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="myPCService.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<system.serviceModel>
<client>
<endpoint address="http://10.1.1.181/myPCService/Services.svc" binding="basicHttpBinding"
bindingConfiguration="" contract="myPCService.IService" name=""
kind="" endpointConfiguration="" />
</client>
<bindings>
<basicHttpBinding>
<binding name="NewBinding0" />
</basicHttpBinding>
</bindings>
<services>
<service name="myPCService.Service" behaviorConfiguration="MyServiceTypeBehaviors">
<endpoint address="myPCService/Services.svc" binding="basicHttpBinding" bindingConfiguration="" contract="myPCService.IService" />
<endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="MyServiceTypeBehaviors" >
<serviceDebug includeExceptionDetailInFaults="true"/>
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
basicHttpBinding? Where do you get the error "Object reference not set to an instance of an object."? Is there a stack trace? – CodingWithSpike Oct 3 '11 at 18:57basicHttpBindingis using SOAP 1.1 - can't you use that?? – marc_s Oct 3 '11 at 18:58