[jboss-user] [JBoss jBPM] - [bpel] Information about a deployed process

2007-07-11 Thread rainstar79
Hi,
I want to get more information about my process running on the bpel engine, 
e.g. displaying details on a website about the execution of a certain BPEL 
process.
Is this possible via the jbpm API?
I created the following Code Snippet, but the jbpmContext instance is always 
null:

  | JbpmContext jbpmContext = 
JbpmConfiguration.getInstance().getCurrentJbpmContext();
  | 
  |   System.out.println(jbpmContext =  + jbpmContext);
  |   if (jbpmContext != null) {
  |   try {
  |   Iterator taskInstancesIterator = 
jbpmContext.getTaskList().iterator();
  |   while (taskInstancesIterator.hasNext()) {
  | writer.print(br/br/br/);
  | TaskInstance taskInstance = 
(TaskInstance)taskInstancesIterator.next();
  | writer.print(taskInstance.getName() =  + 
taskInstance.getName());
  | writer.print(taskInstance.getDescription() =  + 
taskInstance.getDescription());
  | writer.print(taskInstance.getPriority() =  + 
taskInstance.getPriority());
  | writer.print(taskInstance.getCreate() =  + 
taskInstance.getCreate());
  | writer.print(taskInstance.getDueDate() =  + 
taskInstance.getDueDate());
  | writer.print(taskInstance.getEnd() =  + 
taskInstance.getEnd());
  | writer.print(taskInstance.getId() =  + 
taskInstance.getId());
  | writer.print(taskInstance.getStart() =  + 
taskInstance.getStart());
  | writer.print(taskInstance.hasEnded() =  + 
taskInstance.hasEnded());
  | writer.print(taskInstance.isBlocking() =  + 
taskInstance.isBlocking());
  | writer.print(taskInstance.isCancelled() =  + 
taskInstance.isCancelled());
  | writer.print(taskInstance.isLast() =  + 
taskInstance.isLast());
  | writer.print(taskInstance.isOpen() =  + 
taskInstance.isOpen());
  | writer.print(taskInstance.isSignalling() =  + 
taskInstance.isSignalling());
  | writer.print(taskInstance.getComments() =  + 
taskInstance.getComments());
  |   }  
  |   } catch (Exception e) {
  | e.printStackTrace();
  |   } finally {
  | jbpmContext.close();
  |   }
  |   } else;

Thanks for your help.
Cheers Rainer

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4062861#4062861

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062861
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - [bpel] XPATH in assign element

2007-07-05 Thread rainstar79
Hi BPEL folks,
I have a question regarding the assign-element. 
I modeled a simple BPEL process, where the input is an array of xsd:anyURI and 
the output should be a string of the e.g. the third element of this anyURI 
array. I assume, I have some problems withe the XPATH expression in the assign 
element.

This is the bpel file:


  | ?xml version=1.0 encoding=UTF-8?
  | process name=HelloWorld targetNamespace=urn:samples:review
  | xmlns=http://schemas.xmlsoap.org/ws/2003/03/business-process/;
  | xmlns:tns=urn:samples:review
  | xmlns:char=http://services.planets-project.eu/ifr/characterisation;
  | xmlns:rep=http://services.planets-project.eu/ifr/reporting;
  | xmlns:bpel=http://schemas.xmlsoap.org/ws/2003/03/business-process/;
  | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  | xmlns:xsd=http://www.w3.org/2001/XMLSchema;
  | xmlns:array=http://jaxb.dev.java.net/array;
  | 
xsi:schemaLocation=http://schemas.xmlsoap.org/ws/2003/03/business-process/
  |   http://schemas.xmlsoap.org/ws/2003/03/business-process/;
  | 
  | partnerLinks
  | !-- establishes the relationship with the caller agent --
  | partnerLink name=caller partnerLinkType=tns:Greeter-Caller
  | myRole=Greeter /
  | 
  | /partnerLinks
  | 
  | variables
  | !-- holds the incoming message --
  | variable name=request messageType=tns:nameMessage /
  | !-- holds the outgoing message --
  | variable name=response messageType=tns:greetingMessage /
  | variable name=dummy type=xsd:anyURI /
  | 
  | /variables
  | 
  | sequence
  | 
  | !-- receive the name of a person --
  | receive operation=sayHello partnerLink=caller
  | portType=tns:Greeter variable=request 
createInstance=yes /
  | 
  | !-- Assign the final Report to the output variable --
  | assign
  | copy
  | from variable=request 
expression=name/array:item[3] /
  | to variable=response part=greeting /
  | /copy
  | /assign
  | 
  | !-- reply with the greeting --
  | reply operation=sayHello partnerLink=caller
  | portType=tns:Greeter variable=response /
  | /sequence
  | 
  | /process
  | 


and this is the wsdl File:


  | ?xml version=1.0 encoding=UTF-8?
  | definitions targetNamespace=urn:samples:review
  |   xmlns=http://schemas.xmlsoap.org/wsdl/;
  |   xmlns:tns=urn:samples:review
  |   xmlns:xsd=http://www.w3.org/2001/XMLSchema;
  |   xmlns:plt=http://schemas.xmlsoap.org/ws/2004/03/partner-link/;
  |   xmlns:char=http://services.planets-project.eu/ifr/characterisation;
  |   xmlns:rep=http://services.planets-project.eu/ifr/reporting;
  |   xmlns:array=http://jaxb.dev.java.net/array;
  | 
  |   
  |  
  | types
  |   xs:schema targetNamespace='http://jaxb.dev.java.net/array' version='1.0' 
xmlns:xs='http://www.w3.org/2001/XMLSchema'
  |
  |xs:complexType final='#all' name='anyFileURIArray'
  | xs:sequence
  |  xs:element maxOccurs='unbounded' minOccurs='0' name='item' 
