RE: Axis security, when web-app can't use Basic Web Authenticatio n

2005-02-17 Thread aveitas
Not sure if this fits your requirements, but if you want to use HTTP Basic Authentication **without** having the servlet container manage it for you, try using: org.apache.axis.handlers.http.HttpAuthHandler This class strips out the user name and password from the HTTP Headers and sets the userna

Re: Doubt on AXIS Handlers

2005-02-15 Thread aveitas
Hi Kumar, Other than the HTTP Transport, Axis also provides a JMS Transport and a Mail Transport. See the following packages for details: org.apache.axis.transport.mail org.apache.axis.transport.jms So instead of communicating SOAP over HTTP, you would communicate SOAP over JMS or SMTP/POP3. A

RE: How do I reset the list of deployed Web services?

2005-02-02 Thread aveitas
Hi Dave, Just FYI, the wsabi4axis open source project allows you to manage your server-config.wsdd using an intuitive GUI. The GUI is actually a web application that can run standalone or be integrated within your axis deployment. For a demo, check out, http://demo.wsabi.org Click on "Configur

Re: SOAP Intermediaries

2005-01-13 Thread aveitas
Hi Jason, Sorry to contact directly, but didn't want to get too off-topic on the mailing lists. What are your requirements for a SOAP Intermediary? Are you looking for Web Services Management capabilities?? Thanks, Al Quoting Jason Judt <[EMAIL PROTECTED]>: > Hi all, > > I was curious about

Re: logging before anything else

2005-01-07 Thread aveitas
Hi Marko, One option is to configure your web service to have a request handler that captures the incoming request. This handler would grab the SOAP request and then log it. But I am not sure if that meets your requirement of "before axis begins to parse them". To save you some work, the wsabi

RE: client config solved and on to the next problem

2004-12-30 Thread aveitas
Hi Jay, Are all of the relevant jar files that Axis is dependant on accessible to the applet to download?? That might be the reason it is working in netbeans and not in IE. Al Quoting Jay Doggett <[EMAIL PROTECTED]>: > Al, > > The interesting thing is, the applet code works when I run

RE: client config solved and on to the next problem

2004-12-30 Thread aveitas
Hi Jay, OK, it sounds like you do not have a need for a handler, and just want to connect to the service. Please correct me if I am misunderstanding. Try the following out a) extract client-config.wsdd from axis.jar jar xvf axis.jar org/apache/axis/client/client-config.wsdd b) place th

Re: client config solved and on to the next problem

2004-12-30 Thread aveitas
Hi Jay, Here is a client-config.wsdd that you can use as an example for defining a handler. The handler in this case is configured at the global level, so all client invocations will invoke this handler. http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/p

RE: Axis 1.2 RC2 - server-config.wsdd is missing

2004-12-30 Thread aveitas
As an alternative, server-config.wsdd exists in axis.jar in the RC2 distribution. jar xvf axis.jar org/apache/axis/server/server-config.wsdd Al Quoting Stojan Sljivic - GDS <[EMAIL PROTECTED]>: > Thanks Christopher. > > Regards, > Stojan > > -Original Message- > From: Hewitt, Christophe

Re: getting a parameter

2004-12-20 Thread aveitas
Hi Paul, This should get you where you want to go SOAPEnvelopeenv = messageContext.getRequestMessage().getSOAPEnvelope(); SOAPBodyElement e= env.getFirstBody(); Iterator it = e.getChildElements(); while (it.hasNext()) { } By iterating thru the child elements you should be a

Re: response has been sent?

2004-12-17 Thread aveitas
Hi Jorge, One option you have is to set up a handler that is invoked before and/or after your web service method has completed. This handler could inspect the SOAP envelope to make sure that the response message has been sent "successfully", but the definition of "successfully" can mean many thin

Re: SOAP auditing best practices

2004-12-17 Thread aveitas
Hi Andy, The current release of wsabi4axis project (http://sourceforge.net/projects/wsabi4axis) has the building blocks for the auditing capabilities you are looking for. A subsequent release will support full-blown auditing capabilities. We prioritize new features based on feedback from the co

Re: Monitor Client usage of WS

2004-12-16 Thread aveitas
Hi Suzy, The wsabi4axis project at http://sourceforge.net/projects/wsabi4axis has the functionality that you are looking for. After configuring your web services with a WSABI Handler, information about each invocation on your web services is collected and persisted. Using an intuitive GUI, users