Re: [Axis2] context lookup issue

2006-09-21 Thread Davanum Srinivas
Folks, Please create a JIRA issue, so that we can track and fix the problem. thanks, dims On 9/21/06, robert lazarski <[EMAIL PROTECTED]> wrote: Other way around ... I was suggesting you get a reference to some class from WEB-INF/classes that your servlet sets up, that you call from inside the

Re: [Axis2] context lookup issue

2006-09-21 Thread robert lazarski
Other way around ... I was suggesting you get a reference to some class from WEB-INF/classes that your servlet sets up, that you call from inside the aar . It shouldn't be your servlet - use a singleton perhaps. I really don't understand why you could get a bound InitalContext inside WEB-INF/clas

Re: [Axis2] context lookup issue

2006-09-21 Thread Johan Lundberg
I'm not sure how I could get a reference to the ServiceClass in WEB-INF/classes. Can you be more specific cause I feel a bit isolated inside my aar. also: Gábor Prótár got this working the way I intended it to initially. Check the thread 'Tomcat + Axis2 + MySQL' fist post from 9/19 2006 2:08 P

Re: [Axis2] context lookup issue

2006-09-21 Thread robert lazarski
Well it might be a classloader issue because an aar uses a different classloader than a servlet. You can of course have an aar which can see classes in a higher classloader - for example you can have an aar whcih references your ServiceClass that is placed in WEB-INF/lib or WEB-INF/classes ... but

Re: [Axis2] context lookup issue

2006-09-21 Thread Johan Lundberg
Hi Robert I tried to do this from a special servlet in axis2/WEB-INF/classes and the lookup works like a charm. Why isn't it accessible from the aar classes? feature or bug? If it is a feature, how do I get access to the context from initContext.lookup("java:comp/env"); ? My final goal is to

Re: [Axis2] context lookup issue

2006-09-21 Thread robert lazarski
Can you do the same lookup successfully via a non-axis2 class inside WEB-INF/classes ? Robert On 9/21/06, Johan Lundberg <[EMAIL PROTECTED]> wrote: I am using Axis2 nightly build from 31 August and cannot lookup the java:comp/env context from a created InitialContext created inside a class in t

[Axis2] context lookup issue

2006-09-21 Thread Johan Lundberg
I am using Axis2 nightly build from 31 August and cannot lookup the java:comp/env context from a created InitialContext created inside a class in the aar-file When I do this: Context initContext = new InitialContext(); Context envContext = (Context)initContext.lookup("java:comp/env"); I get a