[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JVM Crash with JBoss 4.2.2

2008-09-12 Thread jaikiran
This is a JVM crash which should be reported to Sun. You can even try downloading the latest version available and see if that fixes the problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176295#4176295 Reply to the post : http://www.jboss.com/index.htm

[jboss-user] [Beginners Corner] - Re: App priority

2008-09-12 Thread jaikiran
"acastanheira2001" wrote : Is there a way to set different priorities for each of them? | | Can you please elaborate on what you mean by "priorities for each application"? Are you looking for order of deployment of each of these applications or something else? Also please provide some mo

[jboss-user] [EJB 3.0] - Re: Is annotation enough for deploying a session bean?

2008-09-12 Thread jaikiran
The annotations are enough to deploy an EJB3 in JBoss-4.2.x. However injection of EJBs into servlets is not supported in JBoss-4.2.x. Instead you could do a lookup of the bean in the servlet. See this for more details http://www.jboss.com/index.html?module=bb&op=viewtopic&t=107353 View the orig

[jboss-user] [JBossWS] - Re: org.jboss.ws.WSException: Cannot find port in wsdl:

2008-09-12 Thread sr_ren
Since I did not get reply and I had to work on the problem, we figured out what is JBoss requirement to fix the problem @javax.jws.WebService(endpointInterface="org.example.duke.AddNumbersPortType", targetNamespace = "http://duke.example.org";, portName="AddNumbersPort") It seems targetNamespa

[jboss-user] [Beginners Corner] - Re: why Session would close under stress test?

2008-09-12 Thread gan.gary
"francis17101970" wrote : You should provide some more info about your system. the log file is rolled, since the log4j with FileRolling is used. I have posted the earliest error logged. "francis17101970" wrote : You should provide some more info about your system. | Anyway it is it seems that

[jboss-user] [JBoss/Spring Integration] - help with Jboss datasource lookup using springs

2008-09-12 Thread kaarthiak
hi all I am trying to use springs JndiObjectFactoryBean to get a datasource connection through Jboss connection pool. When ever i do so i get an error java: not bound on starting my application. When i remove the the spring initialization server starts up fine and binds my data source correctly.

[jboss-user] [JBoss Portal] - Re: Take 3 - Relationship between jboss-app.xml and *-object

2008-09-12 Thread [EMAIL PROTECTED]
While we would like to be able to answer each and every post on the forum, it's just not humanly possible. I think you'd agree that you'd rather have us spend our time working on the project than answering every possible questions on the forums. This said, I looked at your first post and concl

[jboss-user] [JBoss Portal] - Re: How to develop portlet with richfaces?

2008-09-12 Thread DanielK
Thanks for this site, but i found this: anonymous wrote : The only component that isn't available is the file upload component. It is scheduled to be available in the next portlet bridge release sometime early September. Like i also asked in RichFaces-Forum, is it now possible to use in JBoss

[jboss-user] [JBoss Portal] - Re: JBoss Portal and mobile devices?

2008-09-12 Thread psevestre
I think on two different ways to accomplish this: 1. mod_rewrite magic If you use Apache in front of JBoss, you can use mod_rewrite in order to redirect the user to different portals depending on user agent. You have more customization, but keeping the content in sync for both portals can be c

[jboss-user] [EJB 3.0] - Is annotation enough for deploying a session bean?

2008-09-12 Thread dan jboss
Hi, I am using jboss-4.2.3.GA with Java 5. I have created a session bean like this: @Stateless | @Local( { MyBeanInterface.class }) | public class MyBean implements MyBeanLocal, MyBeanInterface { | ... | | } | Also created a servlet like this: public class MyServlet extends HttpSe

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: deployment of ear containing jars + sar

2008-09-12 Thread genman
Add the jars to the META-INF/Manifest of the .ear file. Be doubly sure have "Classpath: " in there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176279#4176279 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176279 __

[jboss-user] [JBoss Portal] - Re: How to develop portlet with richfaces?

2008-09-12 Thread wesleyhales
http://www.infoq.com/articles/jsf-ajax-seam-portlets-pt-2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176276#4176276 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176276 _

[jboss-user] [Beginners Corner] - Re: jmx-console - blank page return

2008-09-12 Thread PeterJ
Are you using the community version of JBossAS, or the enterprise version (EAP)? Please line in the console log that looks like this (it is the second line in the log): 08:57:12,482 INFO [Server] Release ID: JBoss [Trinity] 4.2.3.GA (build: SVNTag= JBoss_4_2_3_GA date=200807181417) You can als

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: All web page URIs respond with blank page

2008-09-12 Thread jabailo
Works great now! Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176268#4176268 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176268 ___ jboss-user mailing list jb

[jboss-user] [JBoss Messaging] - Re: How do you get JBossConnectionFactory to connect to a re

2008-09-12 Thread PeterJ
Try this: Context initial = new InitialContext(); ConnectionFactory cf = (ConnectionFactory)initial.lookup("ConnectionFactory"); where jndi.properties contains: java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory java.naming.provider.url=jnp://remotemachine.faraway.com:1099 java.

[jboss-user] [JBoss jBPM] - Would like to use ProcessDefinition subclass for custom seri

2008-09-12 Thread [EMAIL PROTECTED]
We want to use custom serialization (externalizable) for ProcessDefinitions because there isn't any reason to serialize the the ProcessDefinitions when going in and out of network caches. We really just need to serialize the names of the ProcessDefiitions and then reattach with readReplace().

[jboss-user] [JBoss jBPM] - Re: Persistenting Custom Objects

2008-09-12 Thread [EMAIL PROTECTED]
The system will automatically persist serializable classes as byte arrays. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176263#4176263 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176263 __

[jboss-user] [JBoss jBPM] - at org.hibernate.engine.StatefulPersistenceContext.(Stateful

2008-09-12 Thread ailenin
collection growing to 16000 and not garbage collected. Collection Counts: java.util.HashMap 16823 org/hibernate/engine/StatefulPersistenceContext.(org.hibernate.engine.SessionImplementor) java.util.HashMap 16823 org/apache/commons/collections/SequencedHashMap.(int) java.util.ArrayList 16708 org/

[jboss-user] [Beginners Corner] - XDoclet Issue with Eclipse 3.4

2008-09-12 Thread devireddy
Hi Sorry if this post is not supposed to be here. but looked for some thing specific abt Eclipse didn't find any so posting it here. So the problem is, I have Eclipse 3.4. When I open windows->preferences->Xdoclet I see a error message on top that reads "Missing library: xdoclet-1.2.1.jar. S

[jboss-user] [Beginners Corner] - Re: jmx-console - blank page return

2008-09-12 Thread acastanheira2001
Peter, I use Jboss 4.2.0 GA. When I enter http://myserver:8080/ it shows the "Welcome to Jboss" page. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176259#4176259 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=41762

[jboss-user] [JBossWS] - Jbossws Sample build failed

2008-09-12 Thread zaiwengong
Hi, I downloaded jbossws-1.2.1.GA.zip and installed it to jboss-4.0.5GA using JDK 1.5.0_06 on Windows 2003. Start jboss and I can access http://localhost:8080/jbossws. To build the samples I dis the following: - unzip jbossws-samples-1.2.1.GA.zip - cd jbossws-samples-1.2.1.GA - cp ant.properti

[jboss-user] [JBoss Messaging] - How do you get JBossConnectionFactory to connect to a remote

2008-09-12 Thread BrandonBarlow
I am trying to migrate a straight Java SE app from ActiveMQ to JBoss Messaging. This app creates a JMS ConnectionFactory to a JMS server on a remote machine. I would expect to use code along the lines of: connectionFactory = new JBossConnectionFactory("tcp://remotemachine.faraway.com:someport")

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: All web page URIs respond with blank page

2008-09-12 Thread PeterJ
Oh wait, it was staring me in the face and I did not even see it. You have downloaded and installed the variation of 4.2.3 for JDK 6, but you are using JDK 5. Either download the regular version of JBossAS 4.2.3, or install JDK 6 and change JAVA_HOME to reference it. View the original post : h

[jboss-user] [Beginners Corner] - Re: jmx-console - blank page return

2008-09-12 Thread PeterJ
What version of JBossAS are you using? It would appear that some security settings have been made - I would not expect this error from an out-of-the-box deployment of the community editions of JBossAS. What happens if you enter: http://myserver:8080/ View the original post : http://www.jboss.c

[jboss-user] [Beginners Corner] - Re: dataTable onRowClick not able to call java bean

2008-09-12 Thread PeterJ
Have you looked at the html source within your browser? I suspect that there would have to be be some JavaScript that make the asynch call back to the server. I would first attempt to make sure that JavaScript was firing (either by using proxy server or network monoitor to capture the traffic).

[jboss-user] [Microcontainer] - Re: Alternate .war deployment

2008-09-12 Thread alesj
"bob.mcwhirter" wrote : | Those exist by default, looking for any CLMD to deploy into my unit? I noticed an explicit WarClassLoaderDeployer in the codebase. Was not sure if I needed to mirror that for my own, or if I can count on a standard CLDeployer in the mix with the 'default' config.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: All web page URIs respond with blank page

2008-09-12 Thread jabailo
I did as you suggest, putting jboss and the jdk at the c:\ root but still same behavior 2008-09-12 11:44:53,380 ERROR [org.jboss.deployment.MainDeployer] Could not initialise deployment: file:/C:/jboss-4.2.3.GA-jdk6/jboss-4.2.3.GA/server/default/deploy/jbossws.sar/ java.lang.NoClassDefFoundErr

[jboss-user] [Beginners Corner] - Re: jmx-console - blank page return

2008-09-12 Thread acastanheira2001
Peter, Whenever I hit http://myserver:8080/jmx-console/ it throws in server.log the following: 2008-09-12 15:40:14,845 87133065 WARN [org.apache.catalina.authenticator.FormAuthenticator] (http-0.0.0.0-8080-4:) Unexpected error forwarding to login page java.lang.NullPointerException a

[jboss-user] [Beginners Corner] - Re: dataTable onRowClick not able to call java bean

2008-09-12 Thread songbird0021
Hello again, I'm fairly certain this is a syntax problem, but I have been unable to figure this out. I've tried changing my bean code to being setters/getters and that didn't work. I've also tried using a do method, but no luck there either. I'm able to call an alert window from the jsp, bu

[jboss-user] [JBoss jBPM] - Re: Error getting CommandServiceBean

2008-09-12 Thread kukeltje
My first response would be: Your error is that you post to way to little relevant info... :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176236#4176236 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176236 _

[jboss-user] [JBoss jBPM] - Re: signaling to a forked sibling

2008-09-12 Thread kukeltje
yikes... hmm... I would solve it a completely different way I think. More datadriven. Why not make I1,I2 and I3 variables. Have two states. O1 and O2, each with a decision under them. Each decision has two outcomes, one back to the state and one to a next state. Each time one of the variables

[jboss-user] [EJB 3.0] - Re: Can't catch persistenceException

2008-09-12 Thread PeterJ
What is being done at this line in the servlet: at com.playjam.server.test.TestServlet.doGet(TestServlet.java:49) My guess: the transaction is not committed until the create() method exits. It is not until the transaction is committed that the database is updated and notices the error, and that

[jboss-user] [JBoss jBPM] - Re: Task timer and TaskInstance.dueDate field

2008-09-12 Thread kukeltje
1: Sure, no problem... just model it that way 2: leaving the node but keeping the task and 'just' notify? Via Email? That is possible with a timer. Via a new task, leaving the node where to? A new tasknode? And what if the user finishes the task before someone else can react on this task? Do yo

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: All web page URIs respond with blank page

2008-09-12 Thread PeterJ
Many Java libraries have problems with paths that contain spaces. Try moving JBossAS out of Program Files. For example, I have JBossAS installed at f:/opt/jboss/jboss-4.2.3.GA. You should also do the same for the JDK - mine is at c:/apps/java/jdk1.5.0_16 (you do not have to re-install the JDK,

[jboss-user] [Installation, Configuration & DEPLOYMENT] - All web page URIs respond with blank page

2008-09-12 Thread jabailo
I installed a jboss server 4.2.3.GA on my Windows XP workstation. After run.bat, I can connect to localhost:8080 but my browser will only show a blank page. Same for any .war content I add. In fact, it will show a blank, not a Page Not Found, for anything after the 8080. My JAVA_HOME=C:\Pr

[jboss-user] [EJB 3.0] - Can't catch persistenceException

2008-09-12 Thread thundernet1
Hi, I have the following code and am deliberately violating a unique constraint to create a javax.persistence.EntityExistsException. It seems that JBoss or Hibernate is hiding the exception, the only time I can catch it is when it has travelled all the way back to my invoking servlet. Is there

[jboss-user] [JBoss Messaging] - Re: Singleton MDB with JBM.

2008-09-12 Thread jbossnoob
Hi Pete, This is the way it worked with JBoss MQ and HASingleton, you could set a barrier on a MDB such as: Depends( "jboss.ha:service=HASingletonDeployer,type=Barrier" ) This would get the job done. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176223#417

[jboss-user] [JBoss Tools (users)] - Oracle generated entities failure

2008-09-12 Thread ipazmino
Hi, I'm trying to generate via JBoss Tools in eclipse the entities in my database. I created a Seam project and configured the access to the DB, unfortunately when testing the connection all it does is a ping, and then tried to generate the entities but the following error is shown: Can't gene

[jboss-user] [JBoss Messaging] - Re: Singleton MDB with JBM.

2008-09-12 Thread PeterJ
I now at least understand what you want, but I have no idea how to accomplish it. It appears as if you do not really want clustering, but rather want some kind of fail-over capability. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176219#4176219 Reply to th

[jboss-user] [JBoss Getting Started Documentation] - Re: newbie - JBoss

2008-09-12 Thread PeterJ
You are welcome. I'm glad that you are up and running. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176218#4176218 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176218 ___

[jboss-user] [JBoss Getting Started Documentation] - Re: newbie - JBoss

2008-09-12 Thread velasquez
Thank you Peter for all your help.. JBoss started without any errors View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176212#4176212 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176212 __

[jboss-user] [Microcontainer] - Re: Alternate .war deployment

2008-09-12 Thread bob.mcwhirter
"alesj" wrote : "bob.mcwhirter" wrote : | | At this point, my web.xml is super-easy, and my code just programmatically assembles it. | | | Does this mean you're assembling WMD or web.xml? | I guess WMD should do it. | Yes, a WebMetaData is what I'm building, not a web.xml file.

[jboss-user] [JBoss jBPM] - signaling to a forked sibling

2008-09-12 Thread gnagy
Hello, We have a workflow where a number of observers need to observe a number of items. A possible dependency relationship is such: Process / \ Observer1 Observer2 /\ / \ Item1 Item2 Item3 An observer can only continue in the workflow if all observed items were "

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Deploy and run under -all configuration

2008-09-12 Thread muddu_shafi
Thanks for the code.. It helped me...But there was a problem with the code When I run service.bat(which I named it), the cmd window just shows up and goes away. Well I done some R&D on this and figure out that by removing the JAVA_HOME from the file it worked fine. could u explain me what migh

[jboss-user] [Performance Tuning] - Re: VisualVM

2008-09-12 Thread PeterJ
Well, I could play with the 1.0.1 version and check it out, but you could have done the same and reported on your findings. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176204#4176204 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[jboss-user] [Beginners Corner] - App priority

2008-09-12 Thread acastanheira2001
Hi, We´ve run a jboss instance that servers 4 apps. Is there a way to set different priorities for each of them? Thanks, Andre View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176202#4176202 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [JBoss jBPM] - Error getting CommandServiceBean

2008-09-12 Thread AJanz
hi i got an error trying to find the CommandServiceBean | String localCommandServiceJndiName | = "java:comp/env/ejb/LocalCommandServiceBean"; | try { | Context initial = new InitialContext(); | LocalCommandServiceHome localCommandServiceHome = (LocalCommandServiceHo

[jboss-user] [JBossWS] - Validation of XSD (minLength, maxLength and pattern)

2008-09-12 Thread JBossWS_NewBee
I have a WSDL operation which is based on a XML schema with the following info: CheckInDate: YYMMDD Couple of questions around this schema: 1. Does JBossWS framework understand the xml schema constraints of xs:minLength, xs:maxLength and xs:pattern, if specified? 2. What kind

[jboss-user] [JBoss Portal] - Re: Redirecting a specific html page or link using installed

2008-09-12 Thread PeterJ
Correction - the "Current users" portlet shows the logged in users. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176195#4176195 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176195 ___

[jboss-user] [Beginners Corner] - Re: Are there any customers who are using the JBoss Communit

2008-09-12 Thread prasad_global
Hi, Thanks for the reply... Can I you give me some customers who have deployed their applications on JBoss community edition and successuflly using the application over the internet /inteanet View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176192#4176192 R

[jboss-user] [JBoss Portal] - Re: Redirecting a specific html page or link using installed

2008-09-12 Thread [EMAIL PROTECTED]
Peter: Air Conditioner comment was funny. :-) I think what sachinverma meant by "a/c" is account. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176191#4176191 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176191

[jboss-user] [JBoss Portal] - Re: Redirecting a specific html page or link using installed

2008-09-12 Thread PeterJ
anonymous wrote : i want to show a specific html page on a user a/c Why would you want to shows an html page on an air conditioner (a/c)? My air conditioner does not even have a screen! anonymous wrote : how can i show a html page on users created in jboss portal The list of users is available

[jboss-user] [JBossMQ] - Re: JBoss 4.2.2 + WSMQ XA Syncpoint (2072) problem solved

2008-09-12 Thread smartz
Thank you very much, I was experiencing the same issue and this information has been very useful in fixing it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176186#4176186 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply

[jboss-user] [Microcontainer] - Re: Alternate .war deployment

2008-09-12 Thread alesj
"bob.mcwhirter" wrote : | At this point, my web.xml is super-easy, and my code just programmatically assembles it. | Does this mean you're assembling WMD or web.xml? I guess WMD should do it. "bob.mcwhirter" wrote : | I also an building a ClassLoadingMetaData (well, a VFSClassLoaderFac

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: how to replace Tomcat in JBoss

2008-09-12 Thread PeterJ
Just now looked at the binary at docs/license/third-party-licenses.xml. It states: View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176184#4176184 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176184 _

[jboss-user] [JBoss Tools (users)] - Re: org.hibernate.engine.StatefulPersistenceContext.(S

2008-09-12 Thread [EMAIL PROTECTED]
maybe don't load that much data ? in any case looks like a jbpm question since you are using jbpm. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176182#4176182 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176182 ___

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: how to replace Tomcat in JBoss

2008-09-12 Thread PeterJ
anonymous wrote : 4.0.5 uses 5.5.23 Really? Then the packaging process is broken. In the 4.0.5 source I downloaded in October of 2006, the third-party/apache-tomcat/components-info.xml file states: | |http://tomcat.apache.org"; | description="Tomcat 5.5 servlet 2.4 web contain

[jboss-user] [Microcontainer] - Re: Alternate .war deployment

2008-09-12 Thread bob.mcwhirter
"alesj" wrote : | "BobMcWhirter" wrote : | | 3) If I should create a WebMetaData, should I attach it as an attachment to the VFSDeploymentUnit my RailsDeployer is handed? | | | Yes. | But, like I already said, you have different scopes of attachments. | Pick the one that suites

[jboss-user] [JBoss Getting Started Documentation] - Re: newbie - JBoss

2008-09-12 Thread PeterJ
See http://wiki.jboss.org/wiki/DebugBindException View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176172#4176172 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176172 ___ jbo

[jboss-user] [Beginners Corner] - set custom properties to xa data source (deploy/con-ds.xml)

2008-09-12 Thread kaithwas
HI, I am trying to add a ldap property to the jboss configuration file this ldap property will be used for setting load balancing in oracle, the configuration file is somename-ds.xml and it is used for connecting to oracle database the configuration for xa-datasouce properties. which uses 'orac

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: JBoss, Tomcat, CVE-2008-1232 and related

2008-09-12 Thread darretta
Thank you for the response. I was hoping that the embedded Tomcat was not the full version, but was obviously wrong. So, I presume, the only solution is to upgrade JBoss? Is there a patch available to apply to 4.0.3SP1? Thank you again. View the original post : http://www.jboss.com/index.html

[jboss-user] [EJB 3.0] - Re: Possibility to test passivation / activation of SFSB

2008-09-12 Thread sebgerpb
Many thanks, Francesco. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176167#4176167 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176167 ___ jboss-user mailing list jboss-u

[jboss-user] [Performance Tuning] - Re: VisualVM

2008-09-12 Thread francis17101970
I can see that recentely was released a new version of VisualVM (1.0.1). Can it be that this bug was fixed ? This tool looks like it will replace JConsole in the future...I do hope that's a bug that will be soon fixed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [Clustering/JBoss] - Re: Jboss throws ERROR on deploying war file in HASingleton

2008-09-12 Thread singhannie
Thanks dyazbek, yes it works irrespective of whether I add the dependency on barrier or not. but if I add the dependency, there is an error at Jboss starts up, which I guess might be because of some configuration problem, but application is accessible through browser. ok so I decide to ignore t

[jboss-user] [JBoss jBPM] - Re: forking tasks

2008-09-12 Thread kukeltje
That's what TTD is for :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176158#4176158 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176158 ___ jboss-user mailing list jbos

[jboss-user] [JBoss jBPM] - Re: Swimlane assignment - h e l p m e !

2008-09-12 Thread kukeltje
this currently is not supported this way (although it would be a nice addition) Write your own assignmenthandler for this. It can be a very simple one (see e.g. the testcases in the source of jBPM or search on the web for examples View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss jBPM] - Re: Consuming webservice in jBPM JPDL (Eclipse)

2008-09-12 Thread kukeltje
the jaxws.war cannot load things from the processarchive (via the processclassloader) so that is an expected error. with 'everything' I just meant the classes that are in the processarchive, not all the jaxb stuff etc... (that should already be on the classpath by jboss itself. Adding them to t

[jboss-user] [JBoss Portal] - Re: Take 3 - Relationship between jboss-app.xml and *-object

2008-09-12 Thread nicolasduminil
Thomas, If one posts several times the same thing, this is not in order to have fun, but simply because nobody replies. Posting several times the same topic, one hopes that finally a solution to the problem will be found. Unfortunately, this is not my case as, beside another contributor kind he

[jboss-user] [EJB 3.0] - Re: Possibility to test passivation / activation of SFSB

2008-09-12 Thread francis17101970
You can test activation/passivation by setting the timeout parameter in the @CacheConfig annotation. | @Stateful | @CacheConfig(idleTimeoutSeconds=10) | public class HelloBean implements HelloBeanItf, Serializable { | | | @PrePassivate | public void beforePassivate () { | Sys

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Deploy and run under -all configuration

2008-09-12 Thread erasmomarciano
try @echo on | rem - | rem JBoss Start CC | rem - | | set JAVA_HOME="C:\Progra~1\Java\jdk1.5.0_15" | | | cd C:\jboss-4.0.5.GA\bin |

[jboss-user] [Security & JAAS/JBoss] - Re: Jws deployment error with HTTPS Jboss 4.2.3

2008-09-12 Thread garwind111
solve myself ... just add the javassist.jar in the jnlp descriptor. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176139#4176139 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176139 _

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Deploy and run under -all configuration

2008-09-12 Thread muddu_shafi
Could you please give me the code? I am a newbie Any help would be appreciated... Thanks for the reply. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176138#4176138 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=41

[jboss-user] [JBoss jBPM] - Re: forking tasks

2008-09-12 Thread gnagy
Hi Ronald, Thanks a lot for your help! I don't really know what caused the problem, but now everything works correctly. The test case you wrote was very useful, I could adapt it to set up unit tests for our work flow, and I just kept tweaking the process definition and code until things worked.

[jboss-user] [JBoss Messaging] - ClientReconnectInterceptor for Jboss Messaging ?

2008-09-12 Thread garwind111
Hello, I'm migrating a jboss mq application to jboss messaging. I see in my old configuration that we have a ClientReconnectInterceptor to allow a client to connect to the server even if it's clientID is allready being used by another client. I didn't saw in jboss messaging docs where to confi

[jboss-user] [JBoss Messaging] - Messaging distribution problem

2008-09-12 Thread tim.shaw
Hi, I'm using JBoss EAP 4.3 (which contains 4.2 AS and 1.4.0 JBM). I have 2 clustered machines, identical apart from the ServerNode id. The DB is running on a separate machine (MySQL), and the DefaultDS is configured to point to a 'jbossdb' database. The connection factory is JmsXA. I have an a

[jboss-user] [Beginners Corner] - Re: why Session would close under stress test?

2008-09-12 Thread francis17101970
You should provide some more info about your system. Anyway it is it seems that more Thread are accessing the Hibernate Session Object and you eventually try to manipulate a Session which has been closed. If you are closing the session yourself, and it's not an error, you might want to think

[jboss-user] [Beginners Corner] - Re: Are there any customers who are using the JBoss Communit

2008-09-12 Thread francis17101970
well of course there are some projects using the community edition, even if for larger projects usually the Customers require a Certified version of jBoss which you get when you buy support from Red Hat. A subscription to red hat is usually a small % of the project budget (compared to HR ) so th

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Deploy and run under -all configuration

2008-09-12 Thread [EMAIL PROTECTED]
just make a simple myrun.bat script that call run.bat with the arguments you want. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176120#4176120 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176120 ___

[jboss-user] [Clustering/JBoss] - Re: EJB3 timer and cluster behaviour (JBoss 5.0.0)

2008-09-12 Thread wdfink
Hi Daniel, what you do is deploy the MDB as HASingleton and the timer will only have one server with this special MDB. But the timeout will happen for each node, because the TIMER-table is the same for all. What I need is a real cluster aware timer where a SLSB|MDB can create a timer and it is

[jboss-user] [JBoss Messaging] - Maximum Queue Size and dropping messages with lowest priorit

2008-09-12 Thread mitchs
Hi, we want to limit the queue size and drop messages in queue with the lowest priority and not the last offered. does someone know a scenario how to realize this? thx for your help We are using JBoss 4.2.3 + JBoss Messaging 1.4.0 SP3 View the original post : http://www.jboss.com/index.htm

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Is MailFolder.getNewMessages supposed to work?

2008-09-12 Thread stlecho
Changing the protocol to be used from POP3 to IMAP solves this issue. Based on this experience I conclude that JBoss does not support the polling of a mailbox with POP3. Jira issue: https://jira.jboss.org/jira/browse/JBPAPP-1177 View the original post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss Portal] - Re: Can I specify the size of the portlet being displayed on

2008-09-12 Thread m.paranjape
Could anyone out there help me do this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176090#4176090 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176090 ___ jboss-user mail

[jboss-user] [JBoss Portal] - Redirecting a specific html page or link using installed jbo

2008-09-12 Thread sachinverma
Hi, I am newbie; i have recently installed jboss bundled jboss As 4.2.3 GA with jboss portal jboss 2.6.6 GA, after this i have created a few users in that. i want to show a specific html page on a user a/c but i cannot; i have gone through a bunch of portlets already provided but they do not sol

[jboss-user] [JBoss Portal] - Redirecting a specific html page or link using installed jbo

2008-09-12 Thread sachinverma
Hi, I am newbie; i have recently installed jboss bundled jboss As 4.2.3 GA with jboss portal jboss 2.6.6 GA, after this i have created a few users in that. i want to show a specific html page on a user a/c but i cannot; i have gone through a bunch of portlets already provided but they do not sol

[jboss-user] [Security & JAAS/JBoss] - How to enforce a limit to the number of users?

2008-09-12 Thread benoitx
Hi We are using JAAS DatabaseServerLoginModule for a Swing application connecting to JBoss 4.0.5. Our application is using stateless session beans. Is there a built-in mechanism to LIMIT the number of users (concurrent or otherwise) in order to enforce some kind of licensing of our application

[jboss-user] [EJB/JBoss] - Best way for dynamic configuration?

2008-09-12 Thread hamtho2
Hi, I just created a timer-bean running a custom job at a defined interval. This service is annotated with @Service and @Management, so that it is startable/stoppable via the JMX-Console. Now I would like to add some properties that can be changed by the user - for example the interval between

[jboss-user] [Installation, Configuration & DEPLOYMENT] - deployment of ear containing jars + sar

2008-09-12 Thread DeMarco2
Hi together. I try to deploy an ear containg 1 sar and multible jars. I try the follwing structure of the ear: app.ear | |--- META-INF | | | |--- application.xml | | | |--- jboss-app.xml | |--- lib | | | |--- lib1.jar | |--

[jboss-user] [JBoss jBPM] - Re: Task timer and TaskInstance.dueDate field

2008-09-12 Thread lblaauw
True, I understand the current implementation but in my view functionally they shouldnt be different things. I feel you need to be able to have them to be the same thing i.e. when a task has a deadline(duedate) I would like to have the process instance be able to do two optional things: 1. escala

[jboss-user] [JBoss jBPM] - Swimlane assignment - h e l p m e !

2008-09-12 Thread freejohn22
Hi all jbom users, I'm developing a trouble ticketing interface with jBpm. I have 2 swimlanes: the manager and the developer. I would need to assign the actorId of each task depending on the value of a Context variable. I have saved in the context variable "manager" and "developer" the person who

[jboss-user] [Beginners Corner] - Are there any customers who are using the JBoss Community Ed

2008-09-12 Thread prasad_global
Hi, Can any one advise me / tell me are there any customres/customers list in real time, who are using the JBoss community edition ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176066#4176066 Reply to the post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss Messaging] - jms connection could not be released by jboss after the clie

2008-09-12 Thread funnyone
We have one JbossAS(a cluster with 3 nodes which jms server is deployed on one of them) running on Solaris 10(named Server-A). There is a client program on a pc(named Client-B) which receives JMS messages from the Jboss on Server-A(through topic). We have 2 NIC(network interface Card) on Clie

[jboss-user] [JBoss jBPM] - Re: Consuming webservice in jBPM JPDL (Eclipse)

2008-09-12 Thread chrlyck
Thanks again, i think we are getting somewhere... :) OK, here goes. I have tried two methods. As mentioned i deploy using JPDL so i don't really know what my .par is named and what happens to it, but it shouldn't matter... ?.par -first.xhtml -forms.xml -gpd.xml -processdefinition.xml -processim

[jboss-user] [Security & JAAS/JBoss] - Re: Peer address from LoginModule

2008-09-12 Thread jopersson
A (maybe not very good) way for getting client ip Thread.currentThread().getName() Name string is in format "someworkerthreadname#[127.0.0.1:1867]" and parse that string View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176056#4176056 Reply to the post : h

[jboss-user] [Microcontainer] - Re: Alternate .war deployment

2008-09-12 Thread alesj
"BobMcWhirter" wrote : | 1) Am I off-base thinking that the RailsDeployer could/should create a WebMetaData, for consumption by the typical .war deployer already baked into AS5? | That's one way of doing it. You can either pick-up the WMD we already create and fill it with your info. Or you

[jboss-user] [Microcontainer] - Alternate .war deployment

2008-09-12 Thread alesj
"BobMcWhirter" wrote : | Hiya Guys-- | | As ya know, I'm working on deploying Rails apps on JBossAS. At this point, my RailsDeployer constructs a synthetic VirtualFile, stitching together a .war from a Rails directory and a generated web.xml. (VFS is one freakin' cool project, very nic

[jboss-user] [JBoss Portal] - Re: Problem with Portal and ESB install

2008-09-12 Thread [EMAIL PROTECTED]
Try with 2.7, it uses an upgraded jbpm lib (3.2.2). Secret location of the CR1 just for you ;) https://sourceforge.net/project/showfiles.php?group_id=22866&package_id=84509&release_id=625760 (released last night, i'll do the announcement today) View the original post : http://www.jboss.com/inde

[jboss-user] [Clustering/JBoss] - Re: EJB3 timer and cluster behaviour (JBoss 5.0.0)

2008-09-12 Thread dyazbek
Hi wdfink I recently implemented the exact same thing with JBoss EAP v4.2-CP02. http://docs.jboss.org/jbossas/jboss4guide/r4/html/cluster.chapt.html#clustering-jms-loadbalanced I did the following: On each JBoss machine, replaced DefaultDS to a real, external database. By default, JBoss uses HSQ

[jboss-user] [EJB/JBoss] - Re: Question about feature request - deploy.first

2008-09-12 Thread jaikiran
How is your application packaged? EAR, WAR or JAR? And which version of JBoss are you using? Please provide more details about your application. That might help in understanding what you are trying to do. P.S: Looks like you are in the wrong forum. You should have posted this in the Installatio