[jboss-user] [JBossMQ] - Re: Auto-delete unretreived messages?

2008-08-27 Thread genman
Set message expiration? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172960#4172960 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172960 ___ jboss-user mailing list jboss-u

[jboss-user] [EJB 3.0] - Re: Accessing JBoss Datasource from EJB 3.0

2008-08-27 Thread mabimal
Thank you jaikiranji Mabimal View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172958#4172958 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172958 ___ jboss-user mailing list j

[jboss-user] [EJB 3.0] - Re: Accessing JBoss Datasource from EJB 3.0

2008-08-27 Thread jaikiran
Maybe this is what you want: MyAppEjb.jar | | | | | |- configuration.xml | | | | | |- org | | | | | |--- myapp | | | | | | | |--- MyConfigurationReader.class | In your MyConfigurationReader.class (which reads the configuration.xml) you could do

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: exception after out-of-the-box deploy

2008-08-27 Thread asiandub
hello Peter, thanks to your reply I found out that I do have an access rights issue here. If I unzip the application in my home directory, JBoss starts without complaining. What I didn't mention was that /datacommon is a shared fat32 partition, and i think i have to step through the mount opti

[jboss-user] [EJB 3.0] - Re: Lookup EJB via JNDI

2008-08-27 Thread hipa
I can't modify bean that I want to lookup. | @Local | public interface LookupBeanLocal | { | public Object lookup(String name); | } | | @Stateless | public class LookupBean implements LookupBeanLocal | { | public Object lookup(String name) | { | // Her

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: UnicastRef2

2008-08-27 Thread jaikiran
"nagaraju.uppara" wrote : Please help me the same This thread is more than a year old. You will have to provide more details about your setup (Operating system, JBoss and Java versions) and what issue you are running into. View the original post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [EJB 3.0] - Re: Accessing JBoss Datasource from EJB 3.0

2008-08-27 Thread mabimal
Hi jaikiranji, I actually want to access my Configuration.xml text by keeping it in the context root, but where to keep this file ( I am in confusion of it too). Here in this xml file, i want to keep username,password,ip,maxcon,idletime etc. which i want to access from class file and pass it to

[jboss-user] [Beginners Corner] - Re: Application Access Error

2008-08-27 Thread jaikiran
Looks like a classloader issue. Do you have more than one jar on the server or your application which has this struts class? Also see this http://wiki.jboss.org/wiki/ClassCastExceptions for debugging such issues. The jmx-console method mentioned in that wiki might help. View the original post

[jboss-user] [EJB 3.0] - Re: Lookup EJB via JNDI

2008-08-27 Thread jaikiran
Post the code of your bean. anonymous wrote : It doesn't work because of I need to specifiy application name here: | | | | new InitialContext().lookup("MyApp/BeanLocal/local"); | | That's the default JNDI name given to the bean. You can override it by using @RemoteBinding

[jboss-user] [EJB 3.0] - Re: Accessing JBoss Datasource from EJB 3.0

2008-08-27 Thread jaikiran
"mabimal" wrote : Hello all, | | I am building just the ejb-module(EJB-JAR) not the Enterprise Archive (EAR) file. So please help me to find the contextRoot of the ejb-module. What is the code to achieve the contextRoot of the EJB-module. | You have to tell us, what exactly you are tryin

[jboss-user] [EJB 3.0] - Lookup EJB via JNDI

2008-08-27 Thread hipa
How can I lookup EJB via JNDI like @EJB annotation do it? I don't know neither application name nor bean name at compile time. | ... | @EJB | private BeanLocal bean; | ... | I tried using InitialContext: | new InitialContext().lookup("BeanLocal/local"); | It doesn't work becaus

[jboss-user] [EJB 3.0] - use seam when i call my page happen "Could not open JPA Enti

2008-08-27 Thread happybolin1030
i use seam ,richfaces with spring integration,the components.xml is that: http://jboss.com/products/seam/components"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:spring="http://jboss.com/products/seam/spring"; xmlns:persistence="http://jboss.com/products/seam/pe

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JBoss AS 4.2.3 start as service question

2008-08-27 Thread wslyhbb
Originally I had the log file as being /var/log/jboss, but it was not creating it on its own, and when I created it it would not even write to it. So I even tried moving it to the $JBOSS_HOME/server/default/log directory, it has user and group of "jboss". I do not get why it will not write to

