I've downloaded the Orion SDK and it works fine, except that it only connects to the web service if it is installed on the same machine as the Orion server.
localhost:17778/.../InformationService
The reason is the WSDL binds the service to localhost rather than the actual hostname or IP address of the server:
<wsdl:port name="BasicHttpBinding_InformationService" binding="tns:BasicHttpBinding_InformationService">
<soap:address location="">localhost:17778/.../>
</wsdl:port>
Can this hostname be configured somewhere in Orion?
Thanks in advance!