Is it currently possible to include content in the soap:Header via a LotusScript web service consumer?
As far as I can tell, the correct classes do not even appear to be generated when you import the WSDL into the consumer… Anyone had any luck with this - aside from going Java that is?
For example, in java it would be someething similar to the following Axis code:
FooServiceLocator loc = new FooServiceLocator();
FooService binding = loc.getFooService();
org.apache.axis.client.Stub s = (Stub) binding;
s.setHeader(“http://my.name.space/headers”, “mysecurityheader”, “This guy is OK”);
result = binding.myOperation(…);