[jboss-user] [JBossMQ] - Re: Sonic JCA Resource Adapter Wait for Available Session En

2008-08-27 Thread tvbinh
Hi vimalm, Did you manage to solve this problem ? I got the same problem as you and stuck on how to fix it. Thanks, Binh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172932#4172932 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting

[jboss-user] [JBossWS] - Native WS-Reliable Messaging Error - The RM Destination requ

2008-08-27 Thread kerryrward
I am trying to implement a web service that does both MTOM-XOP and reliable messaging. I have the service running with MTOM-XOP and patterned it after the MTOMEndPoint EJB3 example provided in the jboss native ws 3.0.2. I am running JBoss 4.2.2. I then tried to implement the steps from the

[jboss-user] [JBoss Portal] - Re: How to remove themes from the options list?

2008-08-27 Thread 06extreme
Hello everybody, I'm a beginner user of the JBOSS Portal with many doubts. I'd be grateful if you answer a question: How can I remove themes from the options list? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172931#4172931 Reply to the post : http:

[jboss-user] [Beginners Corner] - Application Access Error

2008-08-27 Thread dasari123
Hi, iam getting the following exception while trying to access my application that is deployed in Jboss 4.0.2 GA. java.lang.LinkageError: loader constraints violated when linking org/apache/struts/action/ActionMapping class at java.lang.Class.getDeclaredConstructors0(Native Method)

[jboss-user] [JBossMQ] - Re: Message delivery stopped after a while (using HTTPIL)

2008-08-27 Thread tvbinh
Hi srouil, Did you manage to solve that problem ? I got exactly the same problem and stuck on how we could fix it. Thanks Binh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172926#4172926 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [JBossWS] - Re: Is there a wsconsume equivalent to wsdl2Java's namespace

2008-08-27 Thread yi_zhang
This solution worked for me: http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118735#4118735 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172922#4172922 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172922

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: exception after out-of-the-box deploy

2008-08-27 Thread PeterJ
I do not see anything obviously wrong. The JDK 6 issue typically will not show up until you start using web services. Usually, when others have gotten the "Trying to install an already registered mbean" there is something wrong with the installation of JBossAS, but the problem was most often sol

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 3.0.0.Alpha1 is released

2008-08-27 Thread berenErchamion
ok - will do. Yes the same thing happens with 2.0. I moved to 2.1 in the hope that this might be fixed. Adding the jar back manually after deleting it from the manifest works both in eclipse and when you deploy. I'll post a jira. It is also possible there's something funky in my eclipse. I j

[jboss-user] Problems with TimerBean and transaction-rollback

2008-08-27 Thread [EMAIL PROTECTED]
Hi everybody, I'm working with JBoss 5 CR 1 playing around with a Timer Bean. Here are some details: - the Timer's time-out method is marked with a RequiresNew TX-attribute - the timeout I create is a one-shot timer (it has to be executed exactly once) The Timer Bean's timeout code resemble

[jboss-user] Problems with TimerBean and transaction-rollback

2008-08-27 Thread [EMAIL PROTECTED]
Hi everybody, I'm working with JBoss 5 CR 1 playing around with a Timer Bean. Here are some details: - the Timer's time-out method is marked with a RequiresNew TX-attribute - the timeout I create is a one-shot timer (it has to be executed exactly once) The Timer Bean's timeout code resemble

[jboss-user] [Installation, Configuration & DEPLOYMENT] - exception after out-of-the-box deploy

2008-08-27 Thread asiandub
Hello there, probably something obvious I'm missing, but I'm kind of stuck and as such thankful for any help. I'm trying to run an out-of-the-box JBoss 4.2.3.GA on my freshly installed linux system (ubuntu 8.04). Having set JAVA_HOME to java-6-sun, I get the following exception after starting

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: UnicastRef2

2008-08-27 Thread nagaraju.uppara
Please help me the same View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172908#4172908 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172908 ___ jboss-user mailing list jboss-u

[jboss-user] [JBoss/Spring Integration] - boot strapping spring inside Jboss

2008-08-27 Thread hungtru
Hi there, I'm trying to bootstrap Spring and a bunch of spring related beans inside Jboss without using the .spring deployer, because I need to be able to deploy this inside WAS too. My web.xml and spring libraries work inside WAS, but when i put it over onto JBoss, JBoss reads the web.xml