nillable='true' type='xs:anyURI'/
  | /xs:sequence
  |/xs:complexType
  |
  |   /xs:schema
  |  /types
  | 
  |   !-- characterizes the relationship between the greeter and its caller --
  |   plt:partnerLinkType name=Greeter-Caller
  | plt:role name=Greeter portType=tns:Greeter/
  |   /plt:partnerLinkType
  |   
  | 
  |   !-- carries the name of a person --
  |   message name=nameMessage
  | part name=name type=array:anyFileURIArray /
  |   /message
  | 
  |   !-- carries the greeting --
  |   message name=greetingMessage
  | part name=greeting type=xsd:string /
  |   /message
  | 
  |   !-- describes the interface presented to callers --
  |   portType name=Greeter
  | operation name=sayHello
  |   input message=tns:nameMessage /
  |   output message=tns:greetingMessage /
  | /operation
  |   /portType
  | 
  | /definitions
  | 

The SOAP request of the deployed workflow is as followed:


  | ns1:sayHello xmlns:ns1=urn:samples:review
  |   nameitemfile.doc/item
  | itemfile1.gif/item
  | itemfile2.doc/item
  | itemfile3.jpg/item
  | itemfile4.doc/item
  | itemfile5.doc/item
  | itemfile6.gif/item
  | itemfile7.doc/item
  | itemfile8.doc/item/name
  | /ns1:sayHello
  | 

and here is the result I get, which does not include the third element 
(--file2.doc) :(


  | ?xml version=1.0 encoding=UTF-8?
  | env:Envelope xmlns:env=http://schemas.xmlsoap.org/soap/envelope/;
  |   env:Header /
  |   env:Body
  | ns1:sayHelloResponse xmlns:ns1=urn:samples:review
  |   greeting /
  | /ns1:sayHelloResponse
  |   /env:Body
  | /env:Envelope
  | 
  | 
  | 

Thanks for your help!!! Maybe you can provide me with an example how to use 
XPATH expressions!!!

Cheers 

[jboss-user] [JBoss jBPM] - Re: [jBPM-BPEL]Endpoint does not contain operation metadata?

2007-06-29 Thread rainstar79
is there no one who can help me out of this

1000 USD for the man/woman who can help me ;-)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4059198#4059198

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4059198
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - [jBPM-BPEL]Endpoint does not contain operation metadata????

2007-06-27 Thread rainstar79
Hi,
When I want to invoke my deployed BPEL process, I got a strange exception:

  | 17:25:34,241 ERROR [SOAPFaultHelperJAXRPC] SOAP request exception
  | javax.xml.rpc.soap.SOAPFaultException: Endpoint 
{http://SampleProject}ProcessRol
  | ePort does not contain operation meta data for: 
{http://SampleProject}operation1
  | 
  | at 
org.jboss.ws.core.server.AbstractServiceEndpointInvoker.getDispatchDe
  | stination(AbstractServiceEndpointInvoker.java:267)
  | at 
org.jboss.ws.core.server.AbstractServiceEndpointInvoker.invoke(Abstra
  | ctServiceEndpointInvoker.java:149)
  | at 
org.jboss.ws.core.server.ServiceEndpoint.handleRequest(ServiceEndpoin
  | t.java:204)
  | at 
org.jboss.ws.core.server.ServiceEndpointManager.processSOAPRequest(Se
  | rviceEndpointManager.java:440)
  | at 
org.jboss.ws.core.server.AbstractServiceEndpointServlet.doPost(Abstra
  | ctServiceEndpointServlet.java:114)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
  | at 
org.jboss.ws.core.server.AbstractServiceEndpointServlet.service(Abstr
  | actServiceEndpointServlet.java:75)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | 
  | 
  | 

The deployment of the process goes perfect, but the invocation fails all the 
time. It is a pretty simple BPEL process - according to the hello world 
example. It assigns an input-string directly to an output string.

Has anyone an idea how to solve this problem?!?

I am using jBoss 4.0.5.GA, jbpm-bpel-1.1beta3, jwsdp 2.0, jdk 1.5.0_12

Thanks


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4058258#4058258

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058258
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: [jBPM-BPEL]Endpoint does not contain operation metadata?

2007-06-27 Thread rainstar79
Maybe I should post the code, which I produced with the Eclipse BPEL designer:

This is SampleProcess.bpel

?xml version=1.0 encoding=UTF-8?
  | bpws:process 
xmlns:bpws=http://schemas.xmlsoap.org/ws/2004/03/business-process/;
  |  xmlns:ns=http://SampleProject/SampleProcessArtifacts; 
  | xmlns:ns0=http://SampleProject/SampleProcessInterface; 
  | expressionLanguage=http://www.w3.org/TR/1999/REC-xpath-19991116; 
  | name=SampleProcess suppressJoinFailure=yes 
  | targetNamespace=http://SampleProject;
  | 
  |   bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
  | location=SampleProcessArtifacts.wsdl 
namespace=http://SampleProject/SampleProcessArtifacts/
  |   bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
  | location=SampleProcess.wsdl 
namespace=http://SampleProject/SampleProcessInterface/
  |   bpws:partnerLinks
  | bpws:partnerLink myRole=ProcessRole name=Client 
partnerLinkType=ns:SampleProcessPartnerLinkType/
  |   /bpws:partnerLinks
  |   bpws:variables
  | bpws:variable messageType=ns0:operation1Request name=Input/
  | bpws:variable messageType=ns0:operation1Response name=Output/
  |   /bpws:variables
  |   bpws:sequence name=Sequence
  | bpws:receive createInstance=yes name=Receive 
operation=operation1 partnerLink=Client portType=ns0:SampleProcess 
variable=Input/
  | bpws:assign name=Assign
  |   bpws:copy
  | bpws:from part=operation1Parameters variable=Input/
  | bpws:to part=operation1Result variable=Output/
  |   /bpws:copy
  | /bpws:assign
  | bpws:reply name=Reply operation=operation1 partnerLink=Client 
portType=ns0:SampleProcess variable=Output/
  |   /bpws:sequence
  | /bpws:process
  | 

...and this is SampleProcess.wsdl


  | ?xml version=1.0 encoding=UTF-8?
  | definitions xmlns:tns=http://SampleProject/SampleProcessInterface; 
  | xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
  | xmlns=http://schemas.xmlsoap.org/wsdl/; name=SampleProcess 
  | targetNamespace=http://SampleProject/SampleProcessInterface;
  | 
  | 
xmlns:plt=http://schemas.xmlsoap.org/ws/2003/05/partner-link/;
  | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  | xsi:schemaLocation=http://schemas.xmlsoap.org/wsdl/ 
  |   http://schemas.xmlsoap.org/wsdl/
  |   http://schemas.xmlsoap.org/ws/2003/05/partner-link/ 
  |   http://schemas.xmlsoap.org/ws/2003/05/partner-link/;
  |  
  |   
  |   plt:partnerLinkType name=SampleProcessPartnerLinkType
  | plt:role name=ProcessRole
  |  plt:portType name=tns:SampleProcess/
  |  
  |  /plt:role
  |   /plt:partnerLinkType
  |   
  |   message name=operation1Request
  | part name=operation1Parameters type=xsd:string/
  | 
  |   /message
  |   message name=operation1Response
  | part name=operation1Result type=xsd:string/
  | 
  |   /message
  |   portType name=SampleProcess
  | operation name=operation1
  |   input message=tns:operation1Request/
  |   output message=tns:operation1Response/
  | /operation
  |   /portType
  | /definitions
  | 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4058296#4058296

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058296
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - hello example - executing the runing process

2007-06-25 Thread rainstar79
Hi, 
I've got a problem with the hello example from the sample folder of my jBPM 
BPEL extension. I am able to deploy the process executing the 5 ant tasks as it 
is described in the user guide! But when I would like to test my deployed 
process, it doesn work (neither the hello example nor the atm example). 
I am using 
*) jBoss AS 4.0.5GA
*) jBPM BPEL 1.1Beta3
*) jWSDP 1.6

