[jboss-user] [Installation, Configuration & DEPLOYMENT] - where to put ORACLE App Server's orion-web.xml's stuff in jb

2009-07-02 Thread shalley.singh
hi all, i am involved in migrating a web application from oracle application server to jboss 5GA. In Oracle Application Server we have a file orion-web.xml which have certain code like: | | | | logonFilter | | authform | |

[jboss-user] [Beginners Corner] - forum open source

2009-07-02 Thread javatwo
can anyone recommend a forum open source that can use existing user database for authentication, and support i18n? We hava a JSF application deployed on JBoss 5.0.1, and need to add forum for user discussion. The Jboss Forum project requires portal. We prefer a standalone installation like a wa

[jboss-user] [Installation, Configuration & DEPLOYMENT] - security intercepter error

2009-07-02 Thread shalley.singh
hi all, I am facing this issue in jboss5.1.0GA. It is inside jboss server log. Please help me to fixed this issue. java.lang.SecurityException: Denied: caller with subject=Subject: | | Principal: jkl | | Principal: Roles(members) | | and security contex

[jboss-user] [JBoss jBPM] - Re: Effort Estimation Technique for jBPM

2009-07-02 Thread smart_umesh_123
TeamWorks is Lombardi's BPM Tool for creating Business Process. Currently application is using TeamWorks to define such processes. We want to replace it with jBPM. So I want to do analysis that how much effort will be required to define same processes using jBPM. I understand many parameters ca

[jboss-user] [JBoss Tools (users)] - Re: hey all i need JBDS

2009-07-02 Thread bayanaa
"PeterJ" wrote : Also, it sounds like you are clicking that link in your browser. Don't do that - follow the instructions on that page, which imply that you first have to download and install "Eclipse for Java EE Developers" from the Eclipse web site, and then run Eclipse, and within Eclipse use

[jboss-user] [JBoss Messaging] - Re: Stand-Alone Messaging: Trouble Configuring a Core Bridge

2009-07-02 Thread erturne
"timfox" wrote : Looks like you didn't specify host name on your acceptors. If you don't specify it it will default to listening on localhost which won't be accessible from another machine. That has to be it. On Monday I'll be back at the location I'm working on this, and will give it a try. Bu

[jboss-user] [JBoss Messaging] - Re: Stand-Alone Messaging: Trouble Configuring a Core Bridge

2009-07-02 Thread erturne
"timfox" wrote : Also you have a typo here: | | | | (Strnig) Haha, thanks. That isn't in the original config. Had to retype everything to post on this forum. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241626#4241626 Reply to the post : http:/

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Can install Jboss tools on Eclipse

