[jboss-user] [JBoss Tools] - Overview of Context Dependency Injection Tools

2011-01-31 Thread Alexey Kazakov
Alexey Kazakov [http://community.jboss.org/people/akazakov] modified the blog 
post:

Overview of Context Dependency Injection Tools

To view the blog post, visit: 
http://community.jboss.org/community/tools/blog/2011/01/31/overview-of-context-dependency-injection-tools

--
The very first version of Context Dependency Injection (CDI) Tools was 
introduced as a part of JBoss Tools 3.1.0. But now JBoss Tools 3.2 is moving to 
its first stable release. Let's have some review of main features of the 
improved and up coming CDI Tools in JBoss Tools 3.2.
h3. *Enabling CDI support*
First at all we need to enable CDI support for the project. If you already have 
some CDI project and don't want to start from scratch then just go to+Project 
Properties-CDI-CDI support+ to enable all the features.

 
http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11251/00enableCDI.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11251/450-340/00enableCDI.png
 


If your project is Maven-based and the pom.xml references the CDI api jars CDI 
support will be enabled automatically. If you want to create a brand new WTP 
project with CDI support, just add a CDI facet to the list of installing facets.

See Max's blog  
http://community.jboss.org/community/tools/blog/2010/12/10/simple-cdi-hello-world-in-eclipse
 Simple CDI Hello World with Eclipse and JBoss Tools for details.

Make sure you have CDI support enabled for all the related projects. For 
instance if you have a web project (is to deployed as WAR) which uses some Java 
project (JAR) then both projects should have CDI support enabled.

If you are interested in Weld examples (Weld is the reference implementation of 
CDI spec.) you can download it from JBoss Tools example site.+Help-Project 
Examples-Weld 1.0.1+
+
+
 
+http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11252/01examples.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11252/421-600/01examples.png
 
+

h3. *CDI Wizards*

There are a set of CDI Wizards to help you to create basic CDI artifacts. The 
wizards are available in +File-New-Other...-CDI+
+
+
 
http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11253/02wizards.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11253/450-436/02wizards.png
 

 
http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11254/03newStereotype.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11254/450-486/03newStereotype.png
 

h3. *CDI validation*

CDI validation covers most of the rules declared in the JSR-299 specification. 
There are 100+ validation rules including definition errors and deployment 
problems. You can see the full list in the CDI Preferences, where you can also 
control which rules you want to be Errors, Warnings or simply Ignored.

 
*http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11255/04validation.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11255/450-434/04validation.png
 
*


The CDI validator checks for problems in java source files, JSP, XHTML and 
beans.xml files.
Some of the validation problems can be fixed via Quick Fixes menu (Ctrl+1):

 
http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11256/05nonBusinessProducer.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11256/450-160/05nonBusinessProducer.png
 
h3. *Code completion*

Another useful feature is a code completion. CDI tools provides two types of 
code completion. Code completion for @Named beans and their members which are 
available in EL expressions:

 
http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11257/06elca.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11257/450-228/06elca.png
 


And code completion for the relevant types/annotations in beans.xml:

 
http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11258/07beansXmlCA.gif
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11258/450-280/07beansXmlCA.gif
 


h3. *Hyperlinks (OpenOns)*

Hyperlinks help you to navigate between source files. For example Ctrl+Click or 
F3 on any EL will navigate you to the corresponding java source.

For Injection's it is a bit more tricky. The built-in Java hyperlink for its 
declared type will open the type. But for Injection there are additional 
relevant items to navigate to. CDI Tools offers you an alternative navigation 
to the actual bean which is to be injected.

 
http://community.jboss.org/servlet/JiveServlet/showImage/38-3559-11259/08openOnInj.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-3559-11259/450-196/08openOnInj.png
 


If  the injection has multiple eligible beans, you can see a full list of these 
beans. Btw. you can fix the multiple eligible beans via a quick-fix (Ctrl+1).

 

[jboss-user] [JBoss Web Services] - Re: WS-Security on JBoss 6 (with CXF)

2011-01-31 Thread Frank Bitzer
Frank Bitzer [http://community.jboss.org/people/franky_b] created the discussion

Re: WS-Security on JBoss 6 (with CXF)

To view the discussion, visit: http://community.jboss.org/message/584231#584231

--
Well, yes, I've already found and studied this (especially  
http://docs.jboss.org/jbossas/6/WebServices_Guide/en-US/html/chap_JBossWS-StackCXFUserGuide.html
 
http://docs.jboss.org/jbossas/6/WebServices_Guide/en-US/html/chap_JBossWS-StackCXFUserGuide.html)
 via Google.

However, in the examples, they mess with heavy XML configuration which would 
break my approach using annotations for all the web services. Furthermore, 
Spring is required in order for this to work. This is not what I call a 
lightwight solution  ;) 

So I don't want to rely on any container magic, I just want to inject my 
stateless session bean somewhere in the handler chain to parse the SOAP header 
and to check the username in the database...
--

Reply to this message by going to Community
[http://community.jboss.org/message/584231#584231]

Start a new discussion in JBoss Web Services at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2044]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: The New BPMN 2.0 Editor Has Arrived

2011-01-31 Thread Koen Aers
Koen Aers [http://community.jboss.org/people/koen.aers%40jboss.com] created the 
discussion

Re: The New BPMN 2.0 Editor Has Arrived

To view the discussion, visit: http://community.jboss.org/message/584240#584240

--
Hi Mauricio,

I'm a bit busy working on other stuff right now but I'll see what I can do some 
lonely and boring evening later this week. It's not a big deal adding another 
node type. ;-)

Cheers,
Koen
--

Reply to this message by going to Community
[http://community.jboss.org/message/584240#584240]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: The New BPMN 2.0 Editor Has Arrived

2011-01-31 Thread helal jean-noel
helal jean-noel [http://community.jboss.org/people/jnhelal] created the 
discussion

Re: The New BPMN 2.0 Editor Has Arrived

To view the discussion, visit: http://community.jboss.org/message/584244#584244

--
Hi Koen and Mauricio

Just for information, 
you may mention somewhere in the doc that HELIOS (ECLIPSE 3.6) is required for 
this plugin
Regards.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584244#584244]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Passivation vs. @Inject

2011-01-31 Thread Juergen Zimmermann
Juergen Zimmermann [http://community.jboss.org/people/Juergen.Zimmermann] 
created the discussion

Passivation vs. @Inject

To view the discussion, visit: http://community.jboss.org/message/584261#584261

--
I have a Stateful SessionBean which gets passivated as it should.

Now I add a CDI bean as a field using @Inject. However, after activation the 
field is null. Any comment is appreciated!

@Named(...)
@SessionScoped
@Stateful
public class MyController implements Serializable {
@Inject
private AuthController auth;

@PostActivate
private void postActivate() {
    // Should I add something here?
}
}

@Named(auth)
@SessionScoped
@Log
public class AuthController implements Serializable {
// some String based fields
}
--

Reply to this message by going to Community
[http://community.jboss.org/message/584261#584261]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - JBoss Tools 3.2 CR1 @Inject Warnings

2011-01-31 Thread Sebastian Sachtleben
Sebastian Sachtleben [http://community.jboss.org/people/cosmostunes] created 
the discussion

JBoss Tools 3.2 CR1 @Inject Warnings

To view the discussion, visit: http://community.jboss.org/message/584262#584262

--
Hello,

I'm using the new Jboss Tools 3.2 CR1 from the nightly repository. I'm getting 
some warnings:

@Named
@Startup
public class BootstrapPersistenceAccess {
 
  @Inject Logger log;
  @Inject UserTransaction utx;
 
  ...
 
}


The first injection is the jboss logger with warning: *No bean is eligible for 
injection to the injection point*
The second injection is javax.transaction.UserTransaction with warning: 
*Multiple beans are eligible for injection to the injection point
*

The strange thing is that I inject the logger on other classes also without 
this warning.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584262#584262]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss Tools 3.2 CR1 @Inject Warnings

2011-01-31 Thread Alexey Kazakov
Alexey Kazakov [http://community.jboss.org/people/akazakov] created the 
discussion

Re: JBoss Tools 3.2 CR1 @Inject Warnings

To view the discussion, visit: http://community.jboss.org/message/584281#584281

--
Is it a Weld 1.1 project?
Could you show the import declaration too?
Does this project work when you deploy it?
CDI validator may show warnings for correct injections. We just need to have 
more details to reproduce it.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584281#584281]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Access to task comments in an EL, possible ?

2011-01-31 Thread Jaber C. Mourad
Jaber C. Mourad [http://community.jboss.org/people/newbeewan] created the 
discussion

Access to task comments in an EL, possible ?

To view the discussion, visit: http://community.jboss.org/message/584292#584292

--
Hi,

I'm looking for a simple solution to get task comments via EL to write then 
into a mail hooked to the event on end.

Is it possible to get then or do I need to create a mail activity and populate 
that comments into a variable at the end of the task ?

I'm using JBpm 4.4 and JPDL.

Regards
--

Reply to this message by going to Community
[http://community.jboss.org/message/584292#584292]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss Tools 3.2 CR1 @Inject Warnings

2011-01-31 Thread Sebastian Sachtleben
Sebastian Sachtleben [http://community.jboss.org/people/cosmostunes] created 
the discussion

Re: JBoss Tools 3.2 CR1 @Inject Warnings

To view the discussion, visit: http://community.jboss.org/message/584294#584294

--
Thanks Alexey.

I have fixed these warnings with upgrading my weld dependency:

  dependency
 groupIdorg.jboss.weld/groupId
 artifactIdweld-core/artifactId
 version1.0.1-Final/version
 scopetest/scope
  /dependency


to

  dependency
 groupIdorg.jboss.weld/groupId
 artifactIdweld-core/artifactId
 version1.1.0.Final/version
 scopetest/scope
  /dependency


But since I switched this depency I'm getting 2 new warnings  :(  Currently 
since my project based on a not updated seam 3 example with much customizings 
from my side i'm not sure if I need these files any longer...

Description    Resource    Path    Location    Type
No grammar constraints (DTD or XML schema) detected for the document.    
arquillian.xml    /myWebapp/src/test/resources    line 1    XML Problem
No grammar constraints (DTD or XML schema) detected for the document.    
jboss-scanning.xml    /myWebapp/src/main/webapp/WEB-INF    line 1    XML Problem
--

Reply to this message by going to Community
[http://community.jboss.org/message/584294#584294]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: 64 bit xulrunner - has anyone got one, or detailed steps to build one?

2011-01-31 Thread Maxim Areshkau
Maxim Areshkau [http://community.jboss.org/people/mareshkau] created the 
discussion

Re: 64 bit xulrunner - has anyone got one, or detailed steps to build one?

To view the discussion, visit: http://community.jboss.org/message/584297#584297

--
Webkit hasn't java dom binding, so for now it's not suits for VPE.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584297#584297]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Issue in CR1 visual editor

2011-01-31 Thread Maxim Areshkau
Maxim Areshkau [http://community.jboss.org/people/mareshkau] created the 
discussion

Re: Issue in CR1 visual editor

To view the discussion, visit: http://community.jboss.org/message/584299#584299

--
HI, I am going to check this case, but if Preview not available, I think better 
to have just one tab, which called Source and threw an exception in error log, 
don't show it here.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584299#584299]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - jboss hotdeploy - where is the exploded war

2011-01-31 Thread nimo stephan
nimo stephan [http://community.jboss.org/people/nimo22] created the discussion

jboss hotdeploy - where is the exploded war

To view the discussion, visit: http://community.jboss.org/message/584307#584307

--
Jboss hotdeploy.works, but I am wondering where jboss tools puts my (exploded) 
war-archive. 

I cannot find it in my jboss-directory. 
I have looked in these folders - the hot-deployed war file does not exist in 
these folders:
- ..\default\deploy
- ..\server\default\tmp
- ..\server\default\work\jboss.web\localhost


I am using Maven, Jboss 6.1 snapshot, weld, jboss tools 3.1
--

Reply to this message by going to Community
[http://community.jboss.org/message/584307#584307]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss Tools 3.2 CR1 @Inject Warnings

2011-01-31 Thread Alexey Kazakov
Alexey Kazakov [http://community.jboss.org/people/akazakov] created the 
discussion

Re: JBoss Tools 3.2 CR1 @Inject Warnings

To view the discussion, visit: http://community.jboss.org/message/584308#584308

--
It seems that some Eclipse WTP (Web Tools) plugins are missing. What 
destribution of Eclipse are you using? Eclipse for EE developers or just plain 
Eclipse + JBoss Tools + required dependencies installed from update site?
See  https://issues.jboss.org/browse/JBIDE-8225 
https://issues.jboss.org/browse/JBIDE-8225 for details of this issue.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584308#584308]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: jboss hotdeploy - where is the exploded war

2011-01-31 Thread Max Rydahl Andersen
Max Rydahl Andersen 
[http://community.jboss.org/people/max.andersen%40jboss.com] created the 
discussion

Re: jboss hotdeploy - where is the exploded war

To view the discussion, visit: http://community.jboss.org/message/584309#584309

--
right click on the module in the server view and click Explore.

Then your default file manager should show up with the deployment directory.

btw. you can control all this in the server editor (double click the server) 
and state where you want it deploed - currently our default is to not to touch 
the default install so we don't accidentally pollute your server.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584309#584309]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Plugin required for ejb3 interceptors?

2011-01-31 Thread Kai Weingärtner
Kai Weingärtner [http://community.jboss.org/people/KaiWeing] created the 
discussion

Plugin required for ejb3 interceptors?

To view the discussion, visit: http://community.jboss.org/message/584310#584310

--
Hello,

I am trying to use ejb3 Interceptors with JBoss AS 5.1.0.GA.

Currently I am not sure when the ejb3 plugin is required, as JBoss AS 5.1 
already offers many ejb3 features (annotations, JPA, ...).

Do I need to install the ejb3 plugin (1.0.19) when I want to use ejb3 
interceptors? 

Another question is, does this void the support in JBoss EAP?

Thanks in advance for your help,
Kai
--

Reply to this message by going to Community
[http://community.jboss.org/message/584310#584310]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: jboss hotdeploy - where is the exploded war

2011-01-31 Thread nimo stephan
nimo stephan [http://community.jboss.org/people/nimo22] created the discussion

Re: jboss hotdeploy - where is the exploded war

To view the discussion, visit: http://community.jboss.org/message/584311#584311

--
The Explore-Button of Jboss tools targets this folder:

C:\workspaces\.metadata\.plugins\org.jboss.ide.eclipse.as.core\JBoss_6.1_Server1656454713082\deploy\mySite.war

but it does not contain any files besides the lib-folder.


btw. you can control all this in the server editor (double click the server) 
and state where you want it deploed - currently our default is to not to touch 
the default install so we don't accidentally pollute your server.

Thats interesting. So the default does not pollute my server, hence it is 
deployed there:

C:\workspaces\.metadata\.plugins\org.jboss.ide.eclipse.as.core\JBoss_6.1_Server1656454713082\deploy\mySite.war

Am I right?

When clicking the server-editor, then I can see that the server-behaviour is 
actually Local. So when changing it to Remote System Deployement target my 
jboss-deploy-directory. (btw, what is the difference between host Local and 
Windows ?)

Are there any other benefits of using Local instead of Remote System 
Deployement?
--

Reply to this message by going to Community
[http://community.jboss.org/message/584311#584311]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: How to fire action events in jBPM5 ? (BPMN2.0)

2011-01-31 Thread tomathome
tomathome [http://community.jboss.org/people/tomathome] created the discussion

Re: How to fire action events in jBPM5 ? (BPMN2.0)

To view the discussion, visit: http://community.jboss.org/message/584314#584314

--
Hi,

i tryed the screencast and everything works fine. Very importand is to put the

customEditor : org.drools.eclipse.flow.editor.GenericModelEditor,

line in your definitions file, which is unfortunatelly hidden in the screencast.


Is there any way to integrate my new created WorkItemHandler with guvnor? If I 
use the integration jbpm-console - guvnor - eclipse with the last 
jbpm5-snapshot, then I do not start the jbpm-engine for selfe and have no idea 
how to get the StatefullKnowledgeSession - WorkItemManager to register my 
created WorkItemHandler. Any Ideas?

Tom
--

Reply to this message by going to Community
[http://community.jboss.org/message/584314#584314]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Datasource Configuration] - MySQL problem with multiple instances of JBOSS

2011-01-31 Thread Unmesh Kulkarni
Unmesh Kulkarni [http://community.jboss.org/people/unmesh_kulkarni] created the 
discussion

MySQL problem with multiple instances of JBOSS

To view the discussion, visit: http://community.jboss.org/message/584318#584318

--
I have setup two IPs on my machine.

eth0  Link encap:Ethernet  HWaddr 00:0C:29:B3:6B:25
  inet addr:192.168.6.128  Bcast:192.168.6.255  Mask:255.255.255.0
  inet6 addr: fe80::20c:29ff:feb3:6b25/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:921323 errors:0 dropped:0 overruns:0 frame:0
  TX packets:127221 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000
  RX bytes:721968842 (688.5 MiB)  TX bytes:12898679 (12.3 MiB)

eth0:1    Link encap:Ethernet  HWaddr 00:0C:29:B3:6B:25
  inet addr:192.168.6.129  Bcast:192.168.6.255  Mask:255.255.255.0
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

I am starting up two instances of JBOSS AS 6.0.0 Final on the same server using 
-b option.

/etc/jboss-as/testenv1/bin/run.sh -c testenv1 -b 192.168.6.128
/etc/jboss-as/testenv2/bin/run.sh -c testenv2 -b 192.168.6.129

I have two databases, *testenv1*  *testenv2* on MySQL Server installed on same 
machine.

++
| Database   |
++
| information_schema |
| mysql  |
| test   |
| testenv1   |
| testenv2   |
++

Also I have two dedicated users testenv1 and testenv2 for connecting those 
databases.

+--+---+
| user | host  |
+--+---+
| admin    | % |
| root | 127.0.0.1 |
| *testenv1 | 192.168.6.128 |*
| *testenv2 | 192.168.6.129 |*
|  | JBOSS-SS  |
| root | JBOSS-SS  |
|  | localhost |
| root | localhost |
+--+---+


They have been setup such a way that testenv1 user will have access to tesnv1 
database from 192.168.6.128 and
testenv2 user will have access to testenv2 databse from 192.168.6.129.

I have attached datasource files which I am using.

Here is a code which i have deployed on both the servers for testing JDBC 
connectivity

 %

  DataSource ds = null;
  Connection con = null; 
  PreparedStatement pr = null; 
  InitialContext ic; 
  try {
  ic = new InitialContext();
  ds = (DataSource)ic.lookup( java:/MySqlDS );
  con = ds.getConnection(); 
  pr = con.prepareStatement(SELECT * FROM jdbctest);
  ResultSet rs = pr.executeQuery();
  while (rs.next()) {
  out.println(br  +rs.getString(comp_inst_status)); 
  }
  rs.close();
  pr.close();
  }catch(Exception e){
  out.println(Exception thrown  +e); 
  }finally{
  if(con != null){
  con.close();
 }  
} % 


When I access my JSP from first instance (i.e. 192.168.6.128 ) it works fine 
but when I access it from other server it fails. It gives following exception


*Caused by: java.sql.SQLException: Access denied for user 
'testenv2'@'**192.168.6.128**' (using password: YES)*
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1073) [:]
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3593) [:]
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3525) [:]
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:931) [:]
    at com.mysql.jdbc.MysqlIO.secureAuth411(MysqlIO.java:4031) [:]
    at com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1296) [:]
    at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2338) 
[:]
    at 
com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2371) [:]
    at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2163) 
[:]
    at com.mysql.jdbc.ConnectionImpl.init(ConnectionImpl.java:794) [:]
    at com.mysql.jdbc.JDBC4Connection.init(JDBC4Connection.java:47) [:]
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
Method) [:1.6.0_23]
    at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
 [:1.6.0_23]
    at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
 [:1.6.0_23]
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513) 
[:1.6.0_23]
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:407) [:]
    at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:378) 
[:]
    at 
com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:305) [:]


As the user testenv2 is not having access rights from *192.168.6.128* it throws 
exception.

But I have bound testenv2 instance on 192.168.6.129 but still it tries to 
access MySQL from 192.168.6.128.

Any idea if I am missing anything in configuration?
--

Reply to this message by going to Community

[jboss-user] [JBoss Tools] - JBoss Developer Studio 4 CR1 available on Early Access!

2011-01-31 Thread Max Rydahl Andersen
Max Rydahl Andersen 
[http://community.jboss.org/people/max.andersen%40jboss.com] modified the 
document:

JBoss Developer Studio 4 CR1 available on Early Access!

To view the document, visit: http://community.jboss.org/docs/DOC-16422

--
http://community.jboss.org/servlet/JiveServlet/showImage/38-2030-10503/earlyaccess.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-2030-10503/earlyaccess.png
 
The  http://devstudio.jboss.com/earlyaccess/ Early Access site for JBoss 
Developer Studio now contains CR1 free for download and if you want the JBoss 
Enterprise Application platform bundled you just need to and sign up for the 
early access program http://bit.ly/jbdevstudioea  here.
h3. Improvements
This release contains a few improvements over the last couple of betas that are 
worth mentioning.

Most of these stems from the change we made from using the horrible dropin 
feature of Eclipse to have a proper
P2 enabled Eclipse product build. This should make things like installation, 
startup and updates much smoother, simpler and in some cases faster.
h3. New Directory Layout
There is no longer a seperate eclipse directory; everything related to JBoss 
Developer Studio is now in the studio folder and
instead of using raw eclipse to start you now uses the jbdevstudio, 
jbdevstudio.exe or the JBoss Developer Studio.app dependent on your
platform to launch.

If you have installed the EAP bundle jboss-eap still lives in 
install/jboss-eap.
h3. Runtime Detection/Setup
You can still use the Server page in the installer to setup JBoss server 
runtimes, but all this that was previously isolated in the installer is now 
also available from inside JBoss Tools under the Preferences for JBoss Tools 
Runtime Detection. Here you can configure directories to scan for runtimes and 
it supports not only Server runtimes, but also standalone framework runtimes 
like Seam and Drools.
h3. Welcome Screen
You will also now be greeted with a new shiny Welcome Screen:

 
http://community.jboss.org/servlet/JiveServlet/showImage/102-16422-1-11276/jbds4_welcomescreen.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/102-16422-1-11276/450-294/jbds4_welcomescreen.png
 

...and of course the latest stable fixes and features from JBoss Tools 3.2.

Have fun!
--

Comment by going to Community
[http://community.jboss.org/docs/DOC-16422]

Create a new document in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=102containerType=14container=2128]
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: jboss hotdeploy - where is the exploded war

2011-01-31 Thread nimo stephan
nimo stephan [http://community.jboss.org/people/nimo22] created the discussion

Re: jboss hotdeploy - where is the exploded war

To view the discussion, visit: http://community.jboss.org/message/584321#584321

--
Unfortunately, when using Remote System Deployement, then after starting the 
server, I am not able to stop the server.  This error occurs:

Server JBoss 6.1 Server failed to stop.

When changing to Local, then Stop works.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584321#584321]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Remoting] - ClassCastException under heavy load

2011-01-31 Thread Markus Falk
Markus Falk [http://community.jboss.org/people/cornhoolio22] created the 
discussion

ClassCastException under heavy load

To view the discussion, visit: http://community.jboss.org/message/584322#584322

--
Hi,

I'm looking at the same problems as described here:
 http://community.jboss.org/thread/111357 
http://community.jboss.org/thread/111357

Under heavy load ClassCastExceptions are thrown.

The situation:
2 ears on one server (4.2.3, jbm 1.4.5, jboss-remoting 2.2.3.SP1) calling the 
same ejb on another appserver (same configuration) with the same value object.
When producing heavy load on ear 1 (10 threads parallel as clients) and then 
calling one time ear 2, a ClassCastException is thrown. Will list it below the 
text.

I found a fix for the problem in  https://issues.jboss.org/browse/JBREM-900 
https://issues.jboss.org/browse/JBREM-900. This fix seems not to be in the 
2.2.3SP1 nor in the 2.2.3.SP3 release. 

I also read in the JIRA ( http://community.jboss.org/message/583757#583757 
http://community.jboss.org/message/583757) that there will be a 2.2.3SP4 
release (hope soon ;-) ) and found a preversion from Ron ( 
https://issues.jboss.org/browse/JBREM-1144 
https://issues.jboss.org/browse/JBREM-1144). But the fix is also not in there 
(the test fails again).

When I use the 2.4.0.SP1 remoting version, the test succeeds. But the Messaging 
System is not able to work with this version, because of changes in the Client 
class (the connect method params were changed).

Is it possible, to release the Bugfix described in  
https://issues.jboss.org/browse/JBREM-900 
https://issues.jboss.org/browse/JBREM-900 with the 2.2.3.SP4 release?

Thx and Regards,
Markus


javax.ejb.EJBException: java.lang.ClassCastException: 

org.cornhoolio22.ejbclassloadertestservice.ejbclassloadertestservice_calledclient.dto.CalledDto
 cannot be cast to 
org.cornhoolio22.ejbclassloadertestservice.ejbclassloadertestservice_calledclient.dto.CalledDto
    at 
org.jboss.ejb3.tx.Ejb3TxPolicy.handleExceptionInOurTx(Ejb3TxPolicy.java:63)
    at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:83)
    at 
org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:191)
    at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
    at 
org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInterceptor.java:95)
    at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
    at 
org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62)
    at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
    at 
org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:77)
    at 
org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:110)
    at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
    at 
org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:46)
    at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
    at 
com.oneandone.coredev.swistec.cxfinterceptor.CxfInterceptorSpringBusCleanup.invoke(CxfInterceptorSpringBusCleanup.java:109)
    at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
    at 
org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106)
    at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
    at 
org.jboss.ejb3.stateless.StatelessContainer.dynamicInvoke(StatelessContainer.java:304)
    at org.jboss.aop.Dispatcher.invoke(Dispatcher.java:106)
    at 
org.jboss.aspects.remoting.AOPRemotingInvocationHandler.invoke(AOPRemotingInvocationHandler.java:82)
    at org.jboss.remoting.ServerInvoker.invoke(ServerInvoker.java:900)
    at 
org.jboss.remoting.transport.socket.ServerThread.processInvocation(ServerThread.java:634)
    at 
org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:409)
    at 
org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:176)
Caused by: java.lang.ClassCastException: 
org.cornhoolio22.ejbclassloadertestservice.ejbclassloadertestservice_calledclient.dto.CalledDto
 cannot be cast to 
org.cornhoolio22.ejbclassloadertestservice.ejbclassloadertestservice_calledclient.dto.CalledDto
    at $Proxy336.callService(Unknown Source)
    at 
org.cornhoolio22.ejbclassloadertestservice.ejbclassloadertestservice_callejb2.impl.ServiceBean.callService(ServiceBean.java:38)
    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:597)
    at 

[jboss-user] [JBoss Tools] - Re: JBoss Tools 3.2 CR1 @Inject Warnings

2011-01-31 Thread Sebastian Sachtleben
Sebastian Sachtleben [http://community.jboss.org/people/cosmostunes] created 
the discussion

Re: JBoss Tools 3.2 CR1 @Inject Warnings

To view the discussion, visit: http://community.jboss.org/message/584323#584323

--
I have started with the Eclipse EE and downloaded some plugins like m2eclipse, 
jboss tools and some others. 

I have allready installed the WTP  XML Editors and Tools!

Software:

  Common tools for jBPM 3 and jBPM 4    4.4.0.v20110121-0343-H66-CR1    
org.jboss.tools.jbpm.common.feature.feature.group
  Context and Dependency Injection Tools    1.1.0.v20110120-1439-H64-CR1    
org.jboss.tools.cdi.feature.feature.group
  Eclipse IDE for Java EE Developers    1.3.1.20100916-1202    epp.package.jee
  Eclipse Web Developer Tools    
3.2.2.v201008100100-7O7CFbKEMf84nUlEJyX7-SPQjhYZ    
org.eclipse.wst.web_ui.feature.feature.group
  Eclipse XML Editors and Tools    
3.2.2.v201008170029-7H7AFUQDxumQGOpBqffOY2f1qxDZ    
org.eclipse.wst.xml_ui.feature.feature.group
  FlexyCore Plug-in    1.2.11    FlexycoreCompiler.feature.group
  FreeMarker IDE    1.1.0.v20110121-0726-H27-CR1    
org.jboss.ide.eclipse.freemarker.feature.feature.group
  Hibernate Tools    3.4.0.v20110121-0725-H45-CR1    
org.hibernate.eclipse.feature.feature.group
  JBoss Archives Tools    3.2.0.v20110121-0238-H31-CR1    
org.jboss.ide.eclipse.archives.feature.feature.group
  JBoss BPEL Editor    1.0.0.v20110121-0324-H38-CR1    
org.jboss.tools.bpel.feature.feature.group
  JBoss Drools Core    5.2.0.v20110121-0640-H204    
org.drools.eclipse.feature.feature.group
  JBoss Drools Guvnor    5.2.0.v20110121-0640-H204    
org.guvnor.tools.feature.feature.group
  JBoss Drools Task    5.2.0.v20110121-0640-H204    
org.drools.eclipse.task.feature.feature.group
  JBoss ESB Tools    1.3.0.v20110121-0450-H58-CR1    
org.jboss.tools.esb.feature.feature.group
  JBoss Portlet    1.1.0.v20110121-0610-H33-CR1    
org.jboss.tools.portlet.feature.feature.group
  JBoss Runtime Detection Core    1.0.0.v20110121-0612-H30-CR1    
org.jboss.tools.runtime.core.feature.feature.group
  JBoss Tools Community Project Examples    1.1.0.v20110121-0430-H33-CR1    
org.jboss.tools.community.project.examples.feature.feature.group
  JBoss Tools RichFaces    3.2.0.v20110121-0816-H66-CR1    
org.jboss.tools.richfaces.feature.feature.group
  JBoss Tools Usage Reporting    1.0.0.v20110121-0418-H41-CR1    
org.jboss.tools.usage.feature.feature.group
  JBoss WebServices Tools    1.1.0.v20110120-2159-H75-CR1    
org.jboss.tools.ws.feature.feature.group
  JBossAS Tools    2.2.0.v20110119-2335-H86-CR1    
org.jboss.ide.eclipse.as.feature.feature.group
  jBPM 3 Tools Runtime    3.2.0.v20110121-0343-H66-CR1    
org.jboss.tools.jbpm3.feature.feature.group
  jBPM 4 Tools Runtime    4.0.0.v20110121-0343-H66-CR1    
org.jboss.tools.jbpm4.feature.feature.group
  jBPM Convert    1.0.0.v20110121-0343-H66-CR1    
org.jboss.tools.jbpm.convert.feature.feature.group
  JMX Console    1.1.0.v20110121-0332-H65-CR1    
org.jboss.tools.jmx.feature.feature.group
  Maven Integration for Eclipse (Required)    0.12.1.20110112-1712    
org.maven.ide.eclipse.feature.feature.group
  ModeShape JCR REST Tools for Eclipse    1.0.0.v20110121-0349-H47-CR1    
org.jboss.tools.modeshape.rest.feature.feature.group
  pi4soa Core    3.1.0.v20110121-0349-H198-CR1    
org.pi4soa.core.feature.feature.group
  Project Examples    1.2.0.v20110121-0430-H33-CR1    
org.jboss.tools.project.examples.feature.feature.group
  Runtime Initialization    1.2.0.v20110121-0612-H30-CR1    
org.jboss.tools.runtime.feature.feature.group
  Seam Tools    3.2.0.v20110121-0714-H64-CR1    
org.jboss.tools.seam.feature.feature.group
  Smooks Tools    1.1.0.v20110121-0624-H35-CR1    
org.jboss.tools.smooks.feature.feature.group
  Struts Tools    3.1.0.v20110119-1839-H35-CR1    
org.jboss.tools.struts.feature.feature.group
  Teiid DataTools Connectivity Feature    7.1.0.v20110121-0344-H74-CR1    
org.teiid.datatools.connectivity.feature.feature.group
  Teiid Designer    7.1.0.v20110121-0344-H74-CR1    
org.teiid.designer.feature.feature.group
  Teiid Designer Runtime    7.1.0.v20110121-0344-H74-CR1    
org.teiid.designer.runtime.feature.feature.group
  XULRunner    1.9.12.v20110120-1257-H48-CR1    
org.jboss.tools.xulrunner.feature.feature.group
--

Reply to this message by going to Community
[http://community.jboss.org/message/584323#584323]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Questions regarding the construction of forms (electronic forms)

2011-01-31 Thread nemesio freitas
nemesio freitas [http://community.jboss.org/people/nemesiofreitas] created the 
discussion

Questions regarding the construction of forms (electronic forms)

To view the discussion, visit: http://community.jboss.org/message/584325#584325

--
Hello, how are you?
 
In my organization we are wanting toadopt the jBPM5,but Istill have some 
questions regarding thistool.


I'veused the BonitaSoft andIntalio inother organizations. The jBPM also 
allowsthe construction of forms (electronic forms) forthe tasks performed by 
humans?


Howis it developing? Does anyone have any example for this question.



Another question, the jBPM enables simulation of processes modeled before their 
use in operations?

Thanks
Nemésio
--

Reply to this message by going to Community
[http://community.jboss.org/message/584325#584325]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Plugin required for ejb3 interceptors?

2011-01-31 Thread Carlo de Wolf
Carlo de Wolf [http://community.jboss.org/people/wolfc] created the discussion

Re: Plugin required for ejb3 interceptors?

To view the discussion, visit: http://community.jboss.org/message/584326#584326

--
Interceptors are supported in AS 5.1. The plugin contains additional bug fixes.

For EAP questions please contact support.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584326#584326]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: jboss hotdeploy - where is the exploded war

2011-01-31 Thread Max Rydahl Andersen
Max Rydahl Andersen 
[http://community.jboss.org/people/max.andersen%40jboss.com] created the 
discussion

Re: jboss hotdeploy - where is the exploded war

To view the discussion, visit: http://community.jboss.org/message/584327#584327

--
Local is what you use for local deployment; remote is for remote deployement - 
i.e. via ssh or ftp to remote servers.

p.s. nimo - it's really annoying you delete your posts instead of just 
following up on some mistake/additonal info - we get the mail, but the links 
all fail because you have deleted the posts - just a friendly reminder  ;)
--

Reply to this message by going to Community
[http://community.jboss.org/message/584327#584327]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Questions regarding the construction of forms (electronic forms)

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Questions regarding the construction of forms (electronic forms)

To view the discussion, visit: http://community.jboss.org/message/584330#584330

--
Hi there, 
jBPM5 provides you the APIs to create your custom forms backends interactions. 
For the front end you can choose the technology that you want. 
About the simulation, it depends on what you want. You can create Mock/Test 
Workitems and run your process in Test Environments to be able to see how the 
process behaves before putting it in production.
Please, let me know if I can help you with more doubts, that you have in order 
to adopt jBPM5.
Greetings!
--

Reply to this message by going to Community
[http://community.jboss.org/message/584330#584330]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: jboss hotdeploy - where is the exploded war

2011-01-31 Thread nimo stephan
nimo stephan [http://community.jboss.org/people/nimo22] created the discussion

Re: jboss hotdeploy - where is the exploded war

To view the discussion, visit: http://community.jboss.org/message/584333#584333

--
{quote}it's really annoying you delete your posts instead of just following up 
on some mistake/additonal info{quote}

Oh, Okay I will remember that in future, thanks for the tip.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584333#584333]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - JBoss Developer Studio 4 CR1 available on Early Access!

2011-01-31 Thread Max Rydahl Andersen
Max Rydahl Andersen 
[http://community.jboss.org/people/max.andersen%40jboss.com] created the blog 
post:

JBoss Developer Studio 4 CR1 available on Early Access!

To view the blog post, visit: 
http://community.jboss.org/community/tools/blog/2011/01/31/jboss-developer-studio-4-cr1-available-on-early-access

--
http://community.jboss.org/servlet/JiveServlet/showImage/38-2030-10503/earlyaccess.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/38-2030-10503/earlyaccess.png
 
The  http://devstudio.jboss.com/earlyaccess/ Early Access site for JBoss 
Developer Studio now contains CR1 free for download and if you want the JBoss 
Enterprise Application platform bundled you just need to and sign up for the 
early access program http://bit.ly/jbdevstudioea  here.
h3. Improvements
This release contains a few improvements over the last couple of betas that are 
worth mentioning.

Most of these stems from the change we made from using the horrible dropin 
feature of Eclipse to have a proper
P2 enabled Eclipse product build. This should make things like installation, 
startup and updates much smoother, simpler and in some cases faster.
h3. New Directory Layout
There is no longer a seperate eclipse directory; everything related to JBoss 
Developer Studio is now in the studio folder and
instead of using raw eclipse to start you now uses the jbdevstudio, 
jbdevstudio.exe or the JBoss Developer Studio.app dependent on your
platform to launch.

If you have installed the EAP bundle jboss-eap still lives in 
install/jboss-eap.
h3. Runtime Detection/Setup
You can still use the Server page in the installer to setup JBoss server 
runtimes, but all this that was previously isolated in the installer is now 
also available from inside JBoss Tools under the Preferences for JBoss Tools 
Runtime Detection. Here you can configure directories to scan for runtimes and 
it supports not only Server runtimes, but also standalone framework runtimes 
like Seam and Drools.
h3. Welcome Screen
You will also now be greeted with a new shiny Welcome Screen:

 
http://community.jboss.org/servlet/JiveServlet/showImage/102-16422-1-11276/jbds4_welcomescreen.png
  
http://community.jboss.org/servlet/JiveServlet/downloadImage/102-16422-1-11276/jbds4_welcomescreen.png
 

...and of course the latest stable fixes and features from JBoss Tools 3.2.

Have fun!
--

Comment by going to Community
[http://community.jboss.org/community/tools/blog/2011/01/31/jboss-developer-studio-4-cr1-available-on-early-access]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Will jbpm 5 be integrated in jboss esb?

2011-01-31 Thread Giovanni Marigi
Giovanni Marigi [http://community.jboss.org/people/hifly81] created the 
discussion

Re: Will jbpm 5 be integrated in jboss esb?

To view the discussion, visit: http://community.jboss.org/message/584340#584340

--
I think this must be a crucial issue for jbpm because next version of a soa 
platform must include jbpm5. It's not real to go on working with jbpm3 in soa 
jboss projects.

So IMHO jbpm5 must provide a handler to call a esb service in a synchronous way 
and in an asynchronous way (service orchestration)
From esb side, jboss esb must be able to start,stop,signal a jbpm5 process
jbpm5 in a soa fashion must provide a taklist web application that can be 
easily customized for customer needs (for example provide a maven profile to 
build a tasklist webapp with the logo of company and with specific css)

Giovanni
--

Reply to this message by going to Community
[http://community.jboss.org/message/584340#584340]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Will jbpm 5 be integrated in jboss esb?

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Will jbpm 5 be integrated in jboss esb?

To view the discussion, visit: http://community.jboss.org/message/584352#584352

--
Hi there,
I'm working and trying to help with Mule ESB integration withjBPM5 and Drools. 
The sync and async calls will be handled by thisintegration.
About the tasks list I'm not totally agree withthat. If you provide a web 
application, you need to choose atechnology. Let's say that we choose GWT, each 
company will be tied tothis technology, and they will need to have qualified 
people to adaptit to their company. if the company has all their solutions in 
struts2,that company can't adopt the generic task lists.
This is a complicate topic, but I'm sure that we can reach a good conclusion if 
we expose and share different point of views.
Right now the project expose very concrete APIs to build this task lists front 
ends without being restricted to any technology.
Greetings
--

Reply to this message by going to Community
[http://community.jboss.org/message/584352#584352]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Questions regarding the construction of forms (electronic forms)

2011-01-31 Thread nemesio freitas
nemesio freitas [http://community.jboss.org/people/nemesiofreitas] created the 
discussion

Re: Questions regarding the construction of forms (electronic forms)

To view the discussion, visit: http://community.jboss.org/message/584357#584357

--
Hello Mauricio

 Thanks for the replies.

 But with the forms I'm still in doubt, have any documents or examples, 
tutorials that I could rely.

  BPMS in other forms of construction was basically automatic, requiring little 
code development by the analyst.

 The intention was to produce forms, such as simple forms for applying for 
credit, with a label's, checkbox, etc etc, very simple forms.

 Everything will be of great help.
 Thanks
--

Reply to this message by going to Community
[http://community.jboss.org/message/584357#584357]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Issue in CR1 visual editor

2011-01-31 Thread Maxim Areshkau
Maxim Areshkau [http://community.jboss.org/people/mareshkau] created the 
discussion

Re: Issue in CR1 visual editor

To view the discussion, visit: http://community.jboss.org/message/584359#584359

--
I don't know why it showed initially just one tab, the correct logic of work 
shows tabs with error for now. Possibly for some reasons org.jboss.tools.vpe 
plugin hasn't been loaded first time.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584359#584359]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Questions regarding the construction of forms (electronic forms)

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Questions regarding the construction of forms (electronic forms)

To view the discussion, visit: http://community.jboss.org/message/584360#584360

--
jBPM5 provides you the mechanism to develop from simple to really complex 
stuff. It's very difficult to create generic software that can be adapted to 
every company requirements. I know that other BPMS generates for you the forms 
based on a selected technology, that if you want to change will be imposible to 
adopt that product. Using the APIs, (of course that you need to be a developer) 
but you will have the freedom to choose the best approach for your company.
jBPM5 right now provides the jBPM console that let you add ftl form for your 
customs tasks. This console is still under development but you can try it to 
see if it fits for your needs. I'm not a big fan of that kind of generic, 
locked in technology apps, but if it fits for you that's ok.
Greetings.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584360#584360]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - how to use escalation/deadline

2011-01-31 Thread Odelya Holiday
Odelya Holiday [http://community.jboss.org/people/odelyaholiday] created the 
discussion

how to use escalation/deadline

To view the discussion, visit: http://community.jboss.org/message/584364#584364

--
  Hi!

I need to use escalation/deadline for a task.

Which means,once a human task was reached but it wasn't completed until a 
certain time it will be escalated.

I saw in the source code that drools has something like Deadline Escalation but 
I didn't understand how to use it.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584364#584364]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Issue in CR1 visual editor

2011-01-31 Thread Maxim Areshkau
Maxim Areshkau [http://community.jboss.org/people/mareshkau] created the 
discussion

Re: Issue in CR1 visual editor

To view the discussion, visit: http://community.jboss.org/message/584365#584365

--
I have created an issue  https://issues.jboss.org/browse/JBIDE-8286 
https://issues.jboss.org/browse/JBIDE-8286, we will prevent org.jboss.tools.vpe 
plugin for loading. This plugin responsible for visual and preview tabs. So if 
it not be loaded, only source tab will be available.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584365#584365]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Port already in use: 1098 - URGENT

2011-01-31 Thread Tom Nelson
Tom Nelson [http://community.jboss.org/people/tomnelson] created the discussion

Re: Port already in use: 1098 - URGENT

To view the discussion, visit: http://community.jboss.org/message/584372#584372

--
I had a similar issue with port 1098 on an Windows XP box.  On AS 6, I could 
work around it by configuring the port to 10980 
./server/myapp/conf/bindingservice.beans/META-INF/bindings-jboss-beans.xml.  I 
then carefully observed port usage right after boot in tcpview.  I noticed that 
savroam.exe took 1098 for apparantly a few seconds and then released it -- 
but not really because JBoss could use it.  When I disabled this version of 
anti-virus the problem went away.  I believe this is a bug in 10.1.0.396 
Symantec Anti-Vrus.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584372#584372]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Defining users for TaskServer - jbpm5

2011-01-31 Thread Odelya Holiday
Odelya Holiday [http://community.jboss.org/people/odelyaholiday] created the 
discussion

Defining users for TaskServer - jbpm5

To view the discussion, visit: http://community.jboss.org/message/584376#584376

--
Hi!

I read in the documentation:


 Our implementation requires all users and groups to be predefined before 
 trying to assign a task to that user or group. So you need to make sure you 
 add the necessary users and group to the database using the 
 taskSession.addUser(user) and taskSession.addGroup(group) methods. Note that 
 you at least need an Administrator user as all tasks are automatically 
 assigned to this user as the administrator role.


I have a web application sort of like pet shop with user administration.

What if the administrator added a new user while there are still running 
processes on the server?

How should I handle it
--

Reply to this message by going to Community
[http://community.jboss.org/message/584376#584376]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Will jbpm 5 be integrated in jboss esb?

2011-01-31 Thread Giovanni Marigi
Giovanni Marigi [http://community.jboss.org/people/hifly81] created the 
discussion

Re: Will jbpm 5 be integrated in jboss esb?

To view the discussion, visit: http://community.jboss.org/message/584379#584379

--
Mauricio it's good that will be provided an integration with Mule but what 
about JBoss ESB? 
IMHO the future of jbpm5 must be inside a soa platform and the next one must be 
integrated with jbpm5.
So I think it should be considered primary to integrate jboss esb and jbpm than 
jbpm and mule.

About the task list; working with customers during these years I always faced 
the problem to build a web application for task list; basically the jbpm task 
list can be good but the customers wants for example remove red hat logos or 
use its own css.
So I don't ask too much :-)

Giovanni
--

Reply to this message by going to Community
[http://community.jboss.org/message/584379#584379]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Defining users for TaskServer - jbpm5

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Defining users for TaskServer - jbpm5

To view the discussion, visit: http://community.jboss.org/message/584380#584380

--
You can add new users on demand, there is no problem with that. When new users 
are added, if they belong to a group assigned in a task, they will be able to 
claim the task and work on it. There is no trouble with that. The only thing 
that you cannot do is to create an fixed assignment in your process to an 
unexisting user. Let's say you create the Activity1 and you assign it to 
Paul, but Paul doesn't exist yet, the task assignment will fail because Paul 
doesn't exist.
In the other hand if you define an Activity1 assigned to a group, let's say 
Group(Operator) then you can create Paul and if Paul belongs to the Operator 
group, he will be able to claim the task and work on it without troubles.
Greetings, hope it helps!
--

Reply to this message by going to Community
[http://community.jboss.org/message/584380#584380]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Will jbpm 5 be integrated in jboss esb?

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Will jbpm 5 be integrated in jboss esb?

To view the discussion, visit: http://community.jboss.org/message/584382#584382

--
Hi there, I'm doing the Mule integration as a community contribution, I don't 
even know the state of jboss esb, what are the supported versions and what 
about future roadmap for that product. Once I have a little bit of visibility 
about those topics I can work on JBoss integration as well.
There is no problem about that. 
About the task lists, as you mention there are some clients that only need to 
remove the company logo, and there are some clients that wants to improve 
everything there for real usage. I personally think that for real, big 
applications you need to create something from the scratch where you have 
control about the performance, the mechanisms used to interact with the server, 
etc. 

If you want to change the logo and the css for current tools, I think that you 
can do it right now, it's only to replace an image and the css files.. But we 
can improve that mechanisms as well. Feel free to create a jira issue for those 
topics.
Greetings!
--

Reply to this message by going to Community
[http://community.jboss.org/message/584382#584382]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Defining users for TaskServer - jbpm5

2011-01-31 Thread Odelya Holiday
Odelya Holiday [http://community.jboss.org/people/odelyaholiday] created the 
discussion

Re: Defining users for TaskServer - jbpm5

To view the discussion, visit: http://community.jboss.org/message/584385#584385

--
Thanks.

In the code I start the server like this:

taskService = new TaskService(emf, 
SystemEventListenerFactory.getSystemEventListener());
taskSession = taskService.createSession();
taskSession.addUser(myuser);
server = new MinaTaskServer(taskService);

and I invoke it only once - startup of application.

so you mean that I can write taskSession.addGroup(myuser); while the server is 
running will add it to db?
--

Reply to this message by going to Community
[http://community.jboss.org/message/584385#584385]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Defining users for TaskServer - jbpm5

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Defining users for TaskServer - jbpm5

To view the discussion, visit: http://community.jboss.org/message/584386#584386

--
Yes, it should work perfectly. The taskSession.addGroup(myuser) will endup 
doing a SQL query inside a database.. nothing more complicated than that.. and 
the assignments will be done at runtime, querying those tables.
Greetings. Hope it helps!
--

Reply to this message by going to Community
[http://community.jboss.org/message/584386#584386]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Using escalation for human task

2011-01-31 Thread Odelya Holiday
Odelya Holiday [http://community.jboss.org/people/odelyaholiday] created the 
discussion

Using escalation for human task

To view the discussion, visit: http://community.jboss.org/message/584387#584387

--
Hi!

I need to use escalation/deadline for a task.

Which means,once a human task was reached but it wasn't completed until a 
certain time it will be escalated.

I saw in the source code that drools has something like Deadline Escalation but 
I didn't understand how to use it.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584387#584387]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Using escalation for human task

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Using escalation for human task

To view the discussion, visit: http://community.jboss.org/message/584390#584390

--
Did you see the following tests?
 
https://github.com/krisv/jbpm/blob/master/jbpm-human-task/src/test/java/org/jbpm/task/service/TaskServiceEscalationBaseTest.java
 
https://github.com/krisv/jbpm/blob/master/jbpm-human-task/src/test/java/org/jbpm/task/service/TaskServiceEscalationBaseTest.java
 
https://github.com/krisv/jbpm/blob/master/jbpm-human-task/src/test/java/org/jbpm/task/service/mina/TaskServiceEscalationMinaTest.java
 
https://github.com/krisv/jbpm/blob/master/jbpm-human-task/src/test/java/org/jbpm/task/service/mina/TaskServiceEscalationMinaTest.java

and:
 
https://github.com/krisv/jbpm/blob/master/jbpm-human-task/src/test/resources/org/jbpm/task/QueryData_UnescalatedDeadlines.mvel
 
https://github.com/krisv/jbpm/blob/master/jbpm-human-task/src/test/resources/org/jbpm/task/QueryData_UnescalatedDeadlines.mvel

This is a low level test that shows how the Escalation works. If you can set up 
the project in your IDE and debug the tests you will find out how it works.
Greetings.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584390#584390]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: How to fire action events in jBPM5 ? (BPMN2.0)

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: How to fire action events in jBPM5 ? (BPMN2.0)

To view the discussion, visit: http://community.jboss.org/message/584394#584394

--
Hi there,
I'm not sure to understand your question. I'm not a guvnor /  jbpm console fan, 
but I think I can help you to solve the problem.
If you want to bind a workItemHandler to your knowledgeSession you can use the 
APIs:  ksession.getWorkItemManager().register(name, handler);
Greetings.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584394#584394]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Will jbpm 5 be integrated in jboss esb?

2011-01-31 Thread Giovanni Marigi
Giovanni Marigi [http://community.jboss.org/people/hifly81] created the 
discussion

Re: Will jbpm 5 be integrated in jboss esb?

To view the discussion, visit: http://community.jboss.org/message/584395#584395

--
Hi Mauricio,
regarding the task list app I agree with you that the most important issue is 
to provide an API to easily interact with task; that's a issue fully covered by 
jbpm...
anyway it happens that you want only customize the default web app only to 
adapt to customer templates (you don't want to modify its behaviour); why you 
need to modify the web app source code only for some layout configurations?

Giovanni
--

Reply to this message by going to Community
[http://community.jboss.org/message/584395#584395]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Plugin required for ejb3 interceptors?

2011-01-31 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Plugin required for ejb3 interceptors?

To view the discussion, visit: http://community.jboss.org/message/584396#584396

--
Please post the exact source code including the annotations on the bean class.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584396#584396]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Will jbpm 5 be integrated in jboss esb?

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Will jbpm 5 be integrated in jboss esb?

To view the discussion, visit: http://community.jboss.org/message/584397#584397

--
I think that you are using jBPM to just represent new business processes, or 
business processes that doesn't integrate already developed applications. In 
such situations, you want to change almost everything in the task lists 
interfaces, for example:
- To show extra information about the domain objects from old applications
- To change the way that the task list filter and show the important information
- To extend the way that each activity task form shows specific information and 
the communication with external applications to be able to query or get 
external information.

These kind of features really complicate the integration. You can imagine if 
all the other (old) applications are not developed using GWT, it becomes a 
nightmare. 
As far as I understand, you want to have a simple interface, like the one 
provided now, but with some extra configurations to do minimal changes in the 
layout, the css and the logo right? We can work on that if you want. 
Greetings.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584397#584397]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: jBPM-5.0-CR1 is out

2011-01-31 Thread David Lambert
David Lambert [http://community.jboss.org/people/davidl2] created the discussion

Re: jBPM-5.0-CR1 is out

To view the discussion, visit: http://community.jboss.org/message/584404#584404

--
Trying it out,  I get an error in the download.drools.governor task...

download.drools.guvnor:
  [echo] Getting Drools Guvnor ...
  [get] Getting:  
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
  [get] To: C:\temp\jbpm-installer\lib\drools-5.2.0-SNAPSHOT-guvnor.war 
  [get] Error opening connection java.io.FileNotFoundException:  
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
  [get] Error opening connection java.io.FileNotFoundException:  
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
  [get] Error opening connection java.io.FileNotFoundException:  
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
  [get] Can't get  
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 to C:\temp\jbpm-installer\lib\drools-5.2.0-SNAPSHOT-guvnor.war   

BUILD FAILED 
C:\temp\jbpm-installer\build.xml:215: Can't get  
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 to C:\temp\jbpm-installer\lib\drools-5.2.0-SNAPSHOT-guvnor.war 

Is this expected?  Should I set the drools.version property to something else?

--
DLL
--

Reply to this message by going to Community
[http://community.jboss.org/message/584404#584404]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Using escalation for human task

2011-01-31 Thread Odelya Holiday
Odelya Holiday [http://community.jboss.org/people/odelyaholiday] created the 
discussion

Re: Using escalation for human task

To view the discussion, visit: http://community.jboss.org/message/584405#584405

--
Thanks I saw it.

and I understand that actually creates new task (s) and assign for it deadline 
and escalations.

What if I want to use the BPMN flow editor to assign deadline and escalation 
per human task?

I don't see any deadlines property as there is task!

do you recommend to use on entry action and on exit actions to assign it?
--

Reply to this message by going to Community
[http://community.jboss.org/message/584405#584405]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Will jbpm 5 be integrated in jboss esb?

2011-01-31 Thread Giovanni Marigi
Giovanni Marigi [http://community.jboss.org/people/hifly81] created the 
discussion

Re: Will jbpm 5 be integrated in jboss esb?

To view the discussion, visit: http://community.jboss.org/message/584407#584407

--
exactly mauricio only a way to have a little bit of css and image configuration 
on the existing web app. I think it could be useful.
when there is extra work to do on task list here we come as system integrator 
:-)
h2. existing
--

Reply to this message by going to Community
[http://community.jboss.org/message/584407#584407]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: How to fire action events in jBPM5 ? (BPMN2.0)

2011-01-31 Thread tomathome
tomathome [http://community.jboss.org/people/tomathome] created the discussion

Re: How to fire action events in jBPM5 ? (BPMN2.0)

To view the discussion, visit: http://community.jboss.org/message/584409#584409

--
Thanks @Mauricio,

My question was exacle how to get the ksession instance, if the jBPM engine 
was started by the jBPM console and is running in the web context.You start 
your jBPM process for selve und so you have the full controll to the jBPM API. 
For me the jBPM engine is just the blackbox running and managed by the jBPM 
console.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584409#584409]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: jBPM-5.0-CR1 is out

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: jBPM-5.0-CR1 is out

To view the discussion, visit: http://community.jboss.org/message/584413#584413

--
Hi there,
You need to change the url inside the build.properties file from:

drools.url = 
 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target

 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 
 

to:

 
http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/trunk/target/drools-5.2.0-SNAPSHOT-guvnor.war
 http://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/target

Without /trunk/ and it will work.
Greetings
--

Reply to this message by going to Community
[http://community.jboss.org/message/584413#584413]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: How to fire action events in jBPM5 ? (BPMN2.0)

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: How to fire action events in jBPM5 ? (BPMN2.0)

To view the discussion, visit: http://community.jboss.org/message/584417#584417

--
Ok, now I understand your problem. So there are basically two options:
1) Expose the jBPM-Console created sessions, so you can interact with them 
using a remote APIs
2) Let the jBPM-Console use sessions that were created from outside 
applications, or add the posibility to register custom work item handlers to 
the sessions created by the jbpm-console.

About 1, there is a way to do that already using Drools Server. But we need to 
integrate it with the jBPM-console

About 2, I'm 90% sure that you can do it right now.. I've already seen some 
questions about that, but I don't remember the solution right now.. I probably 
will take a look on that..

Hope it helps, if you don't find the solution, please report a jira issue with 
your requirement as a feature request, we will evaluate it and work on it.
Greetings!
--

Reply to this message by going to Community
[http://community.jboss.org/message/584417#584417]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Plugin required for ejb3 interceptors?

2011-01-31 Thread Kai Weingärtner
Kai Weingärtner [http://community.jboss.org/people/KaiWeing] created the 
discussion

Re: Plugin required for ejb3 interceptors?

To view the discussion, visit: http://community.jboss.org/message/584424#584424

--
The Interceptor code is complete as posted. 

The EJB:

@javax.ejb.Stateless(name = ejb/MyService)
public class MyServiceImpl implements MyService {

    @Override
    @javax.ejb.TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    @javax.interceptor.Interceptors({CallMonitoringInterceptor.class})
    public Object service(String param1) throws Exception {
// ...
    }
}

and

@javax.ejb.Local
public interface MyService {
    Object service(String param1) throws Exception;
}
--

Reply to this message by going to Community
[http://community.jboss.org/message/584424#584424]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Plugin required for ejb3 interceptors?

2011-01-31 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Plugin required for ejb3 interceptors?

To view the discussion, visit: http://community.jboss.org/message/584425#584425

--
That should have worked, assuming that you have correctly looked up the EJB via 
JNDI and invoked on it. What does your client code look like?
--

Reply to this message by going to Community
[http://community.jboss.org/message/584425#584425]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Datasource Configuration] - Re: MySQL problem with multiple instances of JBOSS

2011-01-31 Thread Wolf-Dieter Fink
Wolf-Dieter Fink [http://community.jboss.org/people/wdfink] created the 
discussion

Re: MySQL problem with multiple instances of JBOSS

To view the discussion, visit: http://community.jboss.org/message/584430#584430

--
As I can see ds1 and ds2 connect the same IP but the different user.
Is it a simple typo?
--

Reply to this message by going to Community
[http://community.jboss.org/message/584430#584430]

Start a new discussion in Datasource Configuration at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2077]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss AOP] - Re: The reuseJBoss AOP

2011-01-31 Thread Flavia Rainone
Flavia Rainone [http://community.jboss.org/people/flavia.rainone%40jboss.com] 
created the discussion

Re: The reuseJBoss AOP

To view the discussion, visit: http://community.jboss.org/message/584431#584431

--
Can you explain better? Are you saying that you want to have something like a 
pointcut that checks the value of the variable of class1 before deciding if the 
mixin will apply to class 2?

If that's not what you are trying to say, maybe a piece of code (even if it 
doesn't compile with JBoss AOP) showing what you want to do would help a lot!

Anyway, what is the relationship of class1 and class2? We need someway of going 
from Class2 to Class1. It is ok if this requires using package protected 
methods and fields.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584431#584431]

Start a new discussion in JBoss AOP at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2027]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Plugin required for ejb3 interceptors?

2011-01-31 Thread Kai Weingärtner
Kai Weingärtner [http://community.jboss.org/people/KaiWeing] created the 
discussion

Re: Plugin required for ejb3 interceptors?

To view the discussion, visit: http://community.jboss.org/message/584435#584435

--
I cannot really say why, but now it acutally works.  :8} 

Perhaps your karma helped :-)

Anyway, thanks for your support.

Kai
--

Reply to this message by going to Community
[http://community.jboss.org/message/584435#584435]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Plugin required for ejb3 interceptors?

2011-01-31 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Plugin required for ejb3 interceptors?

To view the discussion, visit: http://community.jboss.org/message/584446#584446

--
 Kai Weingärtner wrote:
 
 I cannot really say why, but now it acutally works.  :8} 
 
Good to know!  :)
--

Reply to this message by going to Community
[http://community.jboss.org/message/584446#584446]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Is the web-based editor customizable?

2011-01-31 Thread new-comer
new-comer [http://community.jboss.org/people/new-comer] created the discussion

Is the web-based editor customizable?

To view the discussion, visit: http://community.jboss.org/message/584450#584450

--
Hi,

We are very interested in using jBPM as our BPM solution as part of our 
product, but we have a few questions:
1. what exactly the reason that IE9 does not support the editor since IE9 
claims supporting HTML5?
2. we would like to limit some functions in the editor because we currently 
only support certain types of workflows, is it configurable what kind of 
workflow we support? Or are there templates that we can use to limit the 
workflow configuration?
3. is it possible to customize the workflow designer UI based on the user type?

Thank you very much if you can answer my above questions.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584450#584450]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Jbpm 5 user form variables

2011-01-31 Thread rodri tes23
rodri tes23 [http://community.jboss.org/people/rodri] created the discussion

Re: Jbpm 5 user form variables

To view the discussion, visit: http://community.jboss.org/message/584453#584453

--
Matthew Wojtowicz, rafitanba,

What are versions of JBPM/Drools you have have used?
I used the same script node and the map Matthew suggested ( 
http://community.jboss.org/thread/161936?tstart=0 
http://community.jboss.org/thread/161936?tstart=0)

It did not work and I keep getting the following message while loading the bpmn 
file.

'There is no ID/IDREF binding for IDREF 'myMap'.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584453#584453]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Javassist] - Wrapping existing object inside a proxy

2011-01-31 Thread Ragnar Rova
Ragnar Rova [http://community.jboss.org/people/rrva] created the discussion

Wrapping existing object inside a proxy

To view the discussion, visit: http://community.jboss.org/message/584462#584462

--
Instead of creating a proxy instance of a given class, is it possible to create 
a proxy instance for a given object instance?

When inspecting the proxy using reflection, the same fields should be present.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584462#584462]

Start a new discussion in Javassist at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2062]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Jbpm 5 user form variables

2011-01-31 Thread Matthew Wojtowicz
Matthew Wojtowicz [http://community.jboss.org/people/mattu16] created the 
discussion

Re: Jbpm 5 user form variables

To view the discussion, visit: http://community.jboss.org/message/584463#584463

--
You need to initialize the variables for the process. Also the map is called 
map not myMap in my example.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584463#584463]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Web Services] - ssl error on webservice invocation on jboss

2011-01-31 Thread jmartin amaris
jmartin amaris [http://community.jboss.org/people/martin12] created the 
discussion

ssl error on webservice invocation on jboss

To view the discussion, visit: http://community.jboss.org/message/584468#584468

--
Hi, I'm using jboss 5.1.0 GA as an application server, I have two war 
applications deployed, both running perfectly. One application, app1.war, it's 
a web application, that, in some point invokes a webservice from the second 
one, app2.war. everything works fine until ssl is used.


Both applications are spring java based apps.


The correspondant keystore and truststore are properly installed, in order to a 
web browser can access the app1.war in its especified url.


The problem comes up, when the app2 webservice it's invoked from the app1, ssl 
error occurrs


Is it there solution for this situation? What's the necessary ssl configuration 
on the jboss server? 


Thanks in advance
--

Reply to this message by going to Community
[http://community.jboss.org/message/584468#584468]

Start a new discussion in JBoss Web Services at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2044]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Jbpm 5 user form variables

2011-01-31 Thread rodri tes23
rodri tes23 [http://community.jboss.org/people/rodri] created the discussion

Re: Jbpm 5 user form variables

To view the discussion, visit: http://community.jboss.org/message/584470#584470

--
Thanks for your reply.

I renamed the map to map and also initialized the variables as follows:


java.util.HashMap map = new java.util.HashMap();
 map.put(id,1);
map.put(priority,High);
map.put(quantity,100);
kcontext.setVariable(map, map);

I still get the same errors such as and  I could not access the variables from 
ftl
(null: 127, 15): cvc-id.1: There is no ID/IDREF binding for IDREF 'map'.
Could not find variable map
Using process-level scope
Could not find variable scope for variable map
when trying to execute Work Item Human Task
Continuing without setting parameter.




I am not sure what I am missing here (I tried with the SNAPSHOT code). Attached 
please find the complete bpmn file I used.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584470#584470]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Defining users for TaskServer - jbpm5

2011-01-31 Thread Cristiano Nicolai
Cristiano Nicolai [http://community.jboss.org/people/cristiano.nicolai] created 
the discussion

Re: Defining users for TaskServer - jbpm5

To view the discussion, visit: http://community.jboss.org/message/584474#584474

--
I'm wondering if there is a better way to deal with users and groups. My point 
is, and probably is a very common use case, to have users and groups in a 
external source, like DB or LDAP, forcing a replication of this data to 
TaskServer DB.

Any thought?
--

Reply to this message by going to Community
[http://community.jboss.org/message/584474#584474]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Defining users for TaskServer - jbpm5

2011-01-31 Thread Mauricio Salatino
Mauricio Salatino [http://community.jboss.org/people/salaboy21] created the 
discussion

Re: Defining users for TaskServer - jbpm5

To view the discussion, visit: http://community.jboss.org/message/584477#584477

--
Yes of course, that's why all the classes inside:  
https://github.com/krisv/jbpm/tree/master/jbpm-human-task/src/main/java/org/jbpm/userprofile
 
https://github.com/krisv/jbpm/tree/master/jbpm-human-task/src/main/java/org/jbpm/userprofile
exist. They abstract the model of users and these classes can be extended to 
wrap your user/group models. Please take a look at the comments in the classes, 
those probably are the answer to your question.
Greetings!
--

Reply to this message by going to Community
[http://community.jboss.org/message/584477#584477]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Questions regarding the construction of forms (electronic forms)

2011-01-31 Thread bpmn2user
bpmn2user [http://community.jboss.org/people/bpmn2user] created the discussion

Re: Questions regarding the construction of forms (electronic forms)

To view the discussion, visit: http://community.jboss.org/message/584489#584489

--
Hi Nemésio,

The intention was to produce forms, such as simple forms for applying for 
credit, with a label's, checkbox, etc etc, very simple forms.

You can generate these forms using Freemarker 
(http://freemarker.sourceforge.net/) templates.There is an Eclipse plug-in for 
Freemarker that you might be able to use.
You might find the basic documentation to use the templates with human tasks 
here:
https://hudson.jboss.org/hudson/job/jBPM5/lastSuccessfulBuild/artifact/target/jbpm-5.0-SNAPSHOT-docs-build/jbpm-docs/html/ch08.html
--

Reply to this message by going to Community
[http://community.jboss.org/message/584489#584489]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - jBPM3 Target Databases

2011-01-31 Thread Alejandro Guizar
Alejandro Guizar [http://community.jboss.org/people/alex.guizar%40jboss.com] 
modified the document:

jBPM3 Target Databases

To view the document, visit: http://community.jboss.org/docs/DOC-12860

--
This matrix below shows the databases under  
http://hudson.qa.jboss.com/hudson/view/JBPM3/ Continuous Integration as of each 
release. Please monitor  http://jira.jboss.org/jira/browse/JBPM-1356 JBPM-1356 
for progress on coverage for other databases. If you plan to extend the matrix, 
follow the procedure for  http://community.jboss.org/docs/DOC-12931 Adding a 
Database Axis.

|| jbpm || soa-p || db2 || hsqldb || mssql || mysql || oracle || postgresql || 
sybase ||
| 3.2.10 | 5.1.0 | X | X | X | X | X | X | X |
| 3.2.9 | 5.0.2, 4.3 CP04 | X | X | X | X | X | X | X |
| 3.2.8 |  | X | X | X | X | X | X | X |
| 3.2.7 | 5.0.1, 5.0.0, 4.3 CP03, 4.3 CP02 | X | X |  | X | X | X | X |
| 3.2.6 | 
 | 
 | X | 
 | X | 
 | X | X |
| 3.2.5 SP5 | 4.3 CP01, 4.2 CP04 | 
 | X | 
 | X | 
 | X | X |
| 3.2.5 | 
 | 
 | X | 
 | X | 
 | 
 | X |
| 3.2.4 | 
 | 
 | X | 
 | X | 
 | 
 | X |
| 3.2.3 | 
 | 
 | X | 
 | 
 | 
 | 
 | 
 |

Additional database information
*  http://community.jboss.org/docs/DOC-12936 jBPM 3.2.x on Sybase ASE 15
--

Comment by going to Community
[http://community.jboss.org/docs/DOC-12860]

Create a new document in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=102containerType=14container=2034]
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: JBPM5 - User form variable not accessible in ftl - CR1/SNAPSHOT

2011-01-31 Thread bpmn2user
bpmn2user [http://community.jboss.org/people/bpmn2user] created the discussion

Re: JBPM5  - User form variable not accessible in ftl - CR1/SNAPSHOT

To view the discussion, visit: http://community.jboss.org/message/584495#584495

--
You need to add 'myMap' variable. 
After you add this variable, you would see something like below in your bpmn 
file.
itemDefinition id=_mapItem structureRef=java.util.HashMap /
...
!-- process variables --
    property id=myMap itemSubjectRef=_mapItem/
--

Reply to this message by going to Community
[http://community.jboss.org/message/584495#584495]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Web Services] - Re: getPort() call takes too long

2011-01-31 Thread Michal Wroblewski
Michal Wroblewski [http://community.jboss.org/people/michal.wroblewski] created 
the discussion

Re: getPort() call takes too long

To view the discussion, visit: http://community.jboss.org/message/584497#584497

--
In my situation it was problem with version of stax jar. It is located in JBoss 
lib directory. I had to add this dependency to my pom.xml

 dependency
    groupIdstax/groupId
    artifactIdstax/artifactId
    version1.2.0/version
    scopeprovided/scope
    /dependency

It resolved my problem. 

All works fine.

Regards
--

Reply to this message by going to Community
[http://community.jboss.org/message/584497#584497]

Start a new discussion in JBoss Web Services at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2044]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - jBPM3 Target Databases

2011-01-31 Thread Alejandro Guizar
Alejandro Guizar [http://community.jboss.org/people/alex.guizar%40jboss.com] 
modified the document:

jBPM3 Target Databases

To view the document, visit: http://community.jboss.org/docs/DOC-12860

--
This matrix below shows the databases under  
http://hudson.qa.jboss.com/hudson/view/JBPM3/ Continuous Integration as of each 
release. If you plan to extend the matrix, follow the procedure for  
http://community.jboss.org/docs/DOC-12931 Adding a Database Axis.

|| *jbpm* || *db2* || *hsqldb* || *mssql* || *mysql* || *oracle* || *postgresql
* || *sybase
* ||
| 3.2.10 | X | X | X | X | X | X | X |
| 3.2.9 | X | X | X | X | X | X | X |
| 3.2.8 | X | X | X | X | X | X | X |
| 3.2.7 | X | X | 
 | X | X | X | X |
| 3.2.6 | 
 | X | 
 | X | 
 | X | X |
| 3.2.5 SP5 | 
 | X | 
 | X | 
 | X | X |
| 3.2.5 | 
 | X | 
 | X | 
 | 
 | X |
| 3.2.4 | 
 | X | 
 | X | 
 | 
 | X |
| 3.2.3 | 
 | X | 
 | 
 | 
 | 
 | 
 |

Additional database information
*  http://community.jboss.org/docs/DOC-12936 jBPM 3.2.x on Sybase ASE 15
--

Comment by going to Community
[http://community.jboss.org/docs/DOC-12860]

Create a new document in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=102containerType=14container=2034]
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - jBPM3 Platform Support

2011-01-31 Thread Alejandro Guizar
Alejandro Guizar [http://community.jboss.org/people/alex.guizar%40jboss.com] 
modified the document:

jBPM3 Platform Support

To view the document, visit: http://community.jboss.org/docs/DOC-13763

--
The information presented in this document applies to *release 3.2.10*.
h3. SOA Platform Releases
Below is a table showing the latest jBPM versions and their corresponding SOA 
Platform releases.

|| jBPM || SOA-P ||
| 3.2.10 | 5.1.0 |
| 3.2.9 | 5.0.2, 4.3 CP04 |
| 3.2.8 | 
 |
| 3.2.7 | 5.0.0, 5.0.1, 4.3 CP02, 4.3 CP03 |
| 3.2.6 | 
 |
| 3.2.5 SP5 | 4.3 CP01, 4.2 CP04 |
| 3.2.5 | 
 |
| 3.2.4 | 
 |
| 3.2.3 | 
 |
| 3.2.2 SOA 4.2 r2494 | 4.3 GA |
| 3.2.2 SOA 4.2.0 CP03 | 4.2 CP03 |
| 3.2.2 SOA 4.2.0 CP02 | 4.2 CP02 |
| 3.2.2 | 
 |

h3. Operating Systems
jBPM is 100% pure Java and therefore interoperable with most operating systems 
capable of running a Java Virtual Machine (JVM), including Linux, UNIX and 
Windows.
h3. Java Virtual Machines
jBPM has been verified to run on the JVMs listed below.
* Sun JRE 1.4.2, 1.5.0 and 1.6.0
* OpenJDK 1.6.0
h3. Databases
jBPM is evaluated with the following relational database systems.

|| Database System || JDBC Driver || Dialect ||
| DB2 9.1.3 | IBM DB2 JDBC Driver 3.1.57 | org.hibernate.dialect.DB2Dialect |
| MS SQL Server 9.00.2047 | MS SQL 2005 Driver 1.2.2828.100 | 
org.hibernate.dialect.SQLServerDialect |
| MySQL 5.0.27 | MySQL JDBC Driver 5.0.7 | org.jbpm.db.hibernate.MySQLDialect |
| PostgreSQL 8.2.3 | PostgreSQL Driver 8.2 JDBC3 (build 504) | 
org.hibernate.dialect.PostgreSQLDialect |
| Sybase ASE 15.0.2 | jConnect for JDBC 6.05 (Build 26023) | 
org.jbpm.db.hibernate.SybaseDialect |
| Oracle 10g Release 10.2.0.4.0 | Oracle JDBC Driver 10.2.0.4.0 | 
org.hibernate.dialect.Oracle9Dialect |

Source: http://community.jboss.org/docs/DOC-12860 jBPM3 Target Databases
h3. Containers
jBPM is compatible with the containers listed below. Bear in mind that jBPM 
works outside of a container as well.

|| Server || Primary JVM
 ||
| JBoss AS 4.0.5 | Sun JRE 1.4.2 |
| JBoss AS 4.2.3 | Sun JRE 1.5.0 |
| JBoss AS 5.0.1 | Sun JRE 1.6.0 |
| JBoss AS 5.1.0 | Sun JRE 1.6.0 |
| Tomcat 6.0 | Sun JRE 1.5.0 |
| Tomcat 5.5 | Sun JRE 1.4.2 |

Source: http://community.jboss.org/docs/DOC-12859 jBPM3 Target Containers
h3. Optional Modules
jBPM comes with the following optional modules, provided in the hope they will 
be useful, but without any support guarantee.

|| Module || Description ||
| Enterprise | Message and scheduler services based on JMS and EJB timers 
respectively |
| Simulation | Process analysis and optimization tool donated by Camunda GmbH 
(http://www.camunda.com/) |
--

Comment by going to Community
[http://community.jboss.org/docs/DOC-13763]

Create a new document in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=102containerType=14container=2034]
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Console Server

2011-01-31 Thread bpmn2user
bpmn2user [http://community.jboss.org/people/bpmn2user] created the discussion

Re: Console Server

To view the discussion, visit: http://community.jboss.org/message/584504#584504

--
Yes! You need to have the mina TaskService running.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584504#584504]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Multicasting with JBoss

2011-01-31 Thread Willem Noorduin
Willem Noorduin [http://community.jboss.org/people/willemnoorduin] created the 
discussion

Multicasting with JBoss

To view the discussion, visit: http://community.jboss.org/message/584511#584511

--
I noticed that you can start JBoss with the -u MULTICAST-ADDRESS -m 
MULTICAST-PORT flags. Can someone tell me what information is transmitted 
over this multicast address. Clustering seems to work fine without these flags 
(for instance, farm deployments), but I suspect it has something to do with 
Keeping each other alive/
--

Reply to this message by going to Community
[http://community.jboss.org/message/584511#584511]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Multicasting with JBoss

2011-01-31 Thread Wolf-Dieter Fink
Wolf-Dieter Fink [http://community.jboss.org/people/wdfink] created the 
discussion

Re: Multicasting with JBoss

To view the discussion, visit: http://community.jboss.org/message/584516#584516

--
With -u -m and -g you tell JBoss (JGroups) how to join a cluster.
If all three values the same (multicastaddress/port and partition name) two (or 
more) instances will build a cluster.

The multicast will used by JGroups to join in or part from a cluster if the 
instance is started or stopped.
During the lifetime controlinformations are send to check whether all members 
are alive.
--

Reply to this message by going to Community
[http://community.jboss.org/message/584516#584516]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user