As soon as I want to execute the deployed WSDL I got the following exception at 
the jBoss Console:


2007-06-25 15:41:22,809 ERROR [org.jboss.ws.core.jaxrpc.SOAPFaultHelperJAXRPC] -
  |  SOAP request exception
  | java.lang.UnsupportedOperationException: setProperty must be overridden by 
all s
  | ubclasses of SOAPMessage
  | at javax.xml.soap.SOAPMessage.setProperty(Unknown Source)
  | at 
org.jboss.ws.core.soap.SOAPMessageImpl.init(SOAPMessageImpl.java:79
  | )
  | at 
org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactor
  | yImpl.java:234)
  | at 
org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactor
  | yImpl.java:171)
  | at 
org.jboss.ws.core.server.ServiceEndpoint.handleRequest(ServiceEndpoin
  | t.java:185)
  | at 
org.jboss.ws.core.server.ServiceEndpointManager.processSOAPRequest(Se
  | rviceEndpointManager.java:440)
  | at 
org.jboss.ws.core.server.AbstractServiceEndpointServlet.doPost(Abstra
  | ctServiceEndpointServlet.java:114)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
  | at 
org.jboss.ws.core.server.AbstractServiceEndpointServlet.service(Abstr
  | actServiceEndpointServlet.java:75)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
  | lter.java:96)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
  | alve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
  | alve.java:178)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
  | yAssociationValve.java:175)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
  | e.java:74)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
  | ava:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
  | ava:105)
  | at 
org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConne
  | ctionValve.java:156)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
  | ve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
  | a:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
  | :869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.p
  | rocessConnection(Http11BaseProtocol.java:664)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo
  | int.java:527)
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor
  | kerThread.java:112)
  | at java.lang.Thread.run(Thread.java:595)
  | 2007-06-25 15:41:22,825 ERROR 
[org.jboss.ws.core.server.AbstractServiceEndpointS
  | ervlet] - Error processing web service request
  | java.lang.UnsupportedOperationException: setProperty must be overridden by 
all s
  | ubclasses of SOAPMessage
  | at javax.xml.soap.SOAPMessage.setProperty(Unknown Source)
  | at 
org.jboss.ws.core.soap.SOAPMessageImpl.init(SOAPMessageImpl.java:79
  | )
  | at 
org.jboss.ws.core.soap.MessageFactoryImpl.createMessage(MessageFactor
  | yImpl.java:147)
  | at 
org.jboss.ws.core.jaxrpc.SOAPFaultHelperJAXRPC.toSOAPMessage(SOAPFaul
  | tHelperJAXRPC.java:199)
  | at 
org.jboss.ws.core.jaxrpc.SOAPFaultHelperJAXRPC.exceptionToFaultMessag
  | e(SOAPFaultHelperJAXRPC.java:176)
  | at 
org.jboss.ws.core.jaxrpc.SOAP11BindingJAXRPC.createFaultMessageFromEx
  | ception(SOAP11BindingJAXRPC.java:55)
  | at 
org.jboss.ws.core.CommonSOAPBinding.bindFaultMessage(CommonSOAPBindin
  | g.java:536)
  | at 
org.jboss.ws.core.server.ServiceEndpoint.handleRequest(ServiceEndpoin
  | t.java:221)
  | at 
org.jboss.ws.core.server.ServiceEndpointManager.processSOAPRequest(Se
  | rviceEndpointManager.java:440)
  | at 