2009-07-02 Thread PeterJ
I have followed those steps and they work for me. What error are you getting? I know that when I install JBoss Tools I often get an error about a missing component, but then I usually unselect one of the tools (I think the BIRT tool, I can't recall exactly) and then the missing component error g

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Can install Jboss tools on Eclipse

2009-07-02 Thread eng.ahmedadel
Hello All I am Facing Problem When Trying To install jboss tools 3.1 on ecplise 3.4.2 i Followed The Steps in The Following Link : http://www.jboss.org/community/wiki/InstallingJBossTools But i Got Errors So if Any One Can Help Me In How To Install jboss Tolls on eclipse i know it is so silly

[jboss-user] [JBoss jBPM] - Re: jbpm-console login failed - please help struggling for 3

2009-07-02 Thread kukeltje
where does jBPM come in? I do not see any jbpm related thing in the stacktrace. The problem is you get a nullpointer from the connection. You might have better luck in the jboss AS forum or even the MySQL forums. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=

[jboss-user] [JBoss jBPM] - Re: Query tasks by process context

2009-07-02 Thread kukeltje
no, there is not. This is one of the usecases that is not easily supported AND performant for all cases. If it is a 'special' variable, you might consider using it as a businesskey. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241618#4241618 Reply to the

[jboss-user] [Management, JMX/JBoss] - show JBoss Start Classpath using MBean

2009-07-02 Thread spagop
Hi Altogether, I would like to know if somebody already code this use cases before I start to code myself: + Show JBoss Start ClassPath using MBean + Show all deployed Datasources using MBean + Show all deployed only Web applications using MBean Maybe there are already MBeans that can also used

[jboss-user] [JBoss jBPM] - Re: Query tasks by process context

2009-07-02 Thread sbhatti
I got it sort of working using following HQL: select ti from org.jbpm.taskmgmt.exe.TaskInstance ti , org.jbpm.context.exe.variableinstance.StringInstance si WHERE ( ( ti.processInstance.id = si.processInstance.id AND si.name = :_name_number1 AND si.value = :_value_number1 ) OR ( ti.processI

[jboss-user] [JBoss Tools (users)] - Re: JBT 3.1M1, VPE and Eclipse 3.5 Cocoa build on MacOSX

2009-07-02 Thread IronDuck
Looks like the Aptana folks ran into the same issue... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241608#4241608 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241608 ___

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JBoss 4.2.2 not listening

2009-07-02 Thread PeterJ
What version of JBoss AS? What OS? What JVM? What is the CPU usage? Try this - undeploy all of your apps, including the datasource. Bring up JBoss AS and try to access the home page and do a CTRL-C. Does it respond? If so, then good. Now repeat the same thing several times, each time adding in

[jboss-user] [JBoss Messaging] - Re: Bridge Stuck after reconnect

2009-07-02 Thread mclu
Of course. You are right. 2 Queues on Server A 2 Queues on Server B (Liberte2) Both Bridges are deployed on Server A. One send data from local Queue on A to Remote Queue on B (the outgoing thing) One send data from remote Queue on B to local Queue on A (the incommin thing) I used the SSL Bisoc

[jboss-user] [JBoss jBPM] - Query tasks by process context

2009-07-02 Thread sbhatti
I am using JBPM 3.3 and would like to query TaskInstance(s) by the process context of the workflow. I am using Spring 2.5 based HibernateTemplate. I would like to do something like: List tasks = getHibernateTemplate().findByNamedParam("from " + TaskInstance.class.getCanonicalName() wher

[jboss-user] [Installation, Configuration & DEPLOYMENT] - JBoss 4.2.2 not listening

2009-07-02 Thread iapazmino
Hi, I have a server instance, copy of a default, that starts normally and deploy a datasource, and ejb jar and a war. It's configured to listen at the port 8081 Once it has finished starting up, it seemd to be ready to serve, but it is impossible to make it work. When trying to get any resource

[jboss-user] [JBoss Messaging] - Re: Clusted FailOver doesn't seem to work correctly with Bri

2009-07-02 Thread clebert.suco...@jboss.com
anonymous wrote : I believe some of the changes Howard made on trunk typo... Old habit.. I meant.. Branch_1_4. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241598#4241598 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss Messaging] - Re: Clusted FailOver doesn't seem to work correctly with Bri

2009-07-02 Thread clebert.suco...@jboss.com
anonymous wrote : | jboss 5.1, JBM 1.4.4 src, I modified JMSRemoteConnection to compile against Remoting 2.5.1, so we could have the Bridge fixes, etc. | I believe some of the changes Howard made on trunk will also require some changes on Remoting 2.5.X, but I don't think the required cha

[jboss-user] [JBoss jBPM] - jbpm-console login failed - please help struggling for 3 wee

2009-07-02 Thread arpan25
Hi, i am using jbpm-3.2.6.SP1 with JBoss-4.2.2.GA and I am unable to login to the jbpm console with a invalid username or password error.. I Have the database with the tables loaded with data.. Please help 15:35:09,220 WARN [JBossManagedConnectionPool] Throwable while attempting to get a ne

[jboss-user] [JBoss Messaging] - Re: Stand-Alone Messaging: Trouble Configuring a Core Bridge

2009-07-02 Thread timfox
Looks like you didn't specify host name on your acceptors. If you don't specify it it will default to listening on localhost which won't be accessible from another machine. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241572#4241572 Reply to the post : ht

[jboss-user] [JBoss AOP] - No ClassLoaders found for: sun.reflect.GeneratedMethodAccess

2009-07-02 Thread lawc
Hi, I have a pointcut defined on a method to be intercepted. The method can be called from a stateless EJB or a MDB. Interception happens succesfully on the method invocation in both cases. However, once invoked via the MDB, the exception below is thrown everytime the method is called from t

[jboss-user] [Clustering/JBoss] - Re: Are there any updated docs for clustering?

2009-07-02 Thread bstansbe...@jboss.com
The PDF version of the docs linked from https://www.jboss.org/community/wiki/JBossAS5ClusteringGuide[/url] is a somewhat updated draft, but still has a fair amount of old stuff in it, particularly around configuration of the HAPartition as well as some of the web tier stuff. A good resource is

[jboss-user] [JBoss jBPM] - Re: Effort Estimation Technique for jBPM

2009-07-02 Thread kukeltje
what is effort estimation (We do not know TeamWorks like yiou do)? A kind of simulation? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241589#4241589 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241589 _

[jboss-user] [JBoss jBPM] - Re: Error while completing task

2009-07-02 Thread kukeltje
Thanks for reporting back View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241588#4241588 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241588 ___ jboss-user mailing list jboss

[jboss-user] [Clustering/JBoss] - Re: Farm deployment errors with large WAR files

2009-07-02 Thread bstansbe...@jboss.com
How are you deploying the file? Placing it in farm on one node? Copying it to farm on both? Copying it to both and then starting the 2 nodes? I'd think the first, but I want to be sure. I'll assume it's the first and the node where it successfully deployed was the one where you copied the file

[jboss-user] [Beginners Corner] - Re: jBoss and Hibernate

2009-07-02 Thread PeterJ
Which version of JBoss AS are you using? I found the QuerySyntaxException in common/lib/hibernate-core.jar, so it should be available. Could you post your JAR or EAR file that contains the EJB? Use: "jar -tf xxx.jar" where xxx.jar is the name of your JAR (or EAR) file. Also, is the code that yo

[jboss-user] [Beginners Corner] - Re: jBoss and Hibernate

2009-07-02 Thread MarcelK1607
Sorry, already solved it, i didnt have the right jars. Thanks anyway! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241581#4241581 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241581

[jboss-user] [JBoss Messaging] - Re: Clusted FailOver doesn't seem to work correctly with Bri

2009-07-02 Thread artp
We're using postgres to persist messages. In the file postgresql-persistence-service.xml, I configured the PostOffice to | true | true | Is this correct? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241577#4241577 Reply to the post : http://w

[jboss-user] [Security & JAAS/JBoss] - bindCredential encryption issue on JBoss 5.0.1

2009-07-02 Thread ladubois
Hello, Running into an issue with encrypted bindCredential in a LdapExtLoginModule login module, which is working fine using JBoss 4.2.3 (encryption setup done according to the instructions found here: http://www.jboss.org/community/wiki/LdapExtLoginModuleWithJaasSecurityDomain) the following

[jboss-user] [JBoss Messaging] - Re: Stand-Alone Messaging: Trouble Configuring a Core Bridge

2009-07-02 Thread timfox
Also you have a typo here: (Strnig) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241573#4241573 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241573 ___ jboss-user maili

[jboss-user] [JBoss Messaging] - Stand-Alone Messaging: Trouble Configuring a Core Bridge

2009-07-02 Thread erturne
I'm trying to set up a simple core bridge from a queue on server0 to a queue on server1 using JBoss 2.0.0 BETA3, and can't seem to make it work. Both JMS servers start, but when I put messages on the queue with my producer on server0 the messages are never read by the consumer on server1. Any id

[jboss-user] [JBoss Tools (users)] - Re: High CPU on JSF auto-complete

2009-07-02 Thread jboden
Strangely enough, I went back to eclipse 3.3 with jboss richfaces vpe / jboss tools core 2.1.1 GA and it works great like it used to. First time a brief delay to compile, then fast all around. That will teach me to upgrade. :-) View the original post : http://www.jboss.org/index.html?module=b

[jboss-user] [Clustering/JBoss] - Re: Farm deployment errors with large WAR files

2009-07-02 Thread pclark95
I made a mistake in my post. the two servers are started up with the commands: Server1 ./run.sh -c all -b 10.200.90.103 -Djboss.messaging.ServerPeerID=10 -Djboss.messaging.groupname=TestPostOffice -g TestPartition1 Server2 ./run.sh -c all -b 10.200.90.105 -Djboss.messaging.ServerPeerID=11 -Djb

[jboss-user] [Clustering/JBoss] - Farm deployment errors with large WAR files

2009-07-02 Thread pclark95
Hi, I am having a problem using the farm deployment model with a large WAR file. My setup: two ubuntu 9.04 servers running sun java 1.6.0_14 and JBoss AS 5.1.0_GA The two systems are connected through a 1 GB link and the default clustering settings are used (meaning UDP multicast, some settings a

[jboss-user] [JBoss Messaging] - Re: Clusted FailOver doesn't seem to work correctly with Bri

2009-07-02 Thread artp
I forgot to mention that we have the bridge running as a HASingleton on cluster A. The JMSProvider, has two nodes(ie Cluster B nodes B0,B1) configured in the url provider. | | | | | jboss.messaging:service=JMSProviderLoader,name=HAJNDIJMSProvid

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: I got a problem when I start the server

2009-07-02 Thread skkuchipudi
Continuing rest of the console log Problem starting service jboss.web.deployment:war=jmx-console.war,id=-985175184 | java.lang.NoSuchMethodError: org.jboss.metadata.WebMetaData.isUseJBossWebLoader()Z | at org.jboss.web.tomcat.service.TomcatDeployer.performDeployInternal(TomcatDeployer.jav

[jboss-user] [JBoss jBPM] - SQL error executing test process

2009-07-02 Thread ajvarela
Hi, I have developed a simple process but when I run it with a unit test I've got this error: 18:32:46,762 SEV | [Db] FIXME: JBPM-2004 2 records left in table JBPM4_HIST_PROCINST | 18:32:46,800 WRN | [JDBCExceptionReporter] SQL Error: 1025, SQLState: HY000 | 18:32:46,800 SEV | [JDBCExceptio

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - PermGen error

2009-07-02 Thread oneworld95
We're getting this error when we redeploy a Seam application: 2009-07-02 10:11:30,745 WARN [org.jboss.system.ServiceController] Problem starting service jboss.web.deployment:war=forms_new_employee.war,id=-1855897005 | java.lang.OutOfMemoryError: PermGen space | | 2009-07-02 10:11:59,

[jboss-user] [Clustering/JBoss] - Re: ConcurrentModificationException during session serializa

2009-07-02 Thread bstansbe...@jboss.com
I (or you or nbelaevski if either is up for it) need to review the session replication code to see how much of an issue this is. I haven't had cycles to do that, which is why my comments here are vague. If the issue is only protecting the attributes, then synching on the facade in the places w

[jboss-user] [EJB 3.0] - Re: Creating datasources which needs to be dynamic

2009-07-02 Thread mvb
That means I need to configure data sources to access different databases and schema and that need to be selected dynamically. For Example: I have client db clientA--- has client1schema,client2schema,client3schema ect.. clientB--- has client1schema,client2schema,client3schema ect.. In this sit

[jboss-user] [Clustering/JBoss] - Re: HASingletonDeployer ERROR upon secondary server startup

2009-07-02 Thread bstansbe...@jboss.com
Yes, please do. In the JBAS project. Actually, I see two issues in this thread: 1) Figuring out why the @Depends on your EJB results in a different error message than the expected one that I got when I deployed my example POJO. 2) Coming up with a mechanism to avoid the ERROR message altogether

[jboss-user] [Security & JAAS/JBoss] - Re: JBOSS Negotiate using AdvancedLdapLoginModule throws bin

2009-07-02 Thread dufferdo25
OK I solved the bind issue by setting a value in adsiedit dcHeuristics 002 which allows anonymous access to read or list AD. I would have thought that the UPN would be reading the AD and not an anonymous conn. I now have a new error: 2009-07-02 15:56:29,763 DEBUG [org.jboss.security.negotia

[jboss-user] [JBoss jBPM] - Asynchronous continuations in Weblogic 10.x using MDB (jBPM

2009-07-02 Thread Clod
After struggling for a few days with asynchronous continuations with the following configuration: Weblogic 10.3 jBPM 3.3.1.GA we could finally make them work. Although we followed configuration instructions from the manual thoroughly, things didn't work as expected. The most weird thing was th

[jboss-user] [EJB 3.0] - Re: Creating datasources which needs to be dynamic

2009-07-02 Thread jaikiran
"mvb" wrote : Can any one help me in creating data sources | | Datasource creation is explained here http://www.jboss.org/community/wiki/DSdotXML http://www.jboss.org/community/wiki/ConfigDataSources You can find example files in %JBOSS_HOME%/docs/examples/jca folder. But what do you me

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: I got a problem when I start the server

2009-07-02 Thread jaikiran
Which version of JBoss AS? And where was this file placed? Also are you sure that there were no other dependent items which depended on the existence of this file? Can you post the entire console log (not server.log)? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtop

[jboss-user] [JBoss Messaging] - Re: Bridge Stuck after reconnect

2009-07-02 Thread gaohoward
Hi Markus, Are there not 4 queues involved? anonymous wrote : | outgoing >>---OutgoingBridge_Liberte2--->> local_outgoing | incoming <<---IncomingBridge_Liberte2---<< local_incoming | Also where are the two bridges deployed, i mean which bridge with which server? View the original post

[jboss-user] [JBoss Cache: Core Edition] - Re: JDBCCacheLoader with Oracle 10g problem

2009-07-02 Thread niuxuetao_fiserv
Hi Mircea, Thanks for the response. Do you mean the version I am using does not work for Oracle? I actually have two problems: 1. Running with 1 thread, as pasted above, there are 3 exception traces logged by JBossCache at both WARN and ERROR level, they are not thrown by JbossCache as runtim

[jboss-user] [JBoss Messaging] - Re: Message bridge performance in WAN

2009-07-02 Thread jjacobwip
Thanks for quick response. The bridge is deployed at JBoss Messaging side View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241511#4241511 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241511 _

[jboss-user] [JNDI/Naming/Network] - Re: Getting DB connection from jboss pool via JNDI

2009-07-02 Thread PeterJ
anonymous wrote : Is a Tomcat that runs on the same physical machine but in another process than JBoss a 'remote' client? Yes. Any Java app that runs in another java process (not the java process running JBoss AS) is a remote client. And app that runs within the same java process as JBoss AS is

[jboss-user] [JBoss jBPM] - Lifecycle management of jBPM classes

2009-07-02 Thread jugglingcats
Hi, I would like to use Spring or TapestryIOC to manage the lifecycle of custom objects used by my process (jBPM4 RC1), ie. my DecisionHandler and ExternalActivityBehaviour classes. Is there a simple way to do this? I can probably write a delegate but a more direct way would be preferable. Man

[jboss-user] [JBoss Portal] - Re: What happened to JBoss Portal 2.7.2 bundled download?

2009-07-02 Thread thomas.he...@jboss.com
Sourceforge had issues yesterday/today, from their mouth an hour ago it was supposed to get back to normal in 4 hours View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241529#4241529 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=

[jboss-user] [JBoss Cache: Core Edition] - Re: JDBCCacheLoader with Oracle 10g problem

2009-07-02 Thread niuxuetao_fiserv
The 2nd problem I have occurs when running with multiple threads. This is a runtime exception being thrown, not a log message. (besides the 1-thread problem still arises in multiple thread environment) This problem appears differently in JSE environment (where only DummyTransactionManager is us

[jboss-user] [Installation, Configuration & DEPLOYMENT] - form authentication not working properly on Jboss 5 GA

2009-07-02 Thread shalley.singh
hi all, i am using jBoss 5 to deploy a web app which was originally deployed and successfully running on ORACLE app server. i have updated following files in jboss 1.*-ds.xml 2.login-config.xml 3.jboss-web.xml form based authentication has been used on struts 1.x platform with j_security_check a

[jboss-user] [JBoss Messaging] - Re: Message bridge performance in WAN

2009-07-02 Thread jjacobwip
In our case, the messages (1000) are already available in the ActiveMQ queue. i.e for testing purpose, the messages are already posted to the queue and left their without consuming. When the bridge is started, it is actually waiting for secs and consuming the messgaes - there is a delay here ev

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: cannot open excel files (with excel in IE) which stored

2009-07-02 Thread PeterJ
zlatan24 - please do not reply to 5-year-old posts. I doubt that any of the original posters care anymore. Besides, what you posted doesn't even help solve the problems mentioned. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241520#4241520 Reply to the pos

[jboss-user] [JBoss Portal] - Re: What happened to JBoss Portal 2.7.2 bundled download?

2009-07-02 Thread PeterJ
I clicked the "download" link next to "JBoss Portal + JBoss AS 4.2.3 - 2.7.2" and the download window popped up and the download started. What browser are you using? I'm using Firefox. Also, be careful of "helpful" browser addons - I once had a "Sourceforge helper" addon that was anything but a

[jboss-user] [Installation, Configuration & DEPLOYMENT] - JBAS 5.1.0.GA - trying to deploy old JBoss.NET web-service.x

2009-07-02 Thread simon_temple
If I drop the web-service.xml in a .wsr or try deploying directly using the MainDeployer nothing seems to be happening. I'm trying to provide support for both old JBoss.NET and JBoss.WS stacks - we have a lot of old Axis based code and don't want to rework it all right now... I'm beginning to t

[jboss-user] [JBoss Tools (users)] - Re: hey all i need JBDS

2009-07-02 Thread PeterJ
Also, it sounds like you are clicking that link in your browser. Don't do that - follow the instructions on that page, which imply that you first have to download and install "Eclipse for Java EE Developers" from the Eclipse web site, and then run Eclipse, and within Eclipse use the Update and I

[jboss-user] invoke web service soap

2009-07-02 Thread jp
Hi, I'm using JBoss 4.2.3.GA. I had a jar that invoke some Web Service SOAP. I haved a Junits that test this web services, and works fine. Then, I have an other app. that publish some REST WS, this WS do some staff and call the jar. I deploy this REST WS in the JBoss When I invoke the REST WS, t

[jboss-user] [Installation, Configuration & DEPLOYMENT] - I got a problem when I start the server

2009-07-02 Thread skkuchipudi
Hi, Im using the same server since 8 months and I never find the failure situation which I couldn't find the solution. Here is the problem. Today morning I created another mail-services.xml with gu-mail-services.xml and I didn't change anything. by default it failed due duplicate names and i

[jboss-user] [JBoss AOP] - Re: JDK 5 annotated method pointcut

2009-07-02 Thread kedzie
I set the aoppath, and the aop compiler finds the Aspect class correctly. It is the pointcut that doesn't work. I get the same result when I use a jboss-aop.xml file instead of annotations to define the pointcut (pointcut still points to an annotated method). When I change the pointcut to a s

[jboss-user] [JBoss Messaging] - Re: Clusted FailOver doesn't seem to work correctly with Bri

2009-07-02 Thread gaohoward
Hi, Can you please post your bridge service configure here? Thanks Howard View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241503#4241503 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241503 ___

[jboss-user] [JBoss Messaging] - Re: Message bridge performance in WAN

2009-07-02 Thread gaohoward
hi, where did you deploy the bridge? at the ActiveMQ side or the JBoss Messaging side? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241502#4241502 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241502 __

[jboss-user] [JBossWS] - Re: JBoss client WS

2009-07-02 Thread jpredpos
I migrated to JBoss 5.1.0 and throws some errors: 11:02:22,389 ERROR [[ServletAdaptor]] Servlet.service() para servlet ServletAdaptor lanzó excepción javax.servlet.ServletException: non-HTTP request or response at javax.servlet.http.HttpServlet.service(HttpServlet.java:829) at

[jboss-user] [EJB 3.0] - Creating datasources which needs to be dynamic

2009-07-02 Thread mvb
Can any one help me in creating data sources that I can use them dynamically? I am working on EJB3 and J Boss 5. Thanks in advance. Bachi. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241494#4241494 Reply to the post : http://www.jboss.org/index.html?modu

[jboss-user] [JBoss Messaging] - Re: Message bridge performance in WAN

2009-07-02 Thread timfox
If you are sending a lot of messages in a fairly constant stream it doesn't make a lot sense to me why you are setting maxBatchSize to a value other than -1, since the batch will be sent anyway when maxBatchSize is reached. Regarding the speed of bridging, this is a function of many factors incl

[jboss-user] [Microcontainer] - Re: Why is kernel looking for default constructor?

2009-07-02 Thread david.ll...@jboss.com
Yeah, it should have been on the user forums. But give the guy a break, we've all been there. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241490#4241490 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241490 ___

[jboss-user] [JBoss Messaging] - Re: Message bridge performance in WAN

2009-07-02 Thread jjacobwip
Thanks, we had already gone through JBM docs. What we noticed is that when MaxtBatchTime is set as 1 milli second, bridge is sending only one message. According to that in one second, bridge should send 1000 messages which is not the case. What we would like to know is why the bridge is taking

[jboss-user] [Beginners Corner] - Re: jBoss and Hibernate

2009-07-02 Thread MarcelK1607
Also I am running the client app in Eclipse, maybe I need hibernate there? I am confused sorry. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241482#4241482 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241482 ___

[jboss-user] [Beginners Corner] - Re: jBoss and Hibernate

2009-07-02 Thread MarcelK1607
Exception in thread "main" java.lang.reflect.UndeclaredThrowableException | at $Proxy2.findMedewerker(Unknown Source) | at nl.capgemini.inzetmanagement.client.Client.main(Client.java:27) | Caused by: java.lang.ClassNotFoundException: org.hibernate.hql.ast.QuerySyntaxException |

[jboss-user] [JBoss Messaging] - Bridge Stuck after reconnect

2009-07-02 Thread mclu
Using 1.4.4 GA I have 2 Servers where messages are bridged from 2 Queues via 2 bridges. Server A Server B outgoing >>---OutgoingBridge_Liberte2--->> local_outgoing incoming <<---IncomingBridge_Liberte2---<< local_incoming Someti

[jboss-user] [JBossWS] - JBoss client WS

2009-07-02 Thread jpredpos
Hi, I'm using JBoss 4.2.3.GA. I had a jar that invoke some Web Service SOAP. I haved a Junits that test this web services, and works fine. Then, I have an other app. that publish some REST WS, this WS do some staff and call the jar. I deploy this REST WS in the JBoss When I invoke the REST

[jboss-user] [Beginners Corner] - Re: jBoss and Hibernate

2009-07-02 Thread Wolfgang Knauf
Hi! Where do you see the exception? In your EJB or in the client side? Please provide more details about your app. JBoss uses Hibernate internally to perform all EJB3 database access. Does your app contain hibernate JARs? Best regards Wolfgang View the original post : http://www.jboss.org/i

[jboss-user] [JBossWS] - sending Soap message with timeout

2009-07-02 Thread sbutt
Hi Folks, I have implemented a basic soap client (javax.xml.soap.*). | | public Message processSOAPRequest(Message message) { | try { | MessageFactory msgFactory = MessageFactory.newInstance(); | SOAPMessage soap = msgFactory.createMessage(); | SOAP

[jboss-user] [EJB 3.0] - Re: java.lang.RuntimeException: java.lang.ClassCastException

2009-07-02 Thread Wolfgang Knauf
Hi, please post also the lookup code of "com.logica.heca.lpr.dataLoader.DataLoaderThread.run". Is your client an application client or a web app? How is the structure of your app? If application client: Does the client JAR contain the most recent version of your EJB jars? If web app or other

[jboss-user] [JBoss Messaging] - Re: Message bridge performance in WAN

2009-07-02 Thread gaohoward
Hi, here is what JBM doc says | 9.3.11. MaxBatchSize | This attribute specifies the maximum number of messages to consume from the source destination before sending | them in a batch to the target destination. It's value must >= 1 | | 9.3.12. MaxBatchTime | This attribute specifies

[jboss-user] [Management, JMX/JBoss] - MBean in Cluster

2009-07-02 Thread mayankmit2002
Hello All, I'm a newbie to Jboss Clustering service. I want to configure my MBean for clustering support, but dont know how to do it. is there any document which guide us to do so. I'm using annotations to to deploy the bean as MBean View the original post : http://www.jboss.org/index.ht

[jboss-user] [Microcontainer] - Re: Why is kernel looking for default constructor?

2009-07-02 Thread alesj
"richard.opa...@jboss.com" wrote : Thank you everybody, I am blind :( | Sorry for taking your time. Could you please do the following next time: * do not post your/user issues on MC dev forum (I just moved this one to user forum) * do proper testing before posting about "feelings" Doubting such

[jboss-user] [JBoss OSGi] - Re: OSGi + EE code in the same JAR ?

2009-07-02 Thread thomas.dies...@jboss.com
We currently focus on Blueprint. Please monitor the roadmap for an update on ejb3/ws support. You can also file feature requests and vote on individual issues. This helps us to decide what to do next https://jira.jboss.org/jira/browse/JBOSGI?report=com.atlassian.jira.plugin.system.project:roadm

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

2009-07-02 Thread mircea.markus
You can make them share the same TransactionManager instance, and this way cache will register itself to existing transactions associated with the thread. Take a look at TransactionManagerLookup View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241450#4241450 R

[jboss-user] [JBoss jBPM] - Re: Is there any kind of variable in JBPM4 like 'transient v

2009-07-02 Thread frantisek.ko...@gmail.com
I was searching for the same in vain. But I use PVM with own language so I coded that myself. If you find it please let us know! Thanks Fero View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241448#4241448 Reply to the post : http://www.jboss.org/index.htm

[jboss-user] [JBoss Tools (users)] - Re: managed bean

2009-07-02 Thread micuentadecasa
it seems that its a bug in Edit/binding dialog, that with managed beans recognized them as objects and if its a variable i does not recognized it as object. but in intellisense in EL it works... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241442#4241442

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

2009-07-02 Thread sridhar_ratna
Hi, I am using jboss cache as in memory database with persistent mechanism as JDBM. I have multiple cache instances each having own private data. For the database i am using spring with hibernate. My question is how can i put both cache manipulation and hibernate database actions under a singl

[jboss-user] [EJB 3.0] - Re: circular references

2009-07-02 Thread robert.geisler
update: we put @IgnoreDependency on one side of the circular dependency as shown above. our .ear gets deployed successfully and we didnt recognize any runtime error yet. we will have a look at it the next few days... but it seems to work : ) jaikiran, thank you very much for your first-aid ; ) an

[jboss-user] [JBoss Tools (users)] - Re: managed bean

2009-07-02 Thread micuentadecasa
i tried it, but when i go to visual page and try to bind a property in my class with the visual editor i see: 1. it appears as a variable not a bean or managed bean 2. i can only asign the class , not a property [/img] View the original post : http://www.jboss.org/index.html?module=bb&op=viewt

[jboss-user] [JBoss jBPM] - what is the executionContext equivalent in jbpm4.0 to set an

2009-07-02 Thread reetaparida
what is the executionContext equivalent in jbpm4.0 to set and get the variable values globallythroughout the process? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241425#4241425 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=

[jboss-user] [JBoss Messaging] - Re: Message bridge performance in WAN

2009-07-02 Thread jjacobwip
Here is the bridge config. anonymous wrote : | jboss.mq:service=JMSProviderLoader,name=ActiveMQJMSProvider | jboss.messaging:service=JMSProviderLoader,name=JMSProvider | inbound | queue/LocalQueue | xx | xx | | 0 | | 50 | 4000

[jboss-user] [JBoss Messaging] - Message bridge performance in WAN

2009-07-02 Thread jjacobwip
Hi, We have an ActiveMQ queue which gets posted with 65K+ messages in an hour. These messages needs to be transfered over the WAN to a local queue created in Jboss messaging. We have created a message bridge for this where the source of the bridge is the Remote ActiveMQ queue and target is a lo

[jboss-user] [EJB 3.0] - java.lang.RuntimeException: java.lang.ClassCastException: $P

2009-07-02 Thread ravendra.gupta
Hi all, I am using Jboss application server 4.2.3 GA. my problem is, when I create a stateless session bean and deploy that works fine but if I change this bean to stateful session bean by changing annotation, that give classCastException | package com.logica.heca.lpr.ruleengine; | | imp

[jboss-user] [JBoss Cache: Core Edition] - Re: why eviction needs Mbean in standalone environment?

2009-07-02 Thread sridhar_ratna
Thank you, Problem got resolved View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241420#4241420 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241420 ___ jboss-user mailing list

[jboss-user] [JBoss Cache: Core Edition] - Re: why eviction needs Mbean in standalone environment?

2009-07-02 Thread mircea.markus
the way it goes is: - it tries to parse the config file expecting it to be a JBossCache 3.x config - if it cannot parse it will also check weather it is an 2.x config, and here is the logged exception. The problem is the fact that the 3.x file is not correct. Might be because you're using an "ur

[jboss-user] [JBoss Messaging] - Re: Problem with remote JBM access from applet running on co

2009-07-02 Thread kweeboo
I have tested remoting by itself and experienced no problem. So, the problem is clearly related to jboss messaging. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241418#4241418 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=re

[jboss-user] [JBoss Cache: Core Edition] - Re: JDBCCacheLoader with Oracle 10g problem

2009-07-02 Thread mircea.markus
anonymous wrote : No, sorry, I managed to reproduce the problem with one thread on DEBUG level. Here is the log: | Code: | | [2009-07-01 16:11:48,367] [Detection1] DEBUG JDBCCacheLoader - executing sql: INSERT INTO Cached_Eve | nts (fqn, node, parent) SELECT ?, ?, ? FROM Cached_Events_D

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - JBoss 5 with Hibernate javax.naming.NameNotFoundException: h

2009-07-02 Thread rhuguet
I am migrating a 4.0.2 JBOSS app which uses hibernate to JBOSS 5.0.1 GA but if i try to get a hibernate session i keep getting the following error in JBOSS: javax.naming.NameNotFoundException: hibernate not bound The deployment of my UserEjb works fine (see log below) but the org.hibernate.Sess

[jboss-user] [JBoss Tools (users)] - Re: managed bean

2009-07-02 Thread akazakov
Maybe JBoss Seam is what you are looking for. See http://www.seamframework.org/ There you can use @Name annotation in Java classes. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241414#4241414 Reply to the post : http://www.jboss.org/index.html?module=bb&op=

[jboss-user] [JBoss jBPM] - Re: How can I suspend or resume a ProcessInstance in jBPM4?

2009-07-02 Thread xu.huisheng
If I useexecutionService.endProcessInstance(id, Execution.STATE_SUSPENDED), there will occur an Exception: "invalid end state: suspended" I think we need find another way. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241411#4241411 Reply to the post : ht

[jboss-user] [JBoss jBPM] - Re: How can I put a personal task back to group task list?

2009-07-02 Thread xu.huisheng
Thank you. It works. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241409#4241409 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241409 ___ jboss-user mailing list jboss-user

[jboss-user] Spring framework with JBOSS tutorial

2009-07-02 Thread Sam Wun
Dear all, Is there any tutorial or example I can follow for using Spring framework in JBOSS? Very appreciate for any suggestion and help. Thanks ___ jboss-user mailing list jboss-user@lists.jboss.org https://lists.jboss.org/mailman/listinfo/jboss-user

  1   2   >