[jboss-user] [JNDI/Naming/Network] - Re: How to check with java code, if a deploy was sucessfull?

2008-08-27 Thread thitoh
no... sory... I probablely wrote wrong the subject of the topic. To check with java code if a deploy was sucessfull, I can invoke method boolean isDeployed() of MainDeployer MBean... But I have to set a timer and invoke this method several times until I have "true". (with a time limit, because d

[jboss-user] [Advanced Documentation] - Re: Missing version number in jar-version.xml

2008-08-27 Thread PeterJ
henk53 wrote : Wouldn't it be better to include this information in jar-versions.xml anyway, since that's where this information is also supposed to be, right? ;) This is known as preaching to the choir... henk53 wrote : jar-versions.xml ... does contain the exact versions for ... I have foun

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Classloading issue (loading class from another jar)

2008-08-27 Thread PeterJ
Is this stack trace different than what you started with? You originally wrote "unable to acces class in our custom jar" which I interpreted to mean you were getting a ClassNotFound exception. The stack trace you posted is another issue entirely. I have no idea how to convince Struts to call yo

[jboss-user] [JBoss Portal] - Re: Portlet Instance

2008-08-27 Thread ghyoju
Hi, I also need to access the portlet instance id. Has this been fixed? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172894#4172894 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172894 __

[jboss-user] [Performance Tuning] - Re: Single instance hosts several apps

2008-08-27 Thread PeterJ
By "performance analysis" I mean what have you done so far to determine where the bottleneck exists in the system? What system statistics have you monitored (CPU usage, thread counts, and so on)? Have you monitored garbage collection statistics? What application statistics have you monitored (fo

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: configuring jboss logs

2008-08-27 Thread PeterJ
There is no way to configure the logs to do this, but various JMX MBeans keep this kind of information. A cron job that uses twiddle to grab that data should work (this is basically what Nagios does). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172891#4172

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 3.0.0.Alpha1 is released

2008-08-27 Thread [EMAIL PROTECTED]
Ok, so this looks like a Seam 2.1 issue. Have you tried with Seam 2.0 - does it happen there too ? ejb-jar needs to have jboss-seam.jar in manifest.mf; makes no sense without it. Could you report it in jira and we'll look at what is going on. View the original post : http://www.jboss.com/index

[jboss-user] [JBoss Tools (users)] - Re: JBossTools crash Easy Eclipse

2008-08-27 Thread [EMAIL PROTECTED]
easy-jboss-ide-aop 2.0.0.beta ? That does not look like something related to JBoss Tools ? In any case the problem is most likely XULRunner/Mozilla issues. Follow Denis instructions and let us know how that goes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[jboss-user] [JBoss jBPM] - Re: Cannot connect to port 1099

2008-08-27 Thread nagaraju.uppara
Hi Brain, I am also facing the same issue while connecting to 1099 port for our application. Please let me know the steps to resolve the same. Thanks in Advance Warm Regards Nagaraju View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172884#4172884 Reply to th

[jboss-user] [Advanced Documentation] - Re: Missing version number in jar-version.xml

2008-08-27 Thread henk53
Wouldn't it be better to include this information in jar-versions.xml anyway, since that's where this information is also supposed to be, right? ;) I noticed though that jar-versions.xml for Jboss 5 beta 1 does contain the exact versions for the different Hibernate/JPA jars. View the original p

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Classloading issue (loading class from another jar)

2008-08-27 Thread patwary_shiva
Peter, Do you suggest any other steps to debug the issue.Did i make the issue clear? regards shiva View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172877#4172877 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=417

[jboss-user] [EJB 3.0] - Re: Issues in Ejb 3.0 Deployment

2008-08-27 Thread PeterJ
Two things to try. In Eclipse, In the Package Explorer, when you expand your project there should be an entry for "JRE System Library" with a version in brackets behind it. What is that version? >From a command prompt, run: %java_home%\bin\javap -verbose -classpath xxx com.demo.hello.HelloBea

[jboss-user] [Performance Tuning] - Re: Single instance hosts several apps

2008-08-27 Thread acastanheira2001
We have an external partner (siteseeing) that conects one especific app every minute, and reports the times to us. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172875#4172875 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=r

[jboss-user] [Installation, Configuration & DEPLOYMENT] - configuring jboss logs

