[JBoss-user] [JBoss jBPM] - Re: StartsWith XPath question

2006-07-07 Thread ncapito
That was actually the site i was looking at but i guess i can't read. startsWith -> starts-with. Thanks again. Nick View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956305#3956305 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[JBoss-user] [Beginners Corner] - Re: [jBPM-BPEL] Ant error

2006-07-07 Thread ncapito
Where did you get the jBPM-3.0.3? I was getting that error when i was using the wrong version of the jar. Inside of the BpelExtension.zip there should be a jBPM-3.0.1 or jBPM-3.1? Jar. I am using the beta version of jbpm-bpel so i am not sure of the exact version number. If that is no

[JBoss-user] [JBossWS] - Re: Running deployed process cause PortProxy Error

2006-07-07 Thread ncapito
As bad as this sounds ... i posted a reply on the other forum. Please check the link: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=86266 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956300#3956300 Reply to the post : http://www.jboss.com/in

[JBoss-user] [JBoss jBPM] - Re: Web Service invocation inside a BPEL-Process failed.

2006-07-07 Thread ncapito
Here is the example: http://jbpm.org/bpel"; | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="http://jbpm.org/bpel | http://jbpm.org/bpel/bpel_application_1_0.xsd";> | | | | |

[JBoss-user] [JBoss jBPM] - StartsWith XPath question

2006-07-07 Thread ncapito
Do you all support the startsWith XPath string function? I am having trouble trying to get it to work. I want to (inside of a bpel process) check a string to see if it starts with a particular substring. For example. "Nicks_1:". I saw that XPath has a startsWIth command so i attempted to us

[JBoss-user] [JBoss jBPM] - Re: Web Service invocation inside a BPEL-Process failed.

2006-07-07 Thread ncapito
Have you tried adding in the locations of your other partner links in the bpelapplication.xml!? It could be that the process does not know how to deliver to you ws because it does no know its location. When i get back to my office i will send you an example of a service catalog. View the orig

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-07-07 Thread ncapito
There is a good chance it might not be different. I did add it within a case tag. It was a while ago. The reason I posted was that I could not find a complete switch string example in the docs. So i wanted to just throw one that I knew worked into the community. View the original post : h

[JBoss-user] [JBoss jBPM] - Re: BPEL String/XML Problem

2006-07-07 Thread ncapito
Thanks for the reply Alex. I do care about portability issues so I will not reqquest a feature. I do appoligize I did not see you previous post about the spec. Nick View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956152#3956152 Reply to the post : http:/

[JBoss-user] [JBoss jBPM] - Re: BPEL String/XML Problem

2006-07-02 Thread ncapito
Random post aside. Do you have any response to my post? Is the fact that you can not use "XMLStrings" as string variables in a process definition a problem? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954936#3954936 Reply to the post : http://www.jbo

[JBoss-user] [JBoss jBPM] - Re: WSDL for bpel web services

2006-06-29 Thread ncapito
Thanks for the quick reply Alex. I was able to generate an entire bpel system using a combo of xdoclet/wscompile. But the problem i was having was that i had to write another script to actually gut the wsdl's(even know i could have left the mappings and service tags in them) and then inser

[JBoss-user] [Advanced Documentation] - Re: jbpm bpel ant wscompile problem

2006-06-29 Thread ncapito
You are running the wrong version of java. Make sure that J2ee is first in your class path. You can verify this by typing java -version on command line. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954328#3954328 Reply to the post : http://www.jboss.co

[JBoss-user] [JBoss jBPM] - Re: WSDL for bpel web services

2006-06-29 Thread ncapito
Just following up on this? Anyone out there found a way to automate wsdl parter links? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954327#3954327 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954327 Using Tomca

[JBoss-user] [JBoss jBPM] - Re: BPEL String/XML Problem

2006-06-21 Thread ncapito
I do not know if i fully follow. My xml message is correct. I am able to get stuff out of the message as long as i send it over encoded (My encoding takes and removes the < > and some other chars). Once i am inside the process i copy the variable and pass it to a web service. The service the

[JBoss-user] [JBoss jBPM] - Re: BPEL String/XML Problem