org.jboss.ws.core.server.AbstractServiceEndpointServlet.doPost(Abstra
  

[jboss-user] [JBoss jBPM] - Monitoring deployed Processes

2007-05-22 Thread rainstar79
Hi,
there is a nice service from jBoss at http://localhost:8080/jbossws/services, 
which is a page that shows all my deployed services/BPEL processes.
I would like to integrate a list of my deployed services/processes into my Web 
Portal.
How can I integrate/extend this Feature from jBoss? Or, how can I customize 
this Site (I assume it is jsp), in order to align it to my design of my Web 
Application?
Propably I just need an entry point where to start!!
Thanks for your help!!
Cheers

I am using jBoss AS 4.0.5.GA  jBPM BPEL extension 1.1Beta3

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4047466#4047466

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047466
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Monitoring deployed Web Services

2007-05-21 Thread rainstar79
Hi,
there is a nice service from jBoss at http://localhost:8080/jbossws/services, 
which is a page that shows all my deployed services.
I would like to integrate a list of my deployed services into my Web Portal. 
How can I integrate/extend this Feature from jBoss? Or, how can I customize 
this Site (I assume it is jsp), in order to align it to my design of my Web 
Application?
Propably I just need an entry point where to start!!
Thanks for your help!!
Cheers

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4047272#4047272

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047272
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Tutorial: Modeling BPEL with Eclipse BPEL Designer and jBPM

2007-05-08 Thread rainstar79
Hi,
since I had some Problems in the beginning with the Eclipse BPEL Designer and 
the jBPM BPEL extension, I made some short movies how to use these tools.

These movies show how to develop a simple BPEL workflow with the Eclipse BPEL 
designer. This test process is called PLANETS, which is a project I was 
evaluating the tools for. The process invokes two simple Web Services (DROID 
and MigrateService) and assigns parameters. The invoked Web Services are 
external Services retrieved via the Eclipse Web Service Explorer from a UDDI 
and imported to the project. 

I used the the environment of the jBPM BPEL extension 1.1Beta3 and put all 
files in the examples folder, in order to use the build-environment (the 
ant-tasks) to deploy and create all artifacts. 

In this example I used the Eclipse BPEL Designer 0.2 and jBoss AS 4.0.5!

Also thanks to agus for answering all my stupid questions in this forum to 
create this tutorial.

And here are the links to the Flash-Movies:

http://pluto.researchstudio.at/ibpm/bpel/create_new_bpel_project.htm

http://pluto.researchstudio.at/ibpm/bpel/lookup_wsdl.htm

http://pluto.researchstudio.at/ibpm/bpel/model_bpel_process.htm

http://pluto.researchstudio.at/ibpm/bpel/create_partner_links.htm

http://pluto.researchstudio.at/ibpm/bpel/finalize_invocations.htm

http://pluto.researchstudio.at/ibpm/bpel/assign_parameters.htm

http://pluto.researchstudio.at/ibpm/bpel/fix_bugs_manually.htm

http://pluto.researchstudio.at/ibpm/bpel/deploy_process.htm

I hope you finde these links usefull!

Cheers Rainer



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4043854#4043854

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4043854
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Can't deploy my BPEL process to jBPM BPEL 1.1 Beta3

2007-04-19 Thread rainstar79
Hi Agus,
thanks for your help. I was now able to deploy my process!!

But here is my next question :-)

What is my next step after I ran: ant deploy-definition  I got the right 
message:

17:31:35,559 INFO  [[/jbpm-bpel]] processDeployServlet: 
  | deployed process definition: Planets

I always thought, that my process is now running as a Web Service and I can see 
it in the jboss Monitoring under http://localhost:8080/jbossws/services?

Where do I see my BPEL process running now in order to create a client to 
communicate with my process?!?

..or do I have to run another ant-task?!?

Thanks for your help!
Cheers Rainer


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4038940#4038940

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038940
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Can't deploy my BPEL process to jBPM BPEL 1.1 Beta3

2007-04-13 Thread rainstar79
Hi agusgr,
THANK you for your reply!!! 
I will check it out right now and post my results.
Thanks for the hint that I posted the same code twice, so here is the code for 
PlanetsServiceArtifacts.wsdl

  | ?xml version=1.0 encoding=UTF-8?
  | definitions 
xmlns:bpws=http://schemas.xmlsoap.org/ws/2004/03/business-process/;
  |  xmlns:plnk=http://schemas.xmlsoap.org/ws/2004/03/partner-link/; 
  | xmlns:tns=http://planets.euArtifacts; 
  | xmlns:wsdl=http://pluto.researchstudio.at/ibpm/DROIDService.jws; 
  | xmlns:wsdl1=http://pluto.researchstudio.at/ibpm/MigrateService.jws; 
  | name=PlanetsServiceArtifacts 
  | targetNamespace=http://planets.euArtifacts; 
  | xmlns=http://schemas.xmlsoap.org/wsdl/;
  | plnk:partnerLinkType name=DROID-PLKT
  | plnk:role name=DROIDService portType=wsdl:DROIDService/
  | /plnk:partnerLinkType
  | plnk:partnerLinkType name=Migration-PLKT
  | plnk:role name=MigrationService portType=wsdl1:MigrateService/
  | /plnk:partnerLinkType
  | import location=droid.wsdl 
namespace=http://pluto.researchstudio.at/ibpm/DROIDService.jws/
  | import location=migration.wsdl 
namespace=http://pluto.researchstudio.at/ibpm/MigrateService.jws/
  | /definitions
  | 
  | 

Stay tunded!

Cheers

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4036975#4036975

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4036975
___
jboss-user mailing list
[EMAIL PROTECTED]
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Can't deploy my BPEL process to jBPM BPEL 1.1 Beta3

2007-04-13 Thread rainstar79
you are right agusgr, now I got the following error message:

  | 11:53:35,448 ERROR [[processDeployServlet]] Servlet.service() for servlet 
proces
  | sDeployServlet threw exception
  | org.jbpm.jpdl.JpdlException: [[ERROR] PlanetsService.bpel port type of 
first rol
  | e not found [/bpws:process/bpws:partnerLinks/bpws:partnerLink[2]], [ERROR] 
Plane
  | tsService.bpel port type of first role not found 
[/bpws:process/bpws:partnerLink
  | s/bpws:partnerLink[3]], [ERROR] PlanetsService.bpel operation not found 
[/bpws:p
  | rocess/bpws:sequence/bpws:invoke[1]], [ERROR] PlanetsService.bpel could not 
read
  |  process document]
  | at 
org.jbpm.jpdl.par.ProcessArchive.parseProcessDefinition(ProcessArchiv
  | e.java:84)
  | at 
org.jbpm.bpel.web.ProcessDeployServlet.doGet(ProcessDeployServlet.jav
  | a:50)
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4037040#4037040

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4037040
___
jboss-user mailing list
[EMAIL PROTECTED]
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Can't deploy my BPEL process to jBPM BPEL 1.1 Beta3

2007-04-12 Thread rainstar79
Hi,

I've got a problem in deploying my first BPEL process. I know it's a long text 
to read, but if you help me with this problem you will save my life ;-) 

I modeled my first BPEL process by using the Eclipse BPEL designer. Now I am at 
the point that I need to deploy this process. Therefore I took the examples 
folder of the jBPM BPEL 1.1 and replaced the files in the hello folder, by my 
new BPEL artifacts. 
When I run the ant task pack-definition, a zip file is generated properly. But 
when I say deploy-definition, an exception is thrown:

  | [deployprocess] target url: 