2008-08-27 Thread maggu
Hi, Sorry if this the incorrect place for this, but could not find a specific topic for JBoss logs. Apart from the standard log configuration defined in the wiki: http://wiki.jboss.org/wiki/Logging What else is configurable in jBoss logs? I am particularly looking at how to configure the logs t

[jboss-user] [Advanced Documentation] - Re: Missing version number in jar-version.xml

2008-08-27 Thread PeterJ
Most of the jar files contain a META-INF/manifest.mf file that identify the version for that jar file. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172873#4172873 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172873

[jboss-user] [Performance Tuning] - Re: Single instance hosts several apps

2008-08-27 Thread PeterJ
What kind of performance analysis have you done so far? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172872#4172872 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172872 ___

[jboss-user] [JBoss Cache: Core Edition] - Re: Clumsy JDBC configuration 2.2.0.CR7

2008-08-27 Thread genman
Could you file a JIRA issue with specific configuration orderings as a test case? http://jira.jboss.com/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172869#4172869 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=41728

[jboss-user] [EJB 3.0] - Re: Issues in Ejb 3.0 Deployment

2008-08-27 Thread vasudm82
Hi Kiran, Thanks for the quick response. As i said earlier, I have only one jdk in my system. 1.5.0._07 anonymous wrote : | C:\>echo %JAVA_HOME% | C:\Program Files\Java\jdk1.5.0_07 | anonymous wrote : C:\>java -version | java version "1.5.0_07" | Java(TM) 2 Runtime Environment, Stand

[jboss-user] [Advanced Documentation] - Missing version number in jar-version.xml

2008-08-27 Thread sunnyDev
I use JBoss4.2.3 GA in a project, and need to check the jar versions in the JBoss AS distribution. I read ar-version.xml and found the version for hibernate3.jar, but could not find version information for hibernate-annotations.jar and hibernate-entitymanager.jar. I also noticed there are also

[jboss-user] [Performance Tuning] - Single instance hosts several apps

2008-08-27 Thread acastanheira2001
Hi, I have a Jboss instance that servers 4 applications. Sometimes the response time increases in one of them. Is there a way to measure the impact of one app on another? How can I know if the increased response time is another app´s duty? Thanks, Andre View the original post : http://ww

[jboss-user] [Persistence,JBoss/CMP, Hibernate , Database] - Re: Conection pool doesn ´t recycle

2008-08-27 Thread PeterJ
How this is done depends on the database and the JDBC driver. For example, see the instructions (and cautions) for MySQL at http://wiki.jboss.org/wiki/SetUpAMysqlDatasource View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172860#4172860 Reply to the post : ht

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem in deploying web modules

2008-08-27 Thread PeterJ
Wait a minute - I had asked someone on another thread to post the the contents of their war file so I got confused - ignore my two previous posts. Could you post the stack trace for the exception you are getting. Also, under what circumstances are you getting the zip file error? For example, do

[jboss-user] [Persistence,JBoss/CMP, Hibernate , Database] - Conection pool doesn´t recycle

2008-08-27 Thread acastanheira2001
Hi, I have a Jboss instance that has a database conection pool. At 3:00 in the morning the database stops to do backup, and when it starts my app can´t conect anymore. I think the conection pool should be automatically recicled when the database comes back. Any ideas on how to solve that prob

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem in deploying web modules

2008-08-27 Thread PeterJ
Actually, "contents" is not the correct term. The JSPs probably act more like templates for the data that is provided by the sevlets. It looks like this app uses Seam - most of the actual on-screen data will come from EJBs or POJOs managed by Seam, but the JSPs will be used to position that dat

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem in deploying web modules

2008-08-27 Thread PeterJ
Look in the *.jsp files - they contain the visual contents of the web application. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172855#4172855 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172855 ___

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: problem in understanding deployment

2008-08-27 Thread chandrakanth.boga
HI, Yes i checked in default/tmp/deploy folder. I am using jboss 4.0.2 version ..old version.. i dont see any *.war files in default/tmp/deploy folder. regards, seek View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172854#4172854 Reply to the post : http://www

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: problem in understanding deployment

