RE: java.lang.NoClassDefFoundError: org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl

2007-12-31 Thread Tushar.Gudadhe
Martin,
 
yes   i see it. Module is getting engaged you
can see from  the stack trace i attached in my first mail.
Not sure why its  not able to find the
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl class
though.
 
-Tushar
 
 



From: Martin Gainty [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 31, 2007 1:27 PM
To: axis-user@ws.apache.org
Subject: RE: java.lang.NoClassDefFoundError:
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl


can you check the module reference in axis2/WEB-INF/conf/axis2.xml
(should look something like)
 

Martin 
__
Disclaimer and confidentiality note
Everything in this e-mail and any attachments relates to the official
business of Sender. This transmission is of a confidential nature and
Sender does not endorse distribution to any party other than intended
recipient. Sender does not necessarily endorse content contained within
this transmission.






Subject: RE: java.lang.NoClassDefFoundError:
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl
Date: Mon, 31 Dec 2007 10:46:19 -0500
From: [EMAIL PROTECTED]
To: axis-user@ws.apache.org


Hi Raghu,
 
Thanks for replying  .. yes i have all jars in WEB-INF/lib
folders including axiom-impl-1.2.5.jar ..
The class
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl is refered
by org.apache.axis2.handlers.addressing.AddressingOutHandler which i
checked is in addressing-1.3.mar
 
Is it because of modules i am having this issue.
Another observation I dont get this error  for other normal
requests. Only when i am calling another webservice within our axis
engine I came across this issue.
 
Thanks,
Tushar
 



From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 28, 2007 3:34 PM
To: axis-user@ws.apache.org
Subject: RE: java.lang.NoClassDefFoundError:
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl



Hi Tushar,

 

Do you have axiom-impl-1.2.5.jar in your classpath.  The
SOAP11HeaderBlockImpl class is in this jar file.

 

Thanks

Raghu





From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 28, 2007 11:47 AM
To: axis-user@ws.apache.org
Subject: FW: java.lang.NoClassDefFoundError:
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl

 

Hi, 
I get following error .. 
I short what I am doing is calling another webservice(hosted on
another axis engine)  using client from within our axis engine.
I am using Axis2 1.3 version. 
While debugging what I observed is as follows : 
1) Primary request comes to our axis engine 
2) Goes though our custom In Phase handler 
3) Service class get invked which in turn calls webservice
hosted on another axis engine( remote) using axis client as follows.
  ServiceClient client = new ServiceClient(); 
Options options = new Options(); 
options.setTo(new
EndpointReference(config.getEndPointRef())); 

options.setTransportInProtocol(Constants.TRANSPORT_HTTP); 
options.setUseSeparateListener(false); 
options.setAction(config.getSoapAction()); 
client.setOptions(options); 
OMElement response = null; 
 OMElement responseEnvelop =
client.sendReceive(payload); 
4) I see following error in log  while sending a request to this
remote webservice(hosted on another axis engine) 
  
As temporary fix I have disable addressing module which seemed
to fix the problem. 
Question is : 
How to fix following error and also keep addressing module as we
need that option for future ? 
Not sure why I am getting NoClassDefFoundError even though I
check addressing.mar has SOAP11HeaderBlockImpl class. 
Thanks in advance for looking into this issue. 
gianttm.GiantTMServices - null :
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl 
com.ubs.pbct.giant.blade.BladeException: null :
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl 
at
com.ubs.pbct.giant.blade.BladeException.createBladeException(BladeExcept
ion.java:114) 
at
com.ubs.pbct.giant.blade.BladeException.createBladeException(BladeExcept
ion.java:100) 
at
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory
.java:174) 
at
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory

RE: java.lang.NoClassDefFoundError: org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl

2007-12-31 Thread Martin Gainty

can you check the module reference in axis2/WEB-INF/conf/axis2.xml (should look 
something like) Martin 
__Disclaimer and confidentiality 
noteEverything in this e-mail and any attachments relates to the official 
business of Sender. This transmission is of a confidential nature and Sender 
does not endorse distribution to any party other than intended recipient. 
Sender does not necessarily endorse content contained within this transmission.


Subject: RE: java.lang.NoClassDefFoundError: 
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImplDate: Mon, 31 Dec 
2007 10:46:19 -0500From: [EMAIL PROTECTED]: axis-user@ws.apache.org





Hi Raghu,
 
Thanks for replying  .. yes i have all jars in WEB-INF/lib folders including 
axiom-impl-1.2.5.jar ..
The class org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl is 
refered by org.apache.axis2.handlers.addressing.AddressingOutHandler which i 
checked is in addressing-1.3.mar
 