http://localhost:8080/jbpm-bpel/deploy?processfile=file%3A%2FC%3A%2FProgramme%2FJava%2Fjbpm-bpel-1.1.Beta3%2Fexamples%2Fplanets%2Ftarget%2Fatm-process.zip
  | [deployprocess] got response code: 500
  | 
  | BUILD FAILED
  | C:\Programme\Java\jbpm-bpel-1.1.Beta3\examples\common\bpel-build.xml:60: 
deployment failed, see details in the server console
  | 
  | 

and


  | 2007-04-12 12:10:29,096 INFO  [org.jbpm.bpel.xml.BpelReader] read wsdl
  |  definitions: PlanetsService.wsdl
  | 2007-04-12 12:10:29,112 INFO  [org.jbpm.bpel.xml.BpelReader] read wsdl
  |  definitions: PlanetsServiceArtifacts.wsdl
  | 2007-04-12 12:10:29,112 INFO  [org.jbpm.bpel.xml.BpelReader] read wsdl
  |  definitions: PlanetsService.wsdl
  | 2007-04-12 12:10:29,128 INFO  [org.jbpm.bpel.xml.BpelReader] read wsdl
  |  definitions: droid.wsdl
  | 2007-04-12 12:10:29,128 ERROR [org.jbpm.bpel.xml.ProblemHandler]  
  | PlanetsService.bpel could not read wsdl document
  | java.io.FileNotFoundException: C:\Programme\Java\jboss-4.0.5.GA\bin 
  | (Access denied)
  | at java.io.FileInputStream.open(Native Method)
  | at java.io.FileInputStream.init(FileInputStream.java:106)
  | at 
org.jboss.net.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:105)
  | 
  | at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown 
  | Source)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | 
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
  | 
  | at java.lang.Thread.run(Thread.java:595)
  | 2007-04-12 12:10:29,128 ERROR [org.jbpm.bpel.xml.ProblemHandler]  
  | PlanetsService.bpel could not read wsdl document
  | WSDLException: faultCode=PARSER_ERROR: Problem parsing ''.: 
  | C:\Programme\Java\jboss-4.0.5.GA\bin (Zugriff verweigert): 
  | java.io.FileNotFoundException: C:\Programme\Java\jboss-4.0.5.GA\bin 
(Zugriff verweigert)
  | 
  | at java.io.FileInputStream.open(Native Method)
  | at java.io.FileInputStream.init(FileInputStream.java:106)
  | at 
org.jboss.net.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:105)
  | 
  | at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown 
  | Source)
  | 
  | 
  | 
  | 
  | 
  | My BPEL process is defined in PlanetsService.bpel and is as follows:
  | 
  |   | ?xml version=1.0 encoding=UTF-8?
  |   | bpws:process 
xmlns:bpws=http://schemas.xmlsoap.org/ws/2004/03/business-process/; 
  |   | xmlns:ns=http://planets.euArtifacts; 
  |   | xmlns:ns0=http://pluto.researchstudio.at/ibpm/DROIDService.jws; 
  |   | xmlns:ns1=http://pluto.researchstudio.at/ibpm/MigrateService.jws; 
  |   | xmlns:tns=http://planets.eu; exitOnStandardFault=yes 
  |   | name=PlanetsService suppressJoinFailure=yes 
  |   | targetNamespace=http://planets.eu;
  |   | 
  |   | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
  |   | location=PlanetsService.wsdl namespace=http://planets.eu/
  |   | 
  |   | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
  |   | location=droid.wsdl 
namespace=http://pluto.researchstudio.at/ibpm/DROIDService.jws/
  |   | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
  |   | namespace=http://planets.euArtifacts/
  |   | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
  |   | location=PlanetsServiceArtifacts.wsdl 
namespace=http://planets.euArtifacts/
  |   | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
  |   | location=migration.wsdl 
namespace=http://pluto.researchstudio.at/ibpm/MigrateService.jws/
  |   | 
  |   | bpws:partnerLinks
  |   | bpws:partnerLink myRole=PlanetsServiceProvider name=client 
  |   | partnerLinkType=tns:PlanetsService 
partnerRole=PlanetsServiceRequester/
  |   | bpws:partnerLink name=DROID partnerLinkType=ns:DROID-PLKT 
  |   | partnerRole=DROIDService/
  |   | bpws:partnerLink name=Migration partnerLinkType=ns:Migration-PLKT
  |   |  partnerRole=MigrationService/
  |   | /bpws:partnerLinks
  |   | bpws:variables
  |   | bpws:variable messageType=tns:PlanetsServiceRequestMessage 
name=input/
  |   | bpws:variable messageType=tns:PlanetsServiceResponseMessage 
name=output/
  |   | bpws:variable messageType=ns0:identifyFormatResponse 
name=DROIDResponse/
  |   | bpws:variable messageType=ns0:identifyFormatRequest 
name=DROIDRequest/
  |   | bpws:variable 

[jboss-user] [JBoss jBPM] - Re: Deploying my own first BPEL project

2007-03-22 Thread rainstar79
Hi again,
maybe I describe my problem a little bit more in detail:

My BPEL-project Folder called planets contains the following files:

 - PlanetscompositeService.bpel
 - PlanetsCompositeService.wsdl
 - PlanetscompositeServiceArtifacts.wsdl
 - droid.wsdl
 - bpel-definition.xml

I have a running jBoss Server where I deployed the jBPM BPEL 1.1-beta3 
extension.

What is my next step now???

I tried to clone an example in the sample folder of the bpel extension - i.e. i 
copied all my files to the hello example. 
Then I wanted to run all the ant tasks according to the user guide. Is this 
needless or was it a good approach? 
But i got the following errormessage when I run the ant deploy-definition:

  | [deployprocess] got response code: 500
  | 
  | 14:52:33,118 ERROR [ProblemHandler]  PlanetsCompositeService.bpel could not 
read wsdl document
  | 
  | WSDLException: faultCode=PARSER_ERROR: Problem parsing ''
  | 
  | 14:52:33,134 ERROR [ProblemHandler]  PlanetsCompositeService.bpel could not 
