RE: [axis2] Getting MessageContext or ServiceGroupContext in CallbackHandler

2006-08-09 Thread Dave Cowing
at sort of information are you trying to access within the CallbackHandler? Thanks, Ruchith On 8/8/06, Dave Cowing <[EMAIL PROTECTED]> wrote: > > > How can I get access to the MessageContext or ServiceGroupContext in a > CallbackHandler for processing passwords with Rampart? > > T

[axis2] Getting MessageContext or ServiceGroupContext in CallbackHandler

2006-08-08 Thread Dave Cowing
How can I get access to the MessageContext or ServiceGroupContext in a CallbackHandler for processing passwords with Rampart?   Thanks, Dave

RE: [axis2] User credentials in service

2006-08-08 Thread Dave Cowing
ontext instance. Thanks, Ruchith [1] https://svn.apache.org/repos/asf/webservices/axis2/trunk/java/modules/core/s rc/org/apache/axis2/context/MessageContext.java On 8/8/06, Dave Cowing <[EMAIL PROTECTED]> wrote: > Ruchith, > Thanks. > The odd thing is that in the example you refer

RE: [axis2] User credentials in service

2006-08-08 Thread Dave Cowing
User credentials in service Hi Dave, This [1] should solve your problem: [1] http://www.wso2.net/kb/169 Thanks, Ruchith On 8/8/06, Dave Cowing <[EMAIL PROTECTED]> wrote: > > > I've been getting acquainted with Rampart and understand a bunch of it > (thanks to Ruchith for hi

[axis2] User credentials in service

2006-08-07 Thread Dave Cowing
I've been getting acquainted with Rampart and understand a bunch of it (thanks to Ruchith for his great tutorial).   Now I have a question: How can I access user credentials (either the signature or a username) in my service?   I'm performing a transaction and need to ensure that I use the

[Axis2] Rampart/security articles

2006-08-04 Thread Dave Cowing
Hi,   I'm working with Rampart to provide authentication on my services.  I've been through the online docs on Rampart and Wss4j, but they're cryptic and incomplete.  Does anyone have any recommendations on articles on using Rampart?  Ideally an end-to-end walk through with details on the op

Startup parameters

2006-08-01 Thread Dave Cowing
This is probably a really simple question.  In the service init, can I get access to custom paramters from either the axis.xml or service.xml file?  I'm looking to place parameters that will change with service installation somewhere.  Examples of these parameters are resource paths, databas

RE: [AXIS2] WSDL2Java not generating multiple faults

2006-07-27 Thread Dave Cowing
g the same element for all three faults. Anne On 7/27/06, Dave Cowing <[EMAIL PROTECTED]> wrote: > > > All, > > First, I apologize for not following the appropriate process when I > filed this as a bug (AXIS2-922) before appropriately investigating it. > > I'm trying

[AXIS2] WSDL2Java not generating multiple faults

2006-07-27 Thread Dave Cowing
All,   First, I apologize for not following the appropriate process when I filed this as a bug (AXIS2-922) before appropriately investigating it.   I'm trying to generate a skeleton and stub from my wsdl.  This works fine when I only have a single fault.  But when I have multiple faults (3 i

RE: [Axis2] How to perform startup initialization?

2006-07-23 Thread Dave Cowing
h scope="application" (service.xml), then your init() will be called once when your service is loaded and once when your application is destroyed.  You can then perform your DB connections and any other one time initialization more conveniently. From: Dave Cowing [mailto:[EMAIL PROTECTED]

RE: [Axis2] How to perform startup initialization?

2006-07-23 Thread Dave Cowing
Sanjiva/Tony, Thanks for the suggestions, Dave -Original Message- From: Sanjiva Weerawarana [mailto:[EMAIL PROTECTED] Sent: Sunday, July 23, 2006 7:41 AM To: axis-user@ws.apache.org Subject: Re: [Axis2] How to perform startup initialization? On Sat, 2006-07-22 at 15:04 -0400, Dave

RE: [Axis2] How to perform startup initialization?

2006-07-22 Thread Dave Cowing
estroy the originalmessage without making a copy.  Thank you.     - Original Message - From: Dave Cowing To: axis-user@ws.apache.org Sent: Saturday, July 22, 2006 3:04 PM Subject: [Axis2] How to perform startup initialization? I'm getting started wit

[Axis2] How to perform startup initialization?

2006-07-22 Thread Dave Cowing
I'm getting started with Axis 2 and am looking to perform some initialization when axis2 starts up.  Specifically, I'm looking to configure a database pool and a couple of other resource pools that will be shared by web services.   In a servlet, I do this by creating a servlet listener, conf