Thanks again.
I haven't checked everything you mentioned, but shortly before your reply i got it to connect to some degree. I am using VB and a test form to simply test this out.
Here is what I had to do. I had to use the IP address URL and add to the URL your mention of the specific node i was on.
However, I am still having an issue with making it work and maybe one of the things you mention above will solve this too and if so please let me know and I will try them out.
My form has 3 boxes, am emlid, last name, first name and a button. This code is part of the click event on the button:
Dim MyWebService As New MyEmployeeWebService.CI_NDU_AO_EMP2_T_PortTypeClient
Dim emplRqst As New MyEmployeeWebService.CreateCompIntfcNDU_AO_EMP2_TTypeShape
Dim EmplID As New MyEmployeeWebService.EMPLIDTypeShape
Dim LastName As New MyEmployeeWebService.LAST_NAMETypeShape
Dim FirstName As New MyEmployeeWebService.FIRST_NAMETypeShape
EmplID.Value = txtEmplID.Text
LastName.Value = txtLastName.Text
FirstName.Value = txtFirstName.Text
emplRqst.EMPLID = EmplID
emplRqst.LAST_NAME = LastName
emplRqst.FIRST_NAME = FirstName
Dim emplResponse As New MyEmployeeWebService.CreateCompIntfcNDU_AO_EMP2_TResponseTypeShape
emplResponse = MyWebService.EmpCreate(emplRqst)
I get to the the last line (emplResponse = MyWebService.empCreate(emplRqst) and an error is thrown below:
The content type text/html of the response message does not match the content type of the binding (text/xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 572 bytes of the response were: '<?xml version="1.0" ?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>null</faultstring><detail><IBResponse type="error"><DefaultTitle>Integration Broker Response</DefaultTitle><StatusCode>20</StatusCode><MessageID>505</MessageID><DefaultMessage><![CDATA[Unable to find a Routing corresponding to the incoming request message.]]></DefaultMessage><MessageParameters></MessageParameters></IBResponse></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>'.
Any ideas?
Also, is there a spot where you can check what the statuscodes or MessageID's mean?