read
  |  process document
  | java.lang.NullPointerException
  | at org.jbpm.bpel.xml.BpelReader.readImports(BpelReader.java:394)
  | at org.jbpm.bpel.xml.BpelReader.read(BpelReader.java:242)
  | at org.jbpm.bpel.xml.BpelReader.read(BpelReader.java:200)
  | at 
org.jbpm.bpel.par.BpelArchiveParser.readFromArchive(BpelArchiveParser
  | .java:48)
  | 
  | 

Do I have to run all ant tasks (also ant gernerate-artifacts, etc)??

Btw my bpel process, which I modeled with the Eclipse BPEL designer, looks like:

  | ?xml version=1.0 encoding=UTF-8?
  | bpws:process 
xmlns:bpws=http://schemas.xmlsoap.org/ws/2004/03/business-process/; 
  | xmlns:ns=http://planets.euArtifacts; 
  | xmlns:ns0=http://dme020:8080/axis/DROIDService.jws; 
  | xmlns:tns=http://planets.eu; exitOnStandardFault=yes 
  | name=PlanetsCompositeService suppressJoinFailure=yes 
  | targetNamespace=http://planets.eu;
  | 
  | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
location=PlanetsCompositeService.wsdl namespace=http://planets.eu/
  | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
location=droid.wsdl namespace=http://dme020:8080/axis/DROIDService.jws/
  | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
namespace=http://planets.euArtifacts/
  | bpws:import importType=http://schemas.xmlsoap.org/wsdl/; 
location=PlanetsCompositeServiceArtifacts.wsdl 
namespace=http://planets.euArtifacts/
  | bpws:partnerLinks
  | bpws:partnerLink myRole=PlanetsCompositeServiceProvider name=client 
partnerLinkType=tns:PlanetsCompositeService 
partnerRole=PlanetsCompositeServiceRequester/
  | bpws:partnerLink name=droid partnerLinkType=ns:droidPLT 
partnerRole=droidservice/
  | /bpws:partnerLinks
  | bpws:variables
  | bpws:variable messageType=tns:PlanetsCompositeServiceRequestMessage 
name=input/
  | bpws:variable messageType=tns:PlanetsCompositeServiceResponseMessage 
name=output/
  | bpws:variable messageType=ns0:identifyFormatResponse 
name=droidResponse/
  | bpws:variable messageType=ns0:identifyFormatRequest name=droidRequest/
  | /bpws:variables
  | bpws:sequence name=main
  | bpws:receive createInstance=yes name=receiveInput operation=initiate 
partnerLink=client portType=tns:PlanetsCompositeService variable=input/
  | bpws:assign name=Assign validate=no
  | bpws:copy
  | bpws:from part=payload variable=input
  | bpws:query 
queryLanguage=http://www.w3.org/TR/1999/REC-xpath-19991116;![CDATA[/tns:input]]/bpws:query
  | /bpws:from
  | bpws:to part=s variable=droidRequest/
  | /bpws:copy
  | /bpws:assign
  | bpws:invoke inputVariable=droidRequest name=Invoke 
operation=identifyFormat outputVariable=droidResponse partnerLink=droid 
portType=ns0:DROIDService/
  | bpws:assign name=Assign1 validate=no
  | bpws:copy
  | bpws:from part=identifyFormatReturn variable=droidResponse/
  | bpws:to part=payload variable=output
  | bpws:query 
queryLanguage=http://www.w3.org/TR/1999/REC-xpath-19991116;![CDATA[/tns:result]]/bpws:query
  | /bpws:to
  | /bpws:copy
  | /bpws:assign
  | bpws:invoke inputVariable=output name=callbackClient 
operation=onResult partnerLink=client 
portType=tns:PlanetsCompositeServiceCallback/
  | /bpws:sequence
  | /bpws:process
  | 

Isn't there a more easier way to deploy my bpel process - or is there something 
wrong with my bpel process?!?!

Thanks for your help.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4030658#4030658

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4030658
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Deploying my own first BPEL project

