[jboss-user] [JBossWS] - Re: ClassCastException in HandlerResolverImpl.addHandler

2007-11-14 Thread jtestori
thank you. extending org.jboss.ws.core.jaxws.handler.GenericHandler works :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4104855#4104855 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4104855

[jboss-user] [JBossWS] - ClassCastException in HandlerResolverImpl.addHandler

2007-11-13 Thread jtestori
i have a simple webservice on jboss-4.2.0.GA with jbossws-2.0.1 my webservice: | package my.ws; | | import javax.jws.HandlerChain; | import javax.jws.WebMethod; | import javax.jws.WebService; | | @WebService | @HandlerChain(file = WEB-INF/jaxws-handlers.xml) | public class

[jboss-user] [JBossWS] - Re: how to create WS from wsdl

2007-11-12 Thread jtestori
regarding creation of ws from wsdl, take a look at http://jbws.dyndns.org/mediawiki/index.php/Wsconsume View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4103578#4103578 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4103578

[jboss-user] [JBoss Seam] - Re: navigation question

2007-10-25 Thread jtestori
thank you, i will take a look at it View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4098669#4098669 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4098669 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-19 Thread jtestori
i can't see any problem, i tried it exactly with the code you have posted and it works View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096976#4096976 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4096976

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-19 Thread jtestori
from the bin folder, the following works for me | wsconsume -k http://localhost:8080/myservice?WSDL | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096887#4096887 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4096887

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-19 Thread jtestori
i'm using jboss-4.2.1.GA and the wsconsume in the bin-folder | @echo off | | rem $Id: wsgen.bat 2158 2007-01-27 06:20:59Z [EMAIL PROTECTED] $ | | @if not %ECHO% == echo %ECHO% | @if %OS% == Windows_NT setlocal | | set DIRNAME=.\ | if %OS% == Windows_NT set DIRNAME=%~dp0%

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-19 Thread jtestori
http://www.jboss.org/?module=bbop=viewtopict=103420 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096849#4096849 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4096849 ___

[jboss-user] [JBossWS] - Re: web service and asynchronous processing

2007-10-19 Thread jtestori
dear vitor_b, did you manage to do asynchronous calls as you described here? i would be very interested in how it works. or can anyone else help me? i don't want a stateful shopping card, but a webservice that calls back to the client after processing the request, because in my case this can

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-18 Thread jtestori
you can do the following: create a zip-file with the follwoing structure (folders are between and ) | +-- META-INF +-- WEB-INF +-- web.xml +-- +-- put your class-files here (including packages) rename the zip-file to a war-file and copy it to

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-18 Thread jtestori
hm, something happened with the zip-file-structure: | | | +-- META-INF | +-- WEB-INF | +-- web.xml | +-- classes |+-- put your class-files here (including packages) | View the original post :

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-18 Thread jtestori
copy the web.xml and change the servlet-class to your webservice's class and the servlet-name (twice) to whatever you like to i don't know if it can be created automatically, i always do it manually View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096442#4096442

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-18 Thread jtestori
java-source (you need jboss-jaxws.jar to compile it) | package ws.test; /* you can use any package */ | | import javax.jws.WebMethod; | import javax.jws.WebService; | import javax.jws.soap.SOAPBinding; | | @WebService | @SOAPBinding(style = SOAPBinding.Style.RPC) | public

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-18 Thread jtestori
per default the url is http://localhost:8080/jbossws/ after deploying the war-file you should see something like this in the log-file (JBOSS_HOME/server/default/log/server.log) and/or on the console: | 8:58,078 INFO [org.jboss.ws.core.server.ServiceEndpointManager] WebService started:

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-18 Thread jtestori
wsdl-file will be created automatically are there no more log-entries for your deployment? maybe the structure of your war-file is not correct. could you unzip it and paste a recursive directory-listing here? View the original post :

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-18 Thread jtestori
i think you need a package, i got an exception in the server.log when i tried without one View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096573#4096573 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4096573

[jboss-user] [JBossWS] - Re: Jbossws Tutorial.

2007-10-18 Thread jtestori
abdujaparov wrote : Thank you! I deployed my web service. I have generated the web service wsdl, does it means that the web service work correctly? | if you mean that the url ...?WSDL shows the wsdl-file in the browser, your service should be up and running abdujaparov wrote : Another

[jboss-user] [JBoss Seam] - navigation question

2007-10-17 Thread jtestori
is it possible to declare navigation rules in faces-config such that the following would work: Page1 --outcome1-- Page3 --outcomeBack-- Page1 Page2 --outcome2-- Page3 --outcomeBack-- Page1 i.e. i have e.g. a properties page that i want to call from different pages and a back-button on the

[jboss-user] [JBoss Seam] - how to find out when page B is called from page A

2007-10-16 Thread jtestori
i have two jsp-pages A and B. A has a link to B, defined as navigationrule in my faces-config. on page B i have a datatable backed by a stateful session bean and a form displaying the details of the selected row. when i select a row on page B, go back to page A, and again to B, the details of

[jboss-user] [JBossWS] - Re: soap message not correct?

2007-10-15 Thread jtestori
tested with 1.2.1 and 2.0.1. then i deployed jbossws-2.0.1, same problem. strange thing is that it works when i use the generated classes it in a simple main-class without jboss, so i guess there must be a classpath-problem. but i don't deploy any webservice-related jar-file together with my

[jboss-user] [JBossWS] - Re: How to implement a webservice workflow?

2007-10-09 Thread jtestori
take a look at http://docs.jboss.com/jbpm/bpel/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4092969#4092969 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4092969 ___ jboss-user

[jboss-user] [JBossWS] - soap message not correct?

2007-10-08 Thread jtestori
i have an existing oracle-bpel-process that i want to call with JBossWS. so i used wsconsume to create java classes for the WSDL. but when i use the classes to call the webservice, the generated soap-message seems to be incorrect: | inputVariable | part

[jboss-user] [JBoss Eclipse IDE (users)] - jboss doesn't find org.jboss.system.Service

2006-10-11 Thread jtestori
i have create a service deployed in a .sar-file when i start jboss from the command-line, everything works fine. when i start jboss in eclipse, i get the following exception: java.lang.ClassNotFoundException: Unexpected error during load of: my.service.MyService, msg=org/jboss/system/Service my