Re: Client handler

2003-12-04 Thread Benjamin Flohr
Hi the client-config.wsdd is located in your axis.jar. You have to change it inside the jar (on the client side). it looks like this: ?xml version=1.0 encoding=UTF-8? deployment name=defaultClientConfig xmlns=http://xml.apache.org/axis/wsdd/;

Re: http headers and handlers

2003-11-27 Thread Benjamin Flohr
TransportNotFoundException extends Exception { /*public TransportNotFoundException(String message, Throwable t) { super(message, t); }*/ public TransportNotFoundException(String message) { super(message); } } } Benjamin Flohr wrote: Hi Aaron, I

http headers and handlers

2003-11-26 Thread Benjamin Flohr
Hi*, we need to access the http headers and set them using information taken from the fully formed SOAP envelope before it is posted. We managed to do this by modifying the HttpSender and assigning it to the call as its handler. Unfortunately we lose the typemapping for the

Re: http headers and handlers

2003-11-26 Thread Benjamin Flohr
frameworks will provide similar mechanisms). I can provide sample code and/or libraries if you need. Aaron Hamid CIT/ID Cornell University Benjamin Flohr wrote: Hi*, we need to access the http headers and set them using information taken from the fully formed SOAP

Re: http headers and handlers

2003-11-26 Thread Benjamin Flohr
; } public static class TransportNotFoundException extends Exception { /*public TransportNotFoundException(String message, Throwable t) { super(message, t); }*/ public TransportNotFoundException(String message) { super(message); } } } Benjamin Flohr wrote