If you are using a static client, you can do this FooPort port = service.getFooPort(); Stub stub = (Stub) port; stub._setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, "http://xxx.xxx.xxx.xxx/etc/etc");
- Mark --- [EMAIL PROTECTED] wrote: > I want to call a WS called for example MyService but MyService isn't > deployed in Axis (or anywhere else). Instead I want other WS to be > called, for example CommonService (wchich is deployed of course) and a > file MyService.txt to be passed as an argument for CommonService. I > thought that I might write a handler to be processed in global chain that > substitutes MyService with CommonService and adds argument (path to > MyService.txt) but that does not change anything. What am I doing wrong? > > >