2006-06-20 Thread ncapito
anonymous wrote : Is it, literally, one that contains a dot sequence? Please clarify. I jsut realized that i used ... in my example again. I am using ... in the sense of etc. It is just an XML message. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3

[JBoss-user] [JBoss jBPM] - Re: BPEL String/XML Problem

2006-06-20 Thread ncapito
I fixed the problem. However this is what was happening: I was sending an xml document as a string for example: " | Data | ... | " and it wad crashing i fixed the problem by encoding the string. It was crashing when it saw the < at the beggining of the string. If i remove the <

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-06-14 Thread ncapito
Sorry this took so long: Request is just a variable with a string part | | | | | |

[JBoss-user] [JBoss jBPM] - BPEL String/XML Problem

2006-06-13 Thread ncapito
I have a process that is passing around an xml string. However i have come to a problem. If i try to call into my processing using a string like "" as a parameter it crashes. I have been messing with it for a while and a normal string "MyXml..." will work fine. Any help? I am going to a

[JBoss-user] [JBoss jBPM] - WSDL for bpel web services

2006-06-06 Thread ncapito
Is there any tools out there that will generate a WSDL for use with bpel script? I.E. i can use wscompile/xdoclet to get my wsdl but they aren't designed for use with the bpel script so i have to hand edit the WSDLs and add in the parnter links and gut the service/mappings Any way to aut

[JBoss-user] [JBoss jBPM] - Re: BPEL Descriptor Question

2006-06-02 Thread ncapito
I thank you for your help... i updated it with a local wsdl and it worked fine View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3948771#3948771 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3948771 _

[JBoss-user] [JBoss jBPM] - Re: BPEL Descriptor Question

2006-06-01 Thread ncapito
FYI it would be nice to have an example where the process calls an external webservice (not packaged within the process) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3948532#3948532 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[JBoss-user] [JBoss jBPM] - BPEL Descriptor Question

2006-06-01 Thread ncapito
So i have a process that is working however i have a question. For any webservice that you call inside of a process you have to define where to get the wsdl... how is this done. I am currently doing this by defining the absolute location inside the bpel-definition.xml like this: | |

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-05-19 Thread ncapito
I got it. Thanks for the help. I will post a string bpel example later today for anyone that is interested. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3944859#3944859 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-05-18 Thread ncapito
So i thank you for your help and i have decided to just go with the Switch statement. The only think left i have to do is get my condition statement working. Right now I am using condition="bpel:getVariableData('request','msg')='FUSION1'" Can someone please help me with comparing strings in

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-05-18 Thread ncapito
anonymous wrote : However, the element still requires the activity under a subelement. Then is still needed? I believe the schema in the 2.0 called bpel_2_0.xsd is the one i am supposed to be using. It refers to a then and when i do not have one it will complain in my ide. In my process:

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-05-17 Thread ncapito
Is switch no longer supported also? I really can't understand why the SPEC seems so simple yet so hard to piece together? When i try a switch it throws this error: 2006-05-17 09:39:40,328 ERROR [org.jbpm.bpel.xml.ProblemHandler] JTMFusion.bpel(48) cvc-complex-type.2.4.a: Invalid content w

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-05-17 Thread ncapito
FYI: | http://schemas.xmlsoap.org/ws/2004/03/business-process/"; | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | xmlns:bpel="http://schemas.xmlsoap.org/ws/2004/03/business-process/"; | xmlns:xsd="http://www.w3.org/2001/XMLSchema"; | xsi:schemaLocation="http:

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-05-17 Thread ncapito
Okay so now i am confused. The bpel schema will not parse without the | 2006-05-17 09:24:01,312 ERROR [org.jbpm.bpel.xml.ProblemHandler] JTMFusion.bpel(52) cvc-complex-type.2.4.a: Invalid content was found starting with element 'empty'. One of '{"http://schemas.xmlsoap.org/ws/2004/03/bus

[JBoss-user] [JBoss jBPM] - Re: BPEL Condition

2006-05-16 Thread ncapito
So i am no longer getting an error about the if clause it is a parsing null pointer error. Is this conecept correct? If it is i will post real code: | | | | | | | | |

[JBoss-user] [JBoss jBPM] - BPEL Condition