2008-08-27 Thread PeterJ
There might not be any html files. Instead, the web content could be provided by JSP files (*.jsp), by servlets (which will be Java *.class files), or by any number of other file types depending on the framework used. List the contents of the war file using the jar utility (it's in java_home/bin

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Problem in deploying web modules

2008-08-27 Thread kvijayk
META-INF/ META-INF/MANIFEST.MF WEB-INF/ WEB-INF/web.xml WEB-INF/classes/ WEB-INF/classes/com/ WEB-INF/classes/com/clarkware/ WEB-INF/classes/com// WEB-INF/classes/com//appname/ WEB-INF/classes/com//appname/domain/ WEB-INF/classes/com//appname/r3adapter/ WEB-INF/classes/com//appn

[jboss-user] [Beginners Corner] - Re: Naming Service Error(could not start on port 1099)

2008-08-27 Thread PeterJ
Some possibilities: 1) Port 1099 is in use but tcpview is not showing it (there was a while on XP where tcpview did not show all opened ports - a later XP patch fixed this). Try using netstat, see if that helps. Oh, another way to tell of a port is open it to use telnet to test it: telnet loca

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JBoss AS 4.2.3 start as service question

2008-08-27 Thread PeterJ
It's empty? Did you turn off the console log? If not, it should have some contents - according to the strace the app server even opened up some sockets, so I know that it started up and thus will, by default, log to the console. Then look at the server/default/log/boot.log and server.log. See if

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: problem in understanding deployment

2008-08-27 Thread rpelluru
Hi, Have you checked under default\tmp\deploy folder? Which version of jboss are you using ? Are there any tmp.war files other than your war file in tmp\deploy folder? Regards, Rajesh Pelluru View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172838#41

[jboss-user] [JBoss Messaging] - JBM w/ EJB 2 MDB issue (new to JBM)

2008-08-27 Thread rg1234
I was able to get the default queue producer\consumer set up and working fine with JMS 1.4 sp3. I'm having trouble replacing the default consumer with an EJB 2 MDB. Here is my xml destination set up: | | jboss.messaging:service=ServerPeer | jboss.messaging:se

[jboss-user] [Beginners Corner] - Can 2 unclustered JBoss instances share the same DB tables f

2008-08-27 Thread lispnik
We have a configuration consisting of 2 JBoss instances (unclustered) and one database. Each instance runs the same application. The application includes an MDB. Is it possible for each JBoss instance to use the same DB tables for messaging queues? Would there be a risk that messages would be

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: problem in understanding deployment

2008-08-27 Thread chandrakanth.boga
hi rajesh. i checked the deploy folder but i dont see tmp12863-exp.war file. what else i can do if dont find this file in deploy directory.what is the significance of this file? regards seek View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172835#4172835 Repl

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: problem in understanding deployment

2008-08-27 Thread rpelluru
Hi, Please check in below location for all jsps/html files in your war file. \server\default\tmp\deploy\ tmp12863-exp.war Regards, Rajesh Pelluru View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172830#4172830 Reply to the post : http://www.jboss.com/

[jboss-user] [JBoss jBPM] - Re: problem with the MailNode:transition doesn't have destin

2008-08-27 Thread jalovic
thanks for replying, i removed the jbpm-3.1.4 from the project and it still doesn't work, you 're right,it's better to specify the transition names but it's not the problem here. any idea? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172826#4172826 Reply to

[jboss-user] [JBoss jBPM] - async fork

2008-08-27 Thread popel
Hi, I've got a problem to get async nodes right. I read on JIRA ther once was an issue with this but got resolved. So I wonder where my mistake is. JBPM Version is 3.2.3 The process definition: | | | | | | | | |

[jboss-user] [EJB 3.0] - Re: Issues in Ejb 3.0 Deployment

2008-08-27 Thread jaikiran
anonymous wrote : java.lang.ClassNotFoundException: Unexpected error during load of: com.demo.hello.HelloBeanBean, msg=Bad version number in .class file | at You probably compiled it with a higher version of JDK and are using JBoss with a lower version of Java. What do the following commands

[jboss-user] [JNDI/Naming/Network] - JNDI remote lookup of classes in isolated EAR

2008-08-27 Thread dovetail
I have the following issue: I have an EJB3 session bean (SB1) with a remote interface (I2) which is in an isolated ear EAR1. I2 extends I1 which is in a POJO jar in EAR1. In a second ear - EAR2, I have the same POJO jar defining I1. >From EAR2 I wish to locate SB1 (via JNDI) without including

[jboss-user] [EJB 3.0] - Problems setting timer to entity bean

2008-08-27 Thread jaki
Hi, Im getting the below error while setting timer over an entity bean using 'timerService.createTimer(date, entitybean);'. I have heard this problem could arise out of using two local datasources but Im using only one. 19:12:32,534 ERROR [SOAPFaultHelperJAXWS] SOAP request exception | javax

