[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2009-04-17 Thread vladimirbezugliy
I had the same problem with jboss-5.0.1.GA and jdk1.5.0_11. And I just copied jboss-saaj.jar from jbossws-native-2.0.2.GA(http://www.jboss.org/jbossws/downloads/) package and now all is ok. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4226117#4226117 Reply

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2008-01-11 Thread maxi0361
web service using JAX-WS 2.0 run on JBoss AS 4.2.1 This method works! thank you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118943#4118943 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118943 __

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-06-27 Thread pufferfish
Please check this out. http://thesmallpotato.blogspot.com/2007/06/jdk-16-jboss-420-ejb3-web-service-axis2.html Using JDK6 and JBoss 4.2.0GA and it works for me... Good luck guys View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4057994#4057994 Reply to the post

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-06-27 Thread pufferfish
Please check this out. http://thesmallpotato.blogspot.com/2007/06/jdk-16-jboss-420-ejb3-web-service-axis2.html Using JDK6 and JBoss 4.2.0GA and it works for me... Good luck guys View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4057993#4057993 Reply to the post

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-06-18 Thread dibind
I got the same problem with jboss.4.0.4.GA and jdk 1.5. I got around the problem by deleting saaj-api.jar and saaj-imp.jar from JBOSS_HOME/lib directory and putting jboss-saaj.jar in JBOSS_HOME/lib directory. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-03-12 Thread mark2b
Nothing helps :( After adding jboss-jaxrpc.jar or/and jboss-saaj.jar into endorsed dir it fails on class not found org.jboss.logger.Logger Revision of JBoss source file shows that javax.xml.soap classes refer to JBoss proprietary classes that unacceptable. I've found a vandal workaround remov

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-02-06 Thread fudeus
"[EMAIL PROTECTED]" wrote : Thats, because the jaxrpc API is part of the JDK. Make sure javax.xml.soap.SOAPMessage is pulled from jboss-jaxrpc.jar Actually javax.xml.soap.SOAPMessage is provided in jboss-saaj.jar. Nevertheless - issues remain the same with putting jboss-saaj to endorsed, since

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-02-04 Thread akirainoue
Can you share how to implement web service client stub as an EJB, generated by sun jwsdp (wscompile) in jboss? My EJB is calling web service to 3rd party provider. The client stub is generated through Sun's jwsdp. However I encountered the following exception: java.lang.ClassCastException: org.j

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-01-16 Thread pedro_sf18
OK, I wasn't including jboss' jax-rpc implementation as a jdk-endorsed jar (I thought Jboss' implementation should be compatible with Sun's included one). But unfortunately when I include jboss-jaxrpc.jar in the endorsed lib claims that org.jboss.logging.Logger is not found and when that class i

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-01-15 Thread [EMAIL PROTECTED]
I have not tried jdk1.6 with jbossws. I know however that there are several issues with running jbossas with jdk1.6 Make sure jboss-jaxrpc.jar actually is in lib/endorsed View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4001817#4001817 Reply to the post : http

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-01-15 Thread pedro_sf18
Hello! Thanks for your fast answer, but i'm already using the endorsed mechanism and I'm notifying the virtual machine where jboss' endorsed jars are: java -Djava.endorsed.dirs=C:\...\jboss-4.0.5.GA\lib\endorsed -Djavax.xml.rpc.ServiceFactory=org.jboss.ws.jaxrpc.ServiceFactoryImpl -cp build

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-01-12 Thread dwin
Thomas, with regards to changing out the jax-rpc.jar to use JBoss' implementation, would you say its safe to use 1.6 to run the latest JBoss 4.x AS and JBossWS (JAXWS)? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4001141#4001141 Reply to the post : htt

[jboss-user] [JBossWS] - Re: Problems with Jboss and Sun's 1.6 JDK

2007-01-12 Thread [EMAIL PROTECTED]
Thats, because the jaxrpc API is part of the JDK. Make sure javax.xml.soap.SOAPMessage is pulled from jboss-jaxrpc.jar You can use system properties. The endorsed mechanism should work as well. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4000978#4000978 Re