Is it because of modules i am having this issue.
Another observation I dont get this error  for other normal requests. Only when 
i am calling another webservice within our axis engine I came across this issue.
 
Thanks,
Tushar
 


From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED] Sent: Friday, December 28, 
2007 3:34 PMTo: [EMAIL PROTECTED]: RE: java.lang.NoClassDefFoundError: 
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl


Hi Tushar,
 
Do you have axiom-impl-1.2.5.jar in your classpath.  The SOAP11HeaderBlockImpl 
class is in this jar file.
 
Thanks
Raghu




From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, December 28, 
2007 11:47 AMTo: [EMAIL PROTECTED]: FW: java.lang.NoClassDefFoundError: 
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl
 
Hi, 
I get following error .. 
I short what I am doing is calling another webservice(hosted on another axis 
engine)  using client from within our axis engine.
I am using Axis2 1.3 version. 
While debugging what I observed is as follows : 
1) Primary request comes to our axis engine 2) Goes though our custom In Phase 
handler 3) Service class get invked which in turn calls webservice hosted on 
another axis engine( remote) using axis client as follows.
  ServiceClient client = new ServiceClient(); 
Options options = new Options(); options.setTo(new 
EndpointReference(config.getEndPointRef())); 
options.setTransportInProtocol(Constants.TRANSPORT_HTTP); 
options.setUseSeparateListener(false); 
options.setAction(config.getSoapAction()); 
client.setOptions(options); OMElement response = null; 
 OMElement responseEnvelop = client.sendReceive(payload); 
4) I see following error in log  while sending a request to this remote 
webservice(hosted on another axis engine)   As temporary fix I have disable 
addressing module which seemed to fix the problem. 
Question is : 
How to fix following error and also keep addressing module as we need that 
option for future ? Not sure why I am getting NoClassDefFoundError even though 
I check addressing.mar has SOAP11HeaderBlockImpl class. 
Thanks in advance for looking into this issue. 
gianttm.GiantTMServices - null : 
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl 
com.ubs.pbct.giant.blade.BladeException: null : 
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl at 
com.ubs.pbct.giant.blade.BladeException.createBladeException(BladeException.java:114)
 at 
com.ubs.pbct.giant.blade.BladeException.createBladeException(BladeException.java:100)
 at 
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory.java:174)
 at 
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory.java:75)
 at 
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory.java:102)
 at 
com.ubs.pbct.giant.gianttm.GiantTMServices.getTMSecuritiesRequest(GiantTMServices.java:316)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at 
java.lang.reflect.Method.invoke(Unknown Source) at 
org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194) 
at 
org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:98)
 at 
org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
at 
org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:96)
 at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:145) 
at 
org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:275)
 at

RE: java.lang.NoClassDefFoundError: org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl

2007-12-31 Thread Tushar.Gudadhe
Hi Raghu,
 
Thanks for replying  .. yes i have all jars in WEB-INF/lib folders
including axiom-impl-1.2.5.jar ..
The class org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl
is refered by org.apache.axis2.handlers.addressing.AddressingOutHandler
which i checked is in addressing-1.3.mar
 
Is it because of modules i am having this issue.
Another observation I dont get this error  for other normal requests.
Only when i am calling another webservice within our axis engine I came
across this issue.
 
Thanks,
Tushar
 



From: Raghu Upadhyayula [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 28, 2007 3:34 PM
To: axis-user@ws.apache.org
Subject: RE: java.lang.NoClassDefFoundError:
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl



Hi Tushar,

 

Do you have axiom-impl-1.2.5.jar in your classpath.  The
SOAP11HeaderBlockImpl class is in this jar file.

 

Thanks

Raghu



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 28, 2007 11:47 AM
To: axis-user@ws.apache.org
Subject: FW: java.lang.NoClassDefFoundError:
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl

 

Hi, 

I get following error .. 

I short what I am doing is calling another webservice(hosted on another
axis engine)  using client from within our axis engine.

I am using Axis2 1.3 version. 

While debugging what I observed is as follows : 

1) Primary request comes to our axis engine 
2) Goes though our custom In Phase handler 
3) Service class get invked which in turn calls webservice hosted on
another axis engine( remote) using axis client as follows.

  ServiceClient client = new ServiceClient(); 
Options options = new Options(); 
options.setTo(new
EndpointReference(config.getEndPointRef())); 
 
options.setTransportInProtocol(Constants.TRANSPORT_HTTP); 
options.setUseSeparateListener(false); 
options.setAction(config.getSoapAction()); 
client.setOptions(options); 
OMElement response = null; 

 OMElement responseEnvelop =
client.sendReceive(payload); 

4) I see following error in log  while sending a request to this remote
webservice(hosted on another axis engine) 
  
As temporary fix I have disable addressing module which seemed to fix
the problem. 

Question is : 

How to fix following error and also keep addressing module as we need
that option for future ? 
Not sure why I am getting NoClassDefFoundError even though I check
addressing.mar has SOAP11HeaderBlockImpl class. 

Thanks in advance for looking into this issue. 

gianttm.GiantTMServices - null :
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl 
com.ubs.pbct.giant.blade.BladeException: null :
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl 
at
com.ubs.pbct.giant.blade.BladeException.createBladeException(BladeExcept
ion.java:114) 
at
com.ubs.pbct.giant.blade.BladeException.createBladeException(BladeExcept
ion.java:100) 
at
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory
.java:174) 
at
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory
.java:75) 
at
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory
.java:102) 
at
com.ubs.pbct.giant.gianttm.GiantTMServices.getTMSecuritiesRequest(GiantT
MServices.java:316) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) 
at java.lang.reflect.Method.invoke(Unknown Source) 
at
org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:1
94) 
at
org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RP
CMessageReceiver.java:98) 
at
org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLo
gic(AbstractInOutMessageReceiver.java:40)

at
org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessa
geReceiver.java:96) 
at
org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:145) 
at
org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostReques
t(HTTPTransportUtils.java:275) 
at
org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:120)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) 
at java.lang.reflect.Method.invoke(Unknown Source) 
at
org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243) 
at

RE: java.lang.NoClassDefFoundError: org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl

2007-12-28 Thread Raghu Upadhyayula
Hi Tushar,

 

Do you have axiom-impl-1.2.5.jar in your classpath.  The
SOAP11HeaderBlockImpl class is in this jar file.

 

Thanks

Raghu



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 28, 2007 11:47 AM
To: axis-user@ws.apache.org
Subject: FW: java.lang.NoClassDefFoundError:
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl

 

Hi, 

I get following error .. 

I short what I am doing is calling another webservice(hosted on another
axis engine)  using client from within our axis engine.

I am using Axis2 1.3 version. 

While debugging what I observed is as follows : 

1) Primary request comes to our axis engine 
2) Goes though our custom In Phase handler 
3) Service class get invked which in turn calls webservice hosted on
another axis engine( remote) using axis client as follows.

  ServiceClient client = new ServiceClient(); 
Options options = new Options(); 
options.setTo(new
EndpointReference(config.getEndPointRef())); 
 
options.setTransportInProtocol(Constants.TRANSPORT_HTTP); 
options.setUseSeparateListener(false); 
options.setAction(config.getSoapAction()); 
client.setOptions(options); 
OMElement response = null; 

 OMElement responseEnvelop =
client.sendReceive(payload); 

4) I see following error in log  while sending a request to this remote
webservice(hosted on another axis engine) 
  
As temporary fix I have disable addressing module which seemed to fix
the problem. 

Question is : 

How to fix following error and also keep addressing module as we need
that option for future ? 
Not sure why I am getting NoClassDefFoundError even though I check
addressing.mar has SOAP11HeaderBlockImpl class. 

Thanks in advance for looking into this issue. 

gianttm.GiantTMServices - null :
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl 
com.ubs.pbct.giant.blade.BladeException: null :
org/apache/axiom/soap/impl/llom/soap11/SOAP11HeaderBlockImpl 
at
com.ubs.pbct.giant.blade.BladeException.createBladeException(BladeExcept
ion.java:114) 
at
com.ubs.pbct.giant.blade.BladeException.createBladeException(BladeExcept
ion.java:100) 
at
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory
.java:174) 
at
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory
.java:75) 
at
com.ubs.pbct.giant.blade.GenericBladeFactory.process(GenericBladeFactory
.java:102) 
at
com.ubs.pbct.giant.gianttm.GiantTMServices.getTMSecuritiesRequest(GiantT
MServices.java:316) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) 
at java.lang.reflect.Method.invoke(Unknown Source) 
at
org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:1
94) 
at
org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RP
CMessageReceiver.java:98) 
at
org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLo
gic(AbstractInOutMessageReceiver.java:40)

at
org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessa
geReceiver.java:96) 
at
org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:145) 
at
org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostReques
t(HTTPTransportUtils.java:275) 
at
org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:120)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) 
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
Source) 
at java.lang.reflect.Method.invoke(Unknown Source) 
at
org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243) 
at java.security.AccessController.doPrivileged(Native Method) 
at javax.security.auth.Subject.doAsPrivileged(Unknown Source) 
at
org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)

at
org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.jav
a:161) 
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:245) 
at
org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFi
lterChain.java:50) 
at
org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterC
hain.java:156) 
at java.security.AccessController.doPrivileged(Native Method) 
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:152) 
at
org.