[jboss-user] [JBoss Tools] - Re: NPE just installed jboss tools

2011-11-03 Thread Javier jagr
Javier jagr [http://community.jboss.org/people/garramja] created the discussion Re: NPE just installed jboss tools To view the discussion, visit: http://community.jboss.org/message/634761#634761 -- I think you are right when you said

[jboss-user] [JBoss Tools] - Re: NPE just installed jboss tools

2011-10-26 Thread Javier jagr
Javier jagr [http://community.jboss.org/people/garramja] created the discussion Re: NPE just installed jboss tools To view the discussion, visit: http://community.jboss.org/message/633630#633630 -- This is eclipse log. !SESSION 2011

[jboss-user] [JBoss Tools] - Re: NPE just installed jboss tools

2011-10-26 Thread Javier jagr
Javier jagr [http://community.jboss.org/people/garramja] created the discussion Re: NPE just installed jboss tools To view the discussion, visit: http://community.jboss.org/message/633632#633632 -- Hi, this is eclipse log !SESSION

[jboss-user] [JBoss Tools] - NPE just installed jboss tools

2011-10-21 Thread Javier jagr
Javier jagr [http://community.jboss.org/people/garramja] created the discussion NPE just installed jboss tools To view the discussion, visit: http://community.jboss.org/message/632977#632977 -- Hi. I've just installed jboss tools

[jboss-user] [Installation, Configuration Deployment] - Encoding error windows vs linux

2009-12-10 Thread jagr
Hi. I have an application running on local machine, test server and server. This application hava a page thats uses lib commons-fileupload to upload a file and some data. This form is a multipart/form-data. Data is stored on Oracle 9i database and file to some folder. All aplication and files

[jboss-user] [JBoss jBPM] - Re: Invoking webservice from action

2008-05-19 Thread jagr
Why sometimes when I execute process and enter in node that invoke webservice Exception is thrown because don't find the class? | ava.lang.NoClassDefFoundError: com/aixtelecom/portbooker/UpdatePrice_Service | at

[jboss-user] [JBoss jBPM] - Re: Invoking webservice from action

2008-05-19 Thread jagr
The problem is that jax-ws only generate .class :/ but if I create a simple java project with main class and execute as java aplication runs ok but in jbpm thrown the exception NoClassDefFoundError View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4151835#4151835

[jboss-user] [JBoss jBPM] - Re: Invoking webservice from action

2008-05-13 Thread jagr
Ok. My problem was solved. I generated .class webservice client with jax-ws and I tested it in a simple java project. I've included .class into .class folder in jbpm project and I use clases into action. Works fine. thanks salaboy and kukeltje View the original post :

[jboss-user] [JBoss jBPM] - Re: Invoking webservice from action

2008-05-09 Thread jagr
Ok. That it's correct, but how can I call this webservice client if my websercive client it's on another project out of jbpm project. Should I import entire webserviceclient project into jbpm project? I'm using eclipse 3.0.3, jbpm 3.2.2 and webservice client it's generated with axis2 and it's

[jboss-user] [JBoss jBPM] - Re: how to function jbpm in network????

2008-05-09 Thread jagr
If your app is running on your localhost yo can acces by http://localhost:8080/jbpm-console or http://yournetworkip:8080/jbpm-console or http://yourpcname:8080/jbpm-console if you want acces from another computer in your network can access by http://yournetworkip:8080/jbpm-console or

[jboss-user] [JBoss jBPM] - Invoking webservice from action

2008-05-08 Thread jagr
How can I configure jbpm to action invoke a webservice? I want to action in my process, invoke a webservice thats it's on other machine. I've only a wsdl. I've worked with webservices with axis2 and I 've created clients, but in jbpm I don't know how can I do this. Somebody can tell me a

[jboss-user] [JBoss jBPM] - How to restrict acces to process

2008-04-21 Thread jagr
Hi. How can I restrict some users to see in jbpm-console some processes? In exemple. User 1 can see only process 1 and 2 User 2 can see process 2 User 2 can see process 3 Admin can see process 1,2 and 3 Now I configure users and groups in db but I can't see how can I specify relation between

[jboss-user] [JBoss jBPM] - Re: Start process from code

2008-04-02 Thread jagr
I forget to change hibernate.cfg.xml when I deployed :p Now runs ok an persist on db thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4140788#4140788 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4140788

[jboss-user] [JBoss jBPM] - Start process from code

2008-04-01 Thread jagr
Hi. Somebody can tell me how can I start process from code, not from jbpm-console?, or where can I find tutorial or examples? I have process definition deployed and running on server. I have a webservice that receive variables, and I want to start process when ws is executed. Thanks. View

[jboss-user] [JBoss jBPM] - Re: Start process from code

2008-04-01 Thread jagr
I've tried whit this code and runs ok | ProcessDefinition processDefinition = ProcessDefinition.parseXmlString( | process-definition xmlns='urn:jbpm.org:jpdl-3.2' name='TestStart' + | | [.PROCESS DEFINITION...] | | /process-definition | ); |

[jboss-user] [JBoss jBPM] - Re: Start process from code

2008-04-01 Thread jagr
I've tried whit this code and runs ok | ProcessDefinition processDefinition = ProcessDefinition.parseXmlString( | process-definition xmlns='urn:jbpm.org:jpdl-3.2' name='TestStart' + | | [.PROCESS DEFINITION...] | | /process-definition | ); |

[jboss-user] [JBoss jBPM] - Deploy jbpm-console into jboss-4.2.1.GA

2008-03-17 Thread jagr
I have been using jbpm-jpdl-3.2.2 with eclipse plugin designer, and server that it's on the distribution. I've changed embedded hypersonic database to mysql database, and I've been working succefully. Now I want to deploy my process to another jboss as. When I want test my process, only go to

[jboss-user] [JBoss jBPM] - How to get id of task

2008-03-14 Thread jagr
Hi. I'm trying to get the id of task. My process start and in determinate node has ActionHandler. In this action, i want to know task id. I'm be able to get node id with context.getNode().getId() and get token id with context.getToken().getId() but if I try context.getTask().getId() process

[jboss-user] [JBoss jBPM] - Re: Movo to node

2008-03-13 Thread jagr
I think that i haven't explained very well. In all actions, (static true/false, query result, equals between int, string...) when code execute | node.leave(context, name of transaction); | always, the process enter into 2 nodes. Into node that execute code, and other node. In exemple. If

[jboss-user] [JBoss jBPM] - Re: Movo to node

2008-03-13 Thread jagr
Sorry kukeltje. Can you say some link that explain how to make unit test? I've never made it. Thanks!! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4136376#4136376 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4136376

[jboss-user] [JBoss jBPM] - Re: Movo to node

2008-03-12 Thread jagr
Yes. Query response it's correct. In exemple, If I execute this ActionHandler | public class SearchClientAction implements ActionHandler{ | | /** The log. */ | private Logger log = Logger.getLogger(SearchClientAction.class); | | private static final long serialVersionUID

[jboss-user] [JBoss jBPM] - Re: Movo to node

2008-03-11 Thread jagr
In this case | if (true){ | //go to create offer | node.leave(context, tr_create_offer); | } | else{ | //go to create client |

[jboss-user] [JBoss jBPM] - Movo to node

2008-03-10 Thread jagr
I've defined a process like this. | ?xml version=1.0 encoding=UTF-8? | process-definition xmlns=urn:jbpm.org:jpdl-3.2 name=reserva | swimlane name=reception | assignment actor-id=pepeito/assignment | /swimlane | start-state name=Offer petition |

[jboss-user] [JBoss jBPM] - Visual database shcema

2008-03-07 Thread jagr
Somebody has visual jbpm database schema? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4134821#4134821 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4134821 ___ jboss-user

[jboss-user] [JBoss jBPM] - Start automatically process instance

2008-03-07 Thread jagr
I want to define process on jbpm-jpdl-3.2 taht starts automatically in exeample when recibes signal from webservice. The process will start automatically, will do some automatic actions and maybe user will do some task. How can i do it to define at start-state that runs automatically? Thanks!!!

[jboss-user] [JBoss jBPM] - Re: Visual database shcema

2008-03-07 Thread jagr
Thanks kukeltje I didn't enter at this topic. It's schema that i was looking for. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4134900#4134900 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4134900

[jboss-user] [JBoss Seam] - Change messages (created, updated, deleted)

2007-11-22 Thread jagr
Hi. I'm using jboss-seam-2.0.0.BETA1 and jboss-4.2.1.GA. At top of form i have h:messages that shows messages Succesfully updated Succesfully created Succesfully deleted when i submit a form depending the action. Do you know how change language of this messages? On messages at resources dir,

[jboss-user] [JBoss Seam] - Problem with encoding characters on user interface

2007-10-30 Thread jagr
I work with jboss-seam-2.0.0.BETA1, jboss-4.2.1.GA. On a xhtml the applicattion searchs on db depending on h:inputText Messages works correctly. The problem is that the application works on spanish lenagauge with characters as í á ñ... Words located on messages.properties are shown correctly on

[jboss-user] [JBoss Seam] - Refresh dataTable

2007-10-15 Thread jagr
I have on a jsf page a EmployeeEdit and at dow of page I have rich:dataTable that has EmployeeErrors. Employee has relationship with EmployeeEdit. one to many. I can display EmployeeErrors that have Employee but when I save the form, there are a process that eliminates some lines of

[jboss-user] [JBoss Seam] - Entities generated by seam (many 2 many)

2007-10-08 Thread jagr
On my application have user and role control. These have many to many realtionship. I want to reuse views generated by seam but seam-gen only create entities form table user and role. user-role table it's ignored. How can I creat entities and views form user-role table? thanks View the

[jboss-user] [JBoss Seam] - Re: Entities generated by seam (many 2 many)

2007-10-08 Thread jagr
swd847 wrote : Does the user-role table have a primary key? I have Table role: -role (pk) -name -description Table user: -username(pk) -password -name -email Table user_role: username(pk) role(pk) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4092645#4092645

[jboss-user] [JBoss Seam] - Seam an msaccess?

2007-10-04 Thread jagr
I work with seam jboss-seam-2.0.0.BETA1 and mysql 5 DB. I need to access to another db msaccess but I can't configure seam to access to this db. When I create seam project with seam gen, at seam setup, some questions have to be answered. When i have to specify the db (mysql, oracle, postgree,

[jboss-user] [JBoss Seam] - Re: Seam an msaccess?

2007-10-04 Thread jagr
Yes I have it. But when seam setup ask me what kind of data base i want to use, what word should be writed? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4091416#4091416 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam an msaccess?

2007-10-04 Thread jagr
ok thanks I'll try it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4091426#4091426 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4091426 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Exception on submit form when show attribute bean

2007-10-01 Thread jagr
I have bean named Person an annotated as @Name(person) with attribute name with getters and setters. On jsf: h:form h:inputText value=#{person.name} size=20/ s:button type=submit value=Export action=#{actions.doExport}/ /h:form On Actions: @Name(actions) public class Actions {

[jboss-user] [JBoss Seam] - Re: Exception on submit form when show attribute bean

2007-10-01 Thread jagr
I've added @In(create=true) and the exception isn't thrown, but the object person injecte seems to be null. Seems that when the injection is done, the entity person is not created correctly. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4090317#4090317

[jboss-user] [JBoss Seam] - How to pass param from inputText to s:link

2007-09-28 Thread jagr
I want to specify param value on s:link with a h:inputText value. s:link action=#{actions.doSomething} value=#{messages.actions_doSomething} f:param name=param1 value=¿?¿?¿?¿/ /s:link h:inputText id=paramFromUser / I want that the f:param on s:link, takes the value of h:inputText that the user