[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-10-04 Thread [EMAIL PROTECTED]
On JSR181 endpoints the context root can explicitly be set using this annotation @org.jboss.ws.annotation.PortComponent(contextRoot="/your-prefered-context") View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3976183#3976183 Reply to the post : http://www.jboss.c

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-16 Thread [EMAIL PROTECTED]
Please monitor http://jira.jboss.org/jira/browse/JBWS-1135 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965553#3965553 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3965553 __

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-11 Thread kamra
Use following URL http://localhost:8080/cm-ejb/WebserviceName?wsdl where cm-ejb is the name of the ejb module jar file name, and WebserviceName is the name of the java file in which u have created the webservice. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-05 Thread pablojavierpy
No prob Chris. Best regards. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3963406#3963406 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3963406 ___ jboss-user mailing list jb

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-05 Thread knifegun
Pablo Santa, Thank you for your help. Your suggestion of renaming the war to a different name works like a charm. Now I can create web services using solely annotations. I have been looking for an answer for weeks so I truly appreciate the help! Chris View the original post : http://www.j

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-04 Thread jason_rency
I put the following items in my web.xml and it works..I use the same name for my ejb,war and ear..havn't try to change the name yet.. | CalculatorBean | src.reg.server.CalculatorBean | | | | CalculatorBean | /CalculatorBean |

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread knifegun
Many thanks! I will give it a try and let you know. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3963060#3963060 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3963060 ___

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread pablojavierpy
Dear knifegun, The thing is: 1) You can definitely use a WAR inside an EAR and still use jsr181 WebServices. There is only one caveat: your WAR's context root can't be the same as your EAR's name. That is if your EAR's name is cm.ear, then your WAR's context root MUST BE SOMETHING ELSE. For ex

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread knifegun
Thank you for trying me again. I did not see your question. Yes, I do have a WAR packaged in my ejb file. Is that the issue? The web services is supposed to outside of the WAR that is included which is only there for a JNLP based application. Thank again! If I can get this working, it will

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread pablojavierpy
Dear knifegun, Would you look at my post (the 6th one) and answer my quetions? I think I can help you. Are you packaging your application inside an EAR? Do you have a WAR inside your EAR? I have EJB3 + WebServices working like a charm. Thanks. View the original post : http://www.jboss.com/i

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread knifegun
Interesting. I found that file also but did not know what to do with it. Going to http://localhost:8080/jbossws lists the WSDL link as expected but of course clicking on the link gives you a 404. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962899#3962899

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread jason_rency
my problem is javax.xml.rpc.ServiceException: Error processing WSDL document: | java.io.FileNotFoundException: http://localhost:8080/regserver/CalculatorBean?WSDL after deploy, the IDE automatically generated a wsdl file and saved in C:\Program Files\jboss-4.0.4.GA\server\default\data\wsd

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread jason_rency
you are right though, just found the descriptor is not for ejb3, there is no annotation in the session bean for the example... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962867#3962867 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread knifegun
Thanks for the reply. If that is the case, it is a bit disppointing since with EJB 3 you no longer need descriptor files. So does this mean that JSR 181 is not completely annotation driven? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962859#3962859 Repl

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread jason_rency
I am just wondering if it's necessary to add the web service session bean to ejb-jar.xml here is what I saw in http://docs.jboss.org/jbossas/jboss4guide/r2/html/ch12.html | http://java.sun.com/xml/ns/j2ee"; version="2.1" | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; |

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread knifegun
I have not gotten a solution to it yet. I tried upgrading to the latest WS release to no avail. Please let me know if you find a solution. Anyone else? Is there something I am missing? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962853#3962853 Reply to

[jboss-user] [JBossWS] - Re: PLEASE HELP: JSR 181 EJB Endpoint (JBoss 4.0.4.GA)

2006-08-03 Thread jason_rency
hi... I got the same problem as you.. would you be able to share you solution if you find it. thanks a lot... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962846#3962846 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&