2007-03-21 Thread rainstar79
Hi,
i have created all my BPEL, WSDL and bpel-definition.xml files and put them 
into a folder. What is my next step? How can I deploy these files to the 
running jBoss 4.0.5. Should I make a jar out of it and copy it to the deploy 
folder? I modeled my BPEL process with the help of the Eclipse BPEL designer. I 
use the bpel 1.1-beta3 extension. 
Thanks for your help


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4030314#4030314

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4030314
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - trying to get the helloWorld BPEL example run...BUT...:(

2007-03-08 Thread rainstar79
Hi folks,
I did my first steps with the BPEL engine and therfore I wanted to deploy the 
hello exemple. Everything went fine and I got no wrong message from the jBoss 
AS. 
In the next step I wrote a simple C# Client in order to access to this BPEL 
process. But I got an exception:

  | 14:51:49,589 ERROR [SOAPFaultExceptionHelper] SOAP request exception
  | java.lang.UnsupportedOperationException: setProperty must be overridden by 
all
  | ubclasses of SOAPMessage
  | at javax.xml.soap.SOAPMessage.setProperty(Unknown Source)
  | at org.jboss.ws.soap.SOAPMessageImpl.init(SOAPMessageImpl.java:65)
  | at 
org.jboss.ws.soap.MessageFactoryImpl.createMessageInternal(MessageFa
  | toryImpl.java:209)
  | at 
org.jboss.ws.soap.MessageFactoryImpl.createMessage(MessageFactoryImp
  | .java:142)
  | at 
org.jboss.ws.server.ServiceEndpoint.handleRequest(ServiceEndpoint.ja
  | a:190)
  | at 
org.jboss.ws.server.ServiceEndpointManager.processSOAPRequest(Servic
  | EndpointManager.java:355)
  | at 
org.jboss.ws.server.StandardEndpointServlet.doPost(StandardEndpointS
  | rvlet.java:115)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
  | at 
org.jboss.ws.server.StandardEndpointServlet.service(StandardEndpoint
  | ervlet.java:76)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(App
  | icationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(Application
  | ilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderF
  | lter.java:96)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(App
  | icationFilterChain.java:202)
  | 

Then I saw that there was also a jUnit Test attached. But when I ran it, the 
test failed:

  | C:\Programme\Java\jbpm-bpel-1.1.Beta3\examples\helloant run-test
  | Buildfile: build.xml
  | 
  | compile-common:
  | 
  | compile-test:
  | [mkdir] Created dir: 
C:\Programme\Java\jbpm-bpel-1.1.Beta3\examples\hello\ta
  | rget\test\classes
  | [javac] Compiling 1 source file to 
C:\Programme\Java\jbpm-bpel-1.1.Beta3\exa
  | mples\hello\target\test\classes
  | 
  | run-test:
  | 
  | pack-client:
  |   [jar] Building jar: 
C:\Programme\Java\jbpm-bpel-1.1.Beta3\examples\hello\t
  | arget\hello-client.jar
  | [mkdir] Created dir: 
C:\Programme\Java\jbpm-bpel-1.1.Beta3\examples\hello\ta
  | rget\test\reports
  | [junit] Running org.jbpm.bpel.tutorial.hello.HelloTest
  | [junit] Tests run: 2, Failures: 0, Errors: 2, Time elapsed: 2,438 sec
  | 
  | BUILD FAILED
  | C:\Programme\Java\jbpm-bpel-1.1.Beta3\examples\common\ws-build.xml:262: 
Test org
  | .jbpm.bpel.tutorial.hello.HelloTest failed
  | 

I am using: 
jBoss 4.0.5.GA
jBPM BPEL Extension 1.1.Beta3

The jBoss AS is installed in the EJB3 mode. Could this be the problem??
Thanks for your help


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4026244#4026244

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4026244
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Problem with installing jBPM BPEL 1.1-Beta3

2007-03-06 Thread rainstar79
I found messages (but they don't tell me anything) like :-(
anonymous wrote : 
  | 2007-03-06 14:20:37,591 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] 
Could not create table with SQL: CREATE CACHED TABLE JMS_MESSAGES ( MESSAGEID 
INTEGER NOT NULL, DESTINATION VARCHAR(255) NOT NULL, TXID INTEGER, TXOP 
CHAR(1), MESSAGEBLOB OBJECT, PRIMARY KEY (MESSAGEID, DESTINATION) )
  | java.sql.SQLException: Table already exists: JMS_MESSAGES in statement 
[CREATE CACHED TABLE JMS_MESSAGES]
  | at org.hsqldb.jdbc.Util.throwError(Unknown Source)
  | at org.hsqldb.jdbc.jdbcPreparedStatement.executeUpdate(Unknown Source)
  | at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:251)
  | at 
org.jboss.mq.pm.jdbc2.PersistenceManager.createSchema(PersistenceManager.java:277)
  | at 
org.jboss.mq.pm.jdbc2.PersistenceManager.startService(PersistenceManager.java:1796)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
  | at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
  | at $Proxy0.start(Unknown Source)
  | at org.jboss.system.ServiceController.start(ServiceController.java:417)
  | at org.jboss.system.ServiceController.start(ServiceController.java:435)
  | at org.jboss.system.ServiceController.start(ServiceController.java:435)
  | at org.jboss.system.ServiceController.start(ServiceController.java:435)
  | at org.jboss.system.ServiceController.start(ServiceController.java:435)
  | at org.jboss.system.ServiceController.start(ServiceController.java:435)
  | at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy4.start(Unknown Source)
  | at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy34.start(Unknown Source)
  | at org.jboss.deployment.XSLSubDeployer.start(XSLSubDeployer.java:197)
  | at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
  | at sun.reflect.GeneratedMethodAccessor55.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at 

[jboss-user] [JBoss jBPM] - Monitoring BPEL processes

2006-11-22 Thread rainstar79
Hi Folks, 
is there a way to monitor my BPEL processes in a monitoring tool? Does the jBPM 
BPEL Extension offers e.g. a web-application where it gives me messages like: 
Service X is running or do I have to use the monitoring feature of the 
Application Server? How advanced is such a monitoring tool in the jBoss 
Application Server?
I read that there is a monitoring tool integrated in jBPM - but I guess this is 
just for monitoring processes modeled with jPDL (am I right???).
Thanks for your help!
Cheers Rainer


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3987886#3987886

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3987886
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - BPEL extension requirements

2006-10-25 Thread rainstar79
Hi folks,
short question: does the jBPM BPEL extension REQUIRE an Application Server 
(i.e. jBOSS AS)?? Or is there a way to run it only under Tomcat (guess that 
jBPM runs under tomcat well)?
Thanks Rainer

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3980647#3980647

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3980647
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jBPM BPEL Designer - Bonjour Example

2006-10-06 Thread rainstar79
Hi folks, 
I wanted to set up an example for a bridge between the jBPM and the Eclipse 
BPEL Designer.
I found a description of an example here 
http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmBpelDesigner. this is a perfect 
documentation (Congratulation to the Author) I did everything step by step. 
But when I wanted to deploy the application I got stuck and some exceptions 
where thrown:

1)Process Files can not be read (but they are packed in the folder 'build as 
bonjour.par



  | 15:50:03,628 INFO  [ConnectionFactoryBindingService] Bound 
ConnectionManager 'jb
  | oss.jca:service=DataSourceBinding,name=jbpmBpelDS' to JNDI name 
'java:jbpmBpelDS
  | '
  | 15:50:03,628 INFO  [JbpmConfiguration] using jbpm configuration resource 
'jbpm.c
  | fg.xml'
  | 15:50:03,675 INFO  [TomcatDeployer] deploy, ctxPath=/jbpm-bpel, 
warUrl=.../tmp/d
  | eploy/tmp18892jbpm-bpel.sar-contents/jbpm-bpel-exp.war/
  | 16:08:39,706 INFO  [[/jbpm-bpel]] processDeployServlet: deploying process 
definition: file=null
  | 16:08:39,706 ERROR [[/jbpm-bpel]] processDeployServlet: could not read 
process file: null
  | java.net.MalformedURLException
  | at java.net.URL.init(URL.java:601)
  | at java.net.URL.init(URL.java:464)
  | at java.net.URL.init(URL.java:413)
  | at 
org.jbpm.bpel.web.ProcessDeployServlet.doGet(ProcessDeployServlet.jav
  | a:38)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
  | lter.java:96)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
  | icationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
  | ilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
  | alve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
  | alve.java:178)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
  | yAssociationValve.java:175)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
  | e.java:74)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
  | ava:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
  | ava:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
  | ve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
  | a:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
  | :869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.p
  | rocessConnection(Http11BaseProtocol.java:664)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo
  | int.java:527)
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor
  | kerThread.java:112)
  | at java.lang.Thread.run(Thread.java:595)


2.)Error in the process.template.xml
**
Sometimes(!) I get an error here - then eclipse can not find these classes 
(strange)

  taskdef name=webdeploy classname=org.jbpm.bpel.ant.WebDeployTask
  | classpath refid=webtask.classpath /
  |   /taskdef
  |   taskdef name=servicegen 
classname=org.jbpm.bpel.ant.ServiceGeneratorTask
  | classpath refid=servicegen.classpath /
  |   /taskdef


3.)Versions
*
I am using the following versions:
jBoss 4.0.4.GA
jbpm-bpel-1.1-beta2

-- when I wanted to use build1 (because I thought this may be the problem) I 
got the following errormessage, when I wanted to deploy the .sar file from bpel 
at the jBoss AS. -- which means I could not even get the build1 run on jBoss:
16:19:27,859 INFO  [TomcatDeployer] undeploy, ctxPath=/jbpm-bpel, warUrl=.../tmp
  | /deploy/tmp18892jbpm-bpel.sar-contents/jbpm-bpel-exp.war/
  | 16:19:27,859 INFO  [ConnectionFactoryBindingService] Unbound 
ConnectionManager '
  | jboss.jca:service=DataSourceBinding,name=jbpmBpelDS' from JNDI name 
'java:jbpmBp
  | elDS'
  | 16:19:28,078 INFO  [HypersonicDatabase] Database standalone closed clean
  | 16:19:28,812 ERROR [MainDeployer] Could not create deployment: 
file:/C:/Programm
  | e/Java/jboss-4.0.4.GA/server/default/deploy/jbpm-bpel.sar
  | org.jboss.deployment.DeploymentException: No ClassLoaders found for: 
org.jbpm.db
  | .jmx.JbpmService; - nested throwable: (java.lang.ClassNotFoundException: No 

[jboss-user] [JBoss jBPM] - JBPM to create BPEL

2006-09-08 Thread rainstar79
Hi folks,
can I extend/change source code of the Process Designer to create BPEL Files 
not jPDL??
Is there a tutorial/documentation for such an aim?
Thanks Rainer


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3970293#3970293

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3970293
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jPDL vs. BPEL - I am a bit confused

2006-09-06 Thread rainstar79
Hi jBPM Gurus,
I am a bit confused in one thing. Maybe you can help me.
I am trying to introduce some students BPM and BPEL. It is just to give them a 
short overview about tools, methods, standards,...
Therefore I wanted to set up a jBPM environment to test some things for a 
presentation. I thought, when I install jBPM I can use the Eclipse Plugin to 
model a BPEL file graphically. But I guess that the output is something called 
jPDL. How could you compare this with BPEL? What is more powerfull - BPEL or 
jPDL? What are the restrictions of jPDL? Is there a way (or need) of mapping a 
jPDL after modeling with the graphical tool into BPEL for further processing? 
Can you recomend me a free modeling tool for generating BPEL which works well 
with jBPM? 
Thanks for your help
Rainer

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3969679#3969679

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3969679
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Can't create jbpm-bpel.sar for setting up the BPEL Exten

2006-09-05 Thread rainstar79
Hey alex,
the output of ant is the following:

C:\Programme\Java\jbpm-bpel-1.1-beta1ant build.service.404
  | Buildfile: build.xml
  | 
  | compile.bpel:
  | [mkdir] Created dir: 
C:\Programme\Java\jbpm-bpel-1.1-beta1\build\bpel.classe
  | s
  | [javac] Compiling 208 source files to 
C:\Programme\Java\jbpm-bpel-1.1-beta1\
  | build\bpel.classes
  | [javac] Note: Some input files use unchecked or unsafe operations.
  | [javac] Note: Recompile with -Xlint:unchecked for details.
  |  [copy] Copying 58 files to 
C:\Programme\Java\jbpm-bpel-1.1-beta1\build\bpel
  | .classes
  | 
  | build.bpel:
  |   [jar] Building jar: 
C:\Programme\Java\jbpm-bpel-1.1-beta1\build\jbpm-bpel-
  | 1.1-beta1.jar
  | 
  | compile.webapp:
  | [mkdir] Created dir: 
C:\Programme\Java\jbpm-bpel-1.1-beta1\build\webapp.clas
  | ses
  | [javac] Compiling 2 source files to 
C:\Programme\Java\jbpm-bpel-1.1-beta1\bu
  | ild\webapp.classes
  | 
  | build.webapp:
  |   [war] Building war: 
C:\Programme\Java\jbpm-bpel-1.1-beta1\build\jbpm-bpel.
  | war
  | 
  | build:
  | 
  | BUILD SUCCESSFUL
  | Total time: 18 seconds


Thanks for your help

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3969476#3969476

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3969476
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Can't create jbpm-bpel.sar for setting up the BPEL Extension

2006-08-29 Thread rainstar79
Hi guys, 
I am trying to set up the BPEL extension for the jBPM, but I have a few 
problems.
I downloaded the documention for the BPEL and went through the Chapter 3 - 
Getting started. I better tell you what I've done and were I got stuck:

1.) Download and install Apache Ant 1.6.5
2.) Download and install jBoss AS 4.0.4.GA
3.) Download and install jBPM 3.1.2
4.) Download jBPM-BPEL 1.1-Beta

5.) Hibernate settings (is this necessary for my initial try)
6.) jBPM settings (don't know what i should configure there?)

7.) Packaging
a) modify build.properties with the jBoss AS information
b) build.xml is allready in the root directory
c) console: ant service.build.404

-- AND HERE IS MY PROBLEM:
There should be a file generated called jbpm-bpel.sar - BUT it isn't!!
In the folder build is only the following data: 
folder: bpel.classes
folder: webapp.classes
jbpm-bpel-1.1-beta1
jbpm-bpel.war
- No .sar file

What am I doing wrong?
Did I forget some settings?

Thanks for your help!
Rainer



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3968030#3968030

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3968030
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user