2006-05-16 Thread ncapito
Can someone please help me with conditionals in BPEL? I looked at the spec and it said there was a but it seems to error on the line with the if statement. I am trying to do an if check on a string... Just looking for a quick and diry example. this is what i tried: | |

[JBoss-user] [JBoss jBPM] - Re: BPEL Process Deploy problem (JNDI Connection Factory pro

2006-05-03 Thread ncapito
I thank you for your help my war file was not finding my jboss-web.xml. Thanks, again. Nick View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3941120#3941120 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3941120 -

[JBoss-user] [JBoss jBPM] - Re: BPEL Process Deploy problem (JNDI Connection Factory pro

2006-05-03 Thread ncapito
Using the default server did not work. Same error. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3941091#3941091 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3941091 ---

[JBoss-user] [JBoss jBPM] - Re: BPEL Process Deploy problem (JNDI Connection Factory pro

2006-05-03 Thread ncapito
Using 4.0.3SP1 did not work. Same error as before. I am going to try and use the default config, if it works I will let you know. I also attached the web.xml file that i am using. JMS comes configured? My Jboss-web is at the begining of the thread and here is my web.xml. | http://jav

[JBoss-user] [JBoss jBPM] - Re: BPEL Process Deploy problem (JNDI Connection Factory pro

2006-05-03 Thread ncapito
anonymous wrote : proceed to bind the destination and connection factory references to resources that exist in the operational environment. I agree it mentions it. And i have the jboss-web file and it does not recognize the connection factory. I am using the 4.0.2 all setup. I am going to t

[JBoss-user] [JBoss jBPM] - BPEL Process Deploy problem (JNDI Connection Factory problem

2006-05-02 Thread ncapito
Very quick background. I basically am doing my own tutorial and am using the hello example delivered with the BPEL Extension as a guide. Here is where i got stuck. 2006-05-02 16:01:36,140 DEBUG [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/Nicks_temp/jboss-4

[JBoss-user] [JBoss jBPM] - Re: Problems deploying a BPEL process archive

2006-05-02 Thread ncapito
FYI i changed the parter role of the write and redeployed and it worked so thank you for now. | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3940729#3940729 Reply to the post : http://www.jboss.com/index

[JBoss-user] [JBoss jBPM] - Re: Problems deploying a BPEL process archive

2006-05-02 Thread ncapito
How do I open a JIRA issue? FYI here is my other wsdl | | | | | http://webservice"; xmlns:tns="http://webservice"; | xmlns="http://schemas.xmlsoap.org/wsdl/"; | xmlns:xsd="http://www.w3.org/2001/XMLSchema"; | xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/par

[JBoss-user] [JBoss jBPM] - Re: Problems deploying a BPEL process archive

2006-05-02 Thread ncapito
Any my server is: 4.0.2. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3940633#3940633 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3940633 --- Using Tomcat but

[JBoss-user] [JBoss jBPM] - Re: Problems deploying a BPEL process archive

2006-05-02 Thread ncapito
I am so close I have everything packaged and i am to the point of deploying my process archive and this is the error i get: 2006-05-02 08:09:12,671 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/jbpm-bpel]] DeployServlet: deploying process archive: file:/C:/Nick

[JBoss-user] [JBoss jBPM] - Re: Problems deploying a BPEL process archive

2006-05-01 Thread ncapito
I thank you for your help... why didn't this error on 4.0.4? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3940519#3940519 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3940519 ---

[JBoss-user] [JBoss jBPM] - Re: Problems deploying a BPEL process archive

2006-05-01 Thread ncapito
I would do that but the problem is 4.0.4 seems to be the only server that excepts by webservice packing. I have a webservice that i thought was packed right. But if i try to use any lower version of JBoss it will not deploy it. Here is the error i get: 2006-05-01 14:04:57,968 DEBUG [org.jb

[JBoss-user] [JBoss jBPM] - Problems deploying a BPEL process archive

2006-05-01 Thread ncapito
Hello all i am trying to deploy a very simple process archive. When i go to use the ant deploy process task here is the error i am getting. DeployServlet: deploying process archive: file:/C:/Nicks_Temp/Projects/BPELWorkspace/build/FusionWriter.par 2006-05-01 13:40:00,937 DEBUG [org.jbpm.bpel.x