[jboss-user] [EJB 3.0] - Issues in Ejb 3.0 Deployment

2008-08-27 Thread vasudm82
Hi All, I am newbie to Ejb 3.0. I am facing a problem while deploying an Ejb jar . Environment being used. eclispe ( using jboss tools plugins ) and jboss 4.2.2. GA The problem i am facing is that while deploying the ejb jar, I am getting this exception . java.lang.ClassNotFoundException: U

[jboss-user] [Installation, Configuration & DEPLOYMENT] - problem in understanding deployment

2008-08-27 Thread chandrakanth.boga
Hello .. I am working on a application which is deployed in jboss. I looked in to the war file and i can see all the class files are located in different jar files.But i can not see the static conets.like htm files and image files.I have searched entire jboss directory but did not found. How to c

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 3.0.0.Alpha1 is released

2008-08-27 Thread berenErchamion
The other issue is: 08:54:23,709 WARN [SeamPhaseListener] There should only be one Seam phase listener per application When you use the wizard to create an EAR project I get this issue every time. The application will deploy properly, but then it will not load up and you'll get an exception a

[jboss-user] [JBoss jBPM] - Re: problem with the MailNode:transition doesn't have destin

2008-08-27 Thread kukeltje
and transitions should have names... is also better oh and you have wrong jars... jpdl3.1.4 is supperseded by jbpm-jpdl-3.2.3 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172811#4172811 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [EJB 3.0] - Re: Accessing JBoss Datasource from EJB 3.0

2008-08-27 Thread mabimal
Hello all, I am building just the ejb-module(EJB-JAR) not the Enterprise Archive (EAR) file. So please help me to find the contextRoot of the ejb-module. What is the code to achieve the contextRoot of the EJB-module. In the anticipation of the solution Mabimal View the original post : http:

[jboss-user] [EJB 3.0] - Re: EJB3 transaction / lazy loading issue

2008-08-27 Thread zilbi
solved it! it turns out that sorting the collection returned from one of the entity's getters (using collections.sort) make hibernate think i changed the entity. i cloned the collection before sorting and it is solved - no more update query when the transaction exits. cool! View the origina

[jboss-user] [JBoss jBPM] - Re: mail node issue

2008-08-27 Thread jalovic
Hi everyone; Please i use the same version and i still have the same exception. Any idea? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172804#4172804 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172804 _

[jboss-user] [JBoss jBPM] - Re: problem with the MailNode:transition doesn't have destin

2008-08-27 Thread jalovic
The problem is that the method "signal" works whenever i try to move to a stateNode but it causes problems when the destination is a MailNode or a TaskNode;i 've added the MailNode.hbm.xml in the hibernate.cfg.xml and no results. thanks in advance. View the original post : http://www.jboss.com

[jboss-user] [JBoss Tools (users)] - Re: JBossTools 3 Alpha + Ganymede

2008-08-27 Thread mrmarcondes
Thanks, it works. I installed via Eclipse Update. Marco. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172793#4172793 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172793

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 3.0.0.Alpha1 is released

2008-08-27 Thread berenErchamion
I just ran thru the wizard taking all the defaults with MySQL as a database. Here's the components.xml file that is generated: http://jboss.com/products/seam/components"; xmlns:core="http://jboss.com/products/seam/core"; xmlns:persistence="http://jboss.com/products/seam/p

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 3.0.0.Alpha1 is released

2008-08-27 Thread berenErchamion
http://www.seamframework.org/Community/JbossToolsEARWizard View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172789#4172789 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172789

[jboss-user] [JBoss jBPM] - Re: question regarding some 'dates' in task instance

2008-08-27 Thread memius
At this moment, I am trying to implement 'suspend until' like this (note, I will call this method in some kind of service class, so not in an ActionHandler) : public void suspendTaskInstanceUntil(final TaskInstance taskInstance, final String suspendUntilDate){ | |

[jboss-user] [JBoss jBPM] - Re: question regarding some 'dates' in task instance

2008-08-27 Thread memius
I see that I left some errors in the code : you will find a jbpmContext (which is not declared in this piece of code), but normally I execute this code within a callback, so the jbpmContext is actually there... I thought to remove the callback code to make things simpler View the original post

[jboss-user] [JBoss jBPM] - problem with the MailNode:transition doesn't have destinatio

2008-08-27 Thread jalovic
Hi everybody, I have a problem with the method signal(). Here is my processdefintion(where i want to test the email notification) | | | | | | | | | | | | | | | | | | |

[jboss-user] [Beginners Corner] - Re: Naming Service Error(could not start on port 1099)

2008-08-27 Thread jagsysadmin
Hi Peter j, I did use tcpview by sysinternal nothing running on the port 1099 and i am posting the error JBOSS_CLASSPATH=;C:\jdk1.3.1_01/lib/tools.jar;run.jar;../lib/crimson.jar jboss.home = E:\CIM_Appl\CIM_Appl\jBoss_tomcat\jboss Using JAAS LoginConfig: file:/E:/CIM_Appl/CIM_Appl/jBoss_tomcat

[jboss-user] [JBoss Portal] - Full Portal Page Refresh Problem

2008-08-27 Thread dynamolalit
Hi, I have deployed two portlets in JBoss Portal.In first portlet,user can enter user name in an input box & clicks submit.After clicking Submit button,the user name is shown in other portlet with some greeting message.The user name is shown in other portlet using APPLICATION_SESSION in Portlet

[jboss-user] [JBossWS] - Non-java webservices in JBOSS

2008-08-27 Thread saravanan_kri
Hi, I am new to JBOSS and web service. I would like to know whether we can host a non-java web service (especially C and C++) in JBOSS. Please help... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172765#4172765 Reply to the post : http://www.jboss.com/ind

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - hibernate tool template problem

2008-08-27 Thread kerny3d
Hi all. I am developing a template for Hibernate Tool and i have a little problem. Is there "something" to know if a column of an entity is an id? I've searched in every *.ftl under pojo dir in hibernate-tools.jar but i've found nothing. Currently, the snippet that i use is: <#foreach field

[jboss-user] [JBoss Cache: Core Edition] - Jboss cache

2008-08-27 Thread govindeg
How can i cache two different folders in different location.IO have added two and tried .But the issue both the folders are coming in both the places View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172763#4172763 Reply to the post : http://www.jboss.com/inde

[jboss-user] [JBoss Cache: Core Edition] - in JBoss cache

2008-08-27 Thread govindeg
Hi i wanted to cache two folders in two different location. I have added two entries and put the datas.But the issue is in both the places both folders are coming.How and where i can specify this folder should cache in this location and another one in another location. View the original post :

[jboss-user] [JBoss/Spring Integration] - Re: Spring Component Auto Detection

2008-08-27 Thread alesj
I've added the following test to VFS |public void testDirectoryFind() throws Throwable |{ | URL url = getResource("/vfs/test/outer.jar"); | String urlString = url.toExternalForm(); | int p = urlString.indexOf(":"); | URL rootURL = new URL("vfszip" + urlS

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: JBoss 4.2.2 AS Vulnerability to CVE-2008-2938

2008-08-27 Thread [EMAIL PROTECTED]
Thanks for your very quick answer, Jean! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172749#4172749 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172749 ___ jboss-user mai

[jboss-user] [JBoss jBPM] - Re: jbpm jrules Rule Compilation error

2008-08-27 Thread kukeltje
anonymous wrote : Only a type can be imported. com.sample.action.LoginBean resolves to a package Isn't this the cause? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172747#4172747 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 3.0.0.Alpha1 is released

2008-08-27 Thread [EMAIL PROTECTED]
got a link ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172742#4172742 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172742 ___ jboss-user mailing list jboss-user@lists.j

[jboss-user] [JBoss jBPM] - jbpm jrules Rule Compilation error

2008-08-27 Thread shoba
Hi All, Im working on jbpm jrule sample. I'm getting this error while running jbpm application in jbpm-console. Error completing task: An exception of type "org.jbpm.graph.def.DelegationException" was thrown. The message is: Rule Compilation error : [Rule name=Your First Rule,

[jboss-user] [JBoss Cache: Core Edition] - Clumsy JDBC configuration 2.2.0.CR7

2008-08-27 Thread mbrade
Hello I'm configuring the cache using Spring. And I noticed some strange behaviours with the JDBCCacheLoader. I'm using C3p0 for connectionpooling and I have my own ddl for table creation and I rewrote some sqls. Because there are no setters for all the c3p0 properties I have to use the setPro