Hello guys,
I'm newbie in .NET.
I have agent server works with SOAP protocol.
Added web service which have getFiles and setFiles methods.
SoapServer soapServer = (SoapServer)Activator.GetObject(typeof(SoapServer) ,
http://localhost
ort/Server);
SoapServer is the interface with methodts to be called.
When I called soapServer.getFiles("$FRTL_XMLHOME", "etc", "xml");
it works OK, but when I tried to call setFiles throws exception
"Unable to write data to the transport connection: An established connection
was aborted by the software in your host machine"
By the way with the same agent perfectly works java code no exceptions no
errors, the difference... client changed from java to .Net,
Language is C#.
Please help me with this problem.