Help coderanch get a
new server
by contributing to the fundraiser

manik krishnan

Greenhorn
+ Follow
since Jun 13, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by manik krishnan

I got the same issue when i deploy axis2.war file in weblogic. The issue is only version.aar is deployed. My .aar file is not getting deployed.
I found a solution. Please follow the below steps to resolve this issue.
1. Open WEB-INF/services/services.list in Notepad
2. You will see only version.aar entry. Add your own .aar (my_own_aar.aar) entry in services.list file and save it.
3. Create axis2.war now.
4. Deploy in weblogic and restart the server
5. Now you should see both version.aar and your my_own_aar.aar deployed in weblogic
Whenver you create new .aar make sure you add entry in services.list before creating .war file. If you deploy as a exploded format, it is not required to add this entry.

Thanks,
Mani
13 years ago
Hi,

Please follow the below steps to resolve "UnsupportedOperationException: This class does not support SAAJ 1.1" issue.

1. Set classpath to latest saaj-impl.jar in startweblogic.cmd
2. Set the below 2 system properties in code.
System.setProperty("javax.xml.soap.MessageFactory","com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl");
System.setProperty("javax.xml.soap.SOAPConnectionFactory","weblogic.wsee.saaj.SOAPConnectionFactoryImpl");

It works for me in weblogic9.2. Let me know if you still face any problem related to "UnsupportedOperationException: SAAJ1.1"

Thanks,
Mani
17 years ago