[jboss-user] [JBossWS] - Re: Problem for publish a Web Service

2007-03-26 Thread nicolemans72
Okay, but even if I delete all annotations I have the error... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031659#4031659 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031659

[jboss-user] [JBossWS] - Re: Problem for publish a Web Service

2007-03-27 Thread nicolemans72
I have no import, no annotation, just my method that returns a String "Hello", and I still have the error I have just clicked on the JBossWS>Publish as Web Service>Generate button. Is there a step that I could have forgotten? View the original post : http://www.jboss.com/index.html?module=bb&o

[jboss-user] [JBossWS] - Re: Problem for publish a Web Service

2007-03-27 Thread nicolemans72
I solved my problem! I have re-installed Eclipse and the plugins and it well runs now (It should be a problem with my old Eclipse plugins or libraries) But I have a new problem now... lol I publish my Web Service and I see it on my server, but the "Request" node doestn't appear under the "JBoss

[jboss-user] [JBossWS] - Mapping problem

2007-04-02 Thread nicolemans72
I have a problem with my web service client : | try { | //urn:bsa.ws.test |ServiceFactory factory = ServiceFactory.newInstance(); |URL wsdlLocation = new URL("http://localhost:8080/DmexWs"; + "?wsdl"); |QName serviceName = new QNa

[jboss-user] [JBossWS] - JbossWs and hibernate

2007-04-02 Thread nicolemans72
I have another problem. My webservice is a methode that takes an object of type "Dmex" in the mysql data base (with Hibernate). | public class DmexWs implements IDmexWs { | | SessionFactory sessionFactory = new Configuration().configure ().buildSessionFactory(); | | pub

[jboss-user] [JBoss jBPM] - Problem with my jbpm database

2007-04-03 Thread nicolemans72
Hello! I have a problem since a long time with my jbpm database. I work on a program which use Apache Tomcat 5.0 and Jbpm 3.1.2 and a mysql database. The workflow well run but when when the server is running all the night, we have strange problems in the morning... The workflow have some bugs

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Problem with Hibernate and Jbpm?

2007-04-04 Thread nicolemans72
Hello! I have a problem since a long time with my jbpm database. I work on a program which use Apache Tomcat 5.0 and Jbpm 3.1.2 and a mysql database. The workflow well run but when when the server is running all the night, we have strange problems in the morning... The workflow have some

[jboss-user] [JBoss jBPM] - Re: Problem with my jbpm database

2007-04-04 Thread nicolemans72
I have just posted on the Hibernate forum to The solution of mputz is for a JBoss AS but I work on a Tomcat server. Is there a similar solution on Tomcat? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4034426#4034426 Reply to the post : http://www.jboss.com

[jboss-user] [JBossWS] - Re: Mapping problem

2007-04-05 Thread nicolemans72
With a String return type, it runs So, it's a mapping problem but I don't know it exactly is View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4034997#4034997 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4034997 _

[jboss-user] [JBossWS] - Re: Mapping problem

2007-04-05 Thread nicolemans72
I tried to use the methode | Service service = (Service)factory.createService(wsdlLocation, serviceName,mappingURL); | as I saw in an example but this method doesn't seem exist... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035006#4035006 Reply to

[jboss-user] [JBossWS] - Re: Mapping problem

2007-04-05 Thread nicolemans72
I solved this problem by using ServiceFactoryImpl instead of ServiceFactory But now I have some errors to parse my jaxrpc-mapping.xml file at the line | Service service = (Service)factory.createService(wsdlLocation, serviceName,mappingUrl); | | org.jboss.xb.binding.JBossXBRuntimeExcep

[jboss-user] [JBossWS] - [Fatal Error] :-1:-1: Premature end of file.

2007-04-06 Thread nicolemans72
I work on an application to test JBossWS I have a web service which turns on a JBoss AS 4.0.5 server, which returns a complex type object, "Dmex" I have this client: | try { | |ServiceFactoryImpl factory=new ServiceFactoryImpl(); |URL wsdlLocation = new URL("ht

[jboss-user] [JBossWS] - Re: [Fatal Error] :-1:-1: Premature end of file.

2007-04-10 Thread nicolemans72
I have no other error log. Is anyone know what could be the cause of the problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035882#4035882 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4035882

[jboss-user] [JBoss jBPM] - JBPM too slow due to too mnany process instance

2007-04-19 Thread nicolemans72
I work on an application which uses JBPM I use the method : | JbpmContext.getTaskMgmtSession().findPooledTaskInstances(List); | to find a list of ProcessInstance. Before, i had 20 or 30 ProcessInstance and it worked fine But today I have 1200 ProcessInstance and it's very slow (several s

[jboss-user] [JBoss jBPM] - Re: JBPM too slow due to too mnany process instance

2007-04-23 Thread nicolemans72
Could you explain me the system of indexes, I'm not an expert in data bases View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039731#4039731 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039731 ___

[jboss-user] [JBoss jBPM] - Problem with process composition

2007-02-20 Thread nicolemans72
I have a problem with my process composition. I have a sub-process like that: | | | | | | | and when the process arrive to the "Process State" I hava an error | java.lang.NullPointerException: can't create a process instance when processDefinition is

[jboss-user] [JBoss jBPM] - AssignHandler parameters

2007-03-14 Thread nicolemans72
I have a problem with my AssignHandler class I want to have a generic abstract class wich implements AssignHandler Other class extend this class I put the parameters in my abstract class, but with the GPD, when I use Delegation to associate the sub-class to a Task, I can't get the parameters.

[jboss-user] [JBossWS] - Re: Can not javax.xml.bind.JAXBContext in which jar file.

2007-03-26 Thread nicolemans72
Could you link the implementation WSContractConsumerFactory rlamie please? I have the same problem View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031505#4031505 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4031505 __

[jboss-user] [JBossWS] - JbossWS "java.lang.IllegalStateException:"

2007-03-26 Thread nicolemans72
Hy! I'm new in JbossWS and I try to run the jbossws-samples-1.2.0.SP1. I deployed on jakarta-tomcat-5.0.28 and when I run the ant, I have this error: anonymous wrote : | D:\workspace\jbossws\build.xml:249: java.lang.IllegalStateException: Could not load provider:org.jboss.ws.tools.jaxws.impl

[jboss-user] [JBossWS] - Problem for publish a Web Service

2007-03-26 Thread nicolemans72
Hy! I try to publish a Web Service (with the Eclipse JBoss IDE) with this simple class | package gen; | | import javax.jws.soap.SOAPBinding; | | import javax.jws.WebMethod; | import javax.jws.WebParam; | import javax.jws.WebService; | import javax.jws.soap.SOAPBinding; |

[jboss-user] [JBossWS] - Deploy a Web Service on Tomcat

2007-05-31 Thread nicolemans72
I have deployed a Web Service with JbossWs on a Jboss-4.0.5 Server and it works But now, I have to deploy the same Web Service on a Tomcat Server I've installed JbossWs on my Tomcat like this: http://labs.jboss.com/jbossws/user-guide/en/html/installation.html and I've deployed my Web Service but