[jboss-user] [EJB 3.0] - Re: Enable @Resource annotations in webapps

2009-03-17 Thread jaikiran
You mean in servlets? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218480#4218480 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218480 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - bpel fault handler problem ----- plsssss help

2009-03-17 Thread LakshmiPrasad
Hi all, I have a problem with jbpm fault handler We have a custom Exception class XSLTransformServiceException which is being used by XSLTTransform webservice. This XSLTransformServiceException extends Exception and we want to get the error message(by using getMessage()) from the

[jboss-user] [JBoss jBPM] - bpel fault handler problem ----- plsssss help

2009-03-17 Thread LakshmiPrasad
Hi all, I have a problem with jbpm fault handler We have a custom Exception class XSLTransformServiceException which is being used by XSLTTransform webservice. This XSLTransformServiceException extends Exception and we want to get the error message(by using getMessage()) from the

[jboss-user] [EJB 3.0] - Re: Enable @Resource annotations in webapps

2009-03-17 Thread kdekooter
Yes, in servlets or other beans in my web application. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218492#4218492 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218492 ___

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Manifest.MF Class-Path is ignored during ear file deploy

2009-03-17 Thread lior1970
Hi, Thanks for your reply! Here is the entire stack trace: === | | JBoss Bootstrap Environment | | JBOSS_HOME: C:\jboss-5.0.0.GA\ | | JAVA: c:\Java\jdk1.6.0_10\\bin\java | | JAVA_OPTS:

[jboss-user] [JBoss Messaging] - JMS connection reset does not happen because of object lock

2009-03-17 Thread vsrinivasan
Hello Team, The JMS connection pool would not get cleared, because the GenericKeyedObjectPool.clear is Looked by some other thread and waiting for some other thread object to be notified. So all the request to JMS reset are keep on waiting, Until the server itself gets restarted. This

[jboss-user] [EJB 3.0] - Re: Enable @Resource annotations in webapps

2009-03-17 Thread jaikiran
Its supported in JBossAS-5 versions. All you need is an web application with version 2.5 of the web_app xsd in your web.xml: web-app version=2.5 | xmlns=http://java.sun.com/xml/ns/javaee; | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; |

[jboss-user] [Microcontainer] - Re: Deployers and service dependencies

2009-03-17 Thread heiko.br...@jboss.com
anonymous wrote : | I would just create a proper version of DependenciesMetaData, | leaving its deployment to DependenciesMetaDataDeployer and DeploymentDependencyDeployer. | That means any deployer can create DependenciesMetaData as it's output? Is that already available in 5.0.0.GA?

[jboss-user] [JBoss jBPM] - Re: Clean jbpm Database ?

2009-03-17 Thread alex.gui...@jboss.com
You can call GraphSession.deleteProcessInstance on each instance you want to remove. Note that this method is somewhat slow due to cascading. If you want mass deletion you can analyze the order of the statements executed by deleteProcessInstance and write a SQL script. View the original post :

[jboss-user] [EJB 3.0] - Re: Enable @Resource annotations in webapps

2009-03-17 Thread kdekooter
Thanks. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218508#4218508 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218508 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: No two Schemas should share the same targetNamespace

2009-03-17 Thread alex.gui...@jboss.com
Please post the full stack trace and the environment (OS and JDK versions). View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218507#4218507 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218507

[jboss-user] [Microcontainer] - Re: Deployers and service dependencies

2009-03-17 Thread heiko.br...@jboss.com
anonymous wrote : | If unit != top unit, this won't point to the right MC component. | You need to pass in the name of top deployment unit. | You right. I'll check. I think the deployer picks up subdeployments. View the original post :

[jboss-user] [JBoss jBPM] - Re: bpel fault handler problem ----- plsssss help

2009-03-17 Thread alex.gui...@jboss.com
Please avoid duplicate posts. They clutter the forum and do not get you faster replies. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218514#4218514 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218514

[jboss-user] [JBoss jBPM] - Re: Problem with BPEL pick activity

2009-03-17 Thread alex.gui...@jboss.com
The BPEL pick structure is supposed to execute the activity associated with the first operation to be requested. The second operation is not supposed to complete. I do not get what your intent is from your description. Can you please post the relevant portion of your process document?

[jboss-user] [Microcontainer] - Re: Deployers and service dependencies

2009-03-17 Thread heiko.br...@jboss.com
Great, it works. You'd been right. It depends on the units top level name. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218518#4218518 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218518

[jboss-user] [JBoss jBPM] - Re: best way to clean jbpm db

2009-03-17 Thread alex.gui...@jboss.com
In 3.2.6 the call GraphSession.deleteProcessDefinition() will delete all process instances, then delete the process definition. Do not expect it to be too fast, tough. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218519#4218519 Reply to the post :

[jboss-user] [Microcontainer] - Re: Deployers and service dependencies

2009-03-17 Thread alesj
heiko.br...@jboss.com wrote : | Simply create DependenciesMetaData as a deployer output? | Yes, and as an attachment. That way you don't have to bother with other details. What you want is to create your own dependency items, how this maps to deployment can (almost) be considered impl

[jboss-user] [Microcontainer] - Re: Deployers and service dependencies

2009-03-17 Thread alesj
heiko.br...@jboss.com wrote : Great, it works. You'd been right. It depends on the units top level name. Ever doubted? ;-) View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218522#4218522 Reply to the post :

[jboss-user] [JBoss Messaging] - jms over port 80

2009-03-17 Thread mendret
hello all, i'm trying to configure JBoss 5.0.1.GA so that it only uses port 80 and http for the whole client-server communication. But I haven't figured out how to do this for messaging, in jboss 4.x it was possible to simply add | attribute name=URLPrefixhttp:///attribute | attribute

[jboss-user] [JBossWS] - wsprovide packages with multiple services

2009-03-17 Thread pmckeown
Hi all, I've been searching the forums and not been able to find any posts regarding this issue and I'm new to JBoss so apologies if this has been previously covered. I'm attempting to expose the business layer of our application as Web Services. As the business layer has already been

[jboss-user] [JBoss Messaging] - Re: jms over port 80

2009-03-17 Thread ataylor
have a look at the user docs. It explains how to configure http. http://www.jboss.org/jbossmessaging/docs/index.html View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218533#4218533 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: jms over port 80

2009-03-17 Thread jmesnil
it's possible you have already something else running on port 80 (e.g. web server, web service or something else) Did you try loading the URL in your browser? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218536#4218536 Reply to the post :

[jboss-user] [Remoting] - jboss.remoting Mbean and JBoss 5

2009-03-17 Thread Rhodan76
Hello, recently we migrated to jboss 5 from jboss 4.2.3. Now we are missing the jboss remoting mbean. In jboss 4.2.3 there was an jboss.remoting:service=Connector,transport=socket Mbean defined in the /conf/jboss-service.xml. In Jboss 5 there isn't such an entry in this file. Has this been

[jboss-user] [JBoss jBPM] - creating a jsp page to invoke jbpm deployed process

2009-03-17 Thread nebri.faical
Hi ! I am new to jbpm. i installed jbpm-jpdl-3.2.2 (suite) using ant 1.7 and eclispe 3.3 i deployed my first process. I can start it, end it... But i don't now how to invoke and start my process using a personal jsp or jsf page. Thanks for help... Regards, faical View the original post :

[jboss-user] [Remoting] - Re: jboss.remoting Mbean and JBoss 5

2009-03-17 Thread Rhodan76
Ok - tried the search and found this detailed answer here http://www.jboss.org/index.html?module=bbop=viewtopict=143996 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218540#4218540 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Failed deployment, several tomcat deployment and ctxPath=/we

2009-03-17 Thread vaguardia
Hello everybody! I have a spring application that I try to deploy in JBoss 5.0.0 GA. For that I put the war file (sipre.war) under server/default/deploy directory but I do not get to finish the deployment. According to stacktrace it seems that there are several tomcat deployment and I do not

[jboss-user] [JBoss Cache: Core Edition] - Re: Using Jboss Cache Core 3 or 2 in Jboss 4.3

2009-03-17 Thread manik.surt...@jboss.com
Have you read https://www.jboss.org/community/docs/DOC-10254? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218557#4218557 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218557

[jboss-user] [JBoss Cache: Core Edition] - Re: WARN [TxInterceptor] Commit failed. Clearing stale loc

2009-03-17 Thread manik.surt...@jboss.com
Do you need a replicated cache or a standalone one? :-) View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218559#4218559 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218559 ___

[jboss-user] [JBoss Messaging] - Re: jms over port 80

2009-03-17 Thread ataylor
you need to either stop the web server or open another port such as 8080. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218560#4218560 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218560

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: how to configure jaas with jboss 5.0.1

2009-03-17 Thread BjPenn
Well my problem is my application can authenticate but the authorization is not correct, cause i get the jsp page wich tells i cant acces to the jsp due to no having authorization. So this is the steps i made: 1-First i changed my jboss-web.xml : ?xml version=1.0 encoding=UTF-8 ? | -

[jboss-user] [JBoss Cache: Core Edition] - Re: CacheJmxWrapperMBean is deprecated, but the documentatio

2009-03-17 Thread manik.surt...@jboss.com
JMX should primarily be used for management information and not as a registry of services, this is why the component is deprecated. You should have your own code create and register the cache in JNDI and your client code look up the cache from JNDI. View the original post :

[jboss-user] [Javassist user questions] - javassist based hibernate proxies on remote machine with net

2009-03-17 Thread mati_
Hi all, I am working on a swing / web application bridge for a swing client. As a communication layer I am using something I would call RMI over HTTP (serialized class data is transfered through HTTP). The swing client needs to be small because it will be invoked using Java WebStart. This is

[jboss-user] [JBoss jBPM] - Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
Hi, I am trying to create a timer on a state node which works fine(with script) but once the timer is executed I want to move to next mail node and send a mail automatically. When I tried doing that mail is not sent. Also on the state node where I have the time configured if I try to specify

[jboss-user] [JBoss Cache: Core Edition] - Re: is it possible for MVCCInvocationContext to have null mv

2009-03-17 Thread manik.surt...@jboss.com
You have a good point. Perhaps as a recommendation, READ_COMMITTED should be used *if* using JBC3, Hibernate + MVCC. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218569#4218569 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Using JBoss Negotiate wit RestEasy servlets

2009-03-17 Thread kc7bfi
What I want to do is use the JBoss Negotiate tools to secure a RestEasy servlet. I am not concerned with authorization but I am interested in authenticating the user to the RestEasy servlet. I have looked at the Negotiate code and it provides good documentation of interfacing it with IE or FF,

[jboss-user] [JBoss Messaging] - Re: jms over port 80

2009-03-17 Thread timfox
or use the servlet transport. this is documented on the wiki then you can share the port with other traffic View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218573#4218573 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: jms over port 80

2009-03-17 Thread timfox
http://www.jboss.org/community/docs/DOC-9632 http://www.jboss.org/community/docs/DOC-9631 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218574#4218574 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218574

[jboss-user] [JBoss Messaging] - Re: jms over port 80

2009-03-17 Thread mendret
so two services on the same port won't work, well that's expected, but is there although no way of just sending and receiving messages over port 80, but letting the actual service run on another port? if i use the http-transport it uses per default port 4458, for the connector-service, to

[jboss-user] [JBoss Messaging] - Re: jms over port 80

2009-03-17 Thread mendret
oh, ok thanks timfox you probably answered my question since i was writing my last reply View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218577#4218577 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218577

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
When I try to add action handler I am getting the following error: org.jbpm.graph.def.DelegationException at org.jbpm.graph.def.GraphElement.raiseException(GraphElement.java:382) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at

[jboss-user] [Security JAAS/JBoss] - authentication with no authorization problem

2009-03-17 Thread BjPenn
Well my problem is my application can authenticate but the authorization is not correct, cause i get the jsp page wich tells i cant acces to the jsp due to no having authorization. i am using jboss 5.0.1GA jdk6.So this is the steps i made: 1-First i changed my jboss-web.xml : ?xml version=1.0

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss 4.04-GA, issue with jconn3.jar

2009-03-17 Thread Wolfgang Knauf
Hi, this does not sound like an issue of JBoss. Google brought this: http://www.sybase.de/detail?id=1009784 So it seems to be a matter of your client app. If you don't think it is a problem of the client, pleas post more details. Best regards Wolfgang View the original post :

[jboss-user] [JBoss Cache: Core Edition] - Re: Unknown Magic Number

2009-03-17 Thread manik.surt...@jboss.com
Have you specified any custom marshallers in your cfg? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218566#4218566 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218566 ___

[jboss-user] [JBoss Messaging] - Re: jms over port 80

2009-03-17 Thread mendret
anonymous wrote : | it's possible you have already something else running on port 80 | yes the webserver is running on port 80, but that is exactly the questioned behavior, all traffic between client and server shall be over only one port, since the firewall has only one open port for

[jboss-user] [JBoss Cache: Core Edition] - Re: NullPointerException on using RemoveOnEvictActionPolicy

2009-03-17 Thread manik.surt...@jboss.com
why do you say RemoveOnEvictActionPolicy is the root cause? At what point do you see the NPE, when calling cache.start()? What do you see in your stack trace? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218565#4218565 Reply to the post :

[jboss-user] [JBoss Cache: Core Edition] - Re: Locking order when lockParentForChildInsertRemove == tru

2009-03-17 Thread ksobolew
Sorry for the delay. Yes, it's easy to simulate but not in a deterministic way. My brute force test found it just bcause it launches a torrent of threads on the poor cache :) I'll see what I can do to simplify this. BTW: I am observing another exception that pops up sometimes: a

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Failed deployment, several tomcat deployment and ctxPath

2009-03-17 Thread jaikiran
By any chance, does the deploy folder of JBoss have a sipre directory? If yes, then remove it. You can also post the output of the following command : cd C:/Tools/jboss-5.0.0.GA/server/default/deploy/ | dir View the original post :

[jboss-user] [JBoss Cache: Core Edition] - Re: What's the correct way to invalidate a node in 3.x, incl

2009-03-17 Thread manik.surt...@jboss.com
removeNode() is a clustered call and will cause removal on all instances in the cluster. It is also as efficient as an invalidate message (just sends an Fqn). In fact, the only difference between removeNode() and invalidate is that invalidate will not affect any cache loaders configured (if

[jboss-user] [Beginners Corner] - Reassigning Naming Services and other ports

2009-03-17 Thread millerdl
Is there a way that I can reassign ports 1098 and 1099 in JBoss to avoid an issue with other internal software that I have to run with JBoss? I found the Wiki page with the port listings, but did not see instructions on how to change them. If there is a forum entry with detailed instruction

[jboss-user] [JBoss Cache: Core Edition] - Re: Architecture Advice: Exactly One Cache Instance Per Node

2009-03-17 Thread manik.surt...@jboss.com
In general, I would recommend using JNDI over JMX for this. JMX is really designed for manamenent information and not as a component registry. Here is a document (http://www.jboss.org/community/docs/DOC-10252) on how this can be done on WebLogic. Here is a similar doc for WebSphere

[jboss-user] [JBoss Cache: Core Edition] - Re: Tile Cache, Behaviour on Eviction Help

2009-03-17 Thread manik.surt...@jboss.com
Use a Cache Listener and register for the NodeEvicted callbacks. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218597#4218597 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218597

[jboss-user] [JBoss Cache: Core Edition] - Re: Best practice to establish if a node has children

2009-03-17 Thread manik.surt...@jboss.com
Submit a feature request. I can add this to 3.1.0. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218599#4218599 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218599 ___

[jboss-user] [JBoss Cache: Core Edition] - Re: org.jboss.cache.GlobalTransaction never released

2009-03-17 Thread manik.surt...@jboss.com
Sounds like https://jira.jboss.org/jira/browse/JBCACHE-1454. This is fixed in 3.0.2.GA. Is it possible to upgrade? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218600#4218600 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread gchanteb
Could you show your file plz ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218602#4218602 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218602 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging] - Re: JMS connection reset does not happen because of object l

2009-03-17 Thread gaohoward
Comparing with your version with the latest version, you can solve this problem by upgrading. ServerSessionPoint: 1.4.0.sp1: waitLock.wait(); latest (1.4.2.GA SP1) waitLock.wait(wait) View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218604#4218604 Reply

[jboss-user] [JBoss Cache: Core Edition] - Re: ExpirationPolicy ClusteredCacheLoader

2009-03-17 Thread manik.surt...@jboss.com
Yes, since evicting will only remove stuff from memory not from a cache loader. If you want to remove stuff from the loader as well, I would recommend upgrading to JBC 3 and using a RemoveOnEvictActionPolicy (see sample configs that ship with JBC 3) View the original post :

[jboss-user] [JBoss Portal] - Re: jQuery in jBoss portal - problem with a simple tabbed pa

2009-03-17 Thread woezelmann
Do you use the jQuery $-operator inside your custom javascript-code? If so, there is a confict with the jboss prototype library. Simply put this line in front of your custom code: jQuery.noConflict(); and then replace all $ by jQuery View the original post :

[jboss-user] [JBoss Messaging] - Re: Server Hang due to dead Lock

2009-03-17 Thread gaohoward
https://jira.jboss.org/jira/browse/JBMESSAGING-1547 was created. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218623#4218623 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218623

[jboss-user] [Security JAAS/JBoss] - Re: Using JBoss Negotiate wit RestEasy servlets

2009-03-17 Thread kc7bfi
To clarify, I want to use a Java program to request data from a REST servlet. I am assuming that the JBoss Negotiate tools use tokens stored in the HTTP header (correct?). Is there any further documentation on setting this up? Thanks, David View the original post :

[jboss-user] [JBoss jBPM] - Error Deploying

2009-03-17 Thread b16d
Hello, I am testing jboss(5.0.0) jbpm with eclipse. When a deploy a project I have this error in Eclipse log : | !ENTRY org.jbpm.gd.jpdl 4 0 2009-03-17 13:49:37.234 | !MESSAGE Exception happened while deploying | !STACK 0 | java.io.IOException: Server returned HTTP response code: 403

[jboss-user] [JBoss jBPM] - Re: creating a jsp page to invoke jbpm deployed process

2009-03-17 Thread Toriton
This is how i invoke JBPM context from a servlet that i use as test. JBPM and Servlet or your custom webapp are on the same server :). Getting JBPMContext. JbpmConfiguration jbpmConfiguration = JbpmConfiguration.getInstance(); JbpmContext ctx = jbpmConfiguration.createJbpmContext(); Retrieve

[jboss-user] [Installation, Configuration DEPLOYMENT] - EARDeployment Apllication1.earapos; is not registered.

2009-03-17 Thread AJanz
we have a few applications deployed with JBoss. All applications are packed as ear-files and placed in ...\server\default\deploy for deploying. After deploying all applications are available. But when we try to stop one of the applications via JMX Console. We get an error:

[jboss-user] [JBoss jBPM] - Re: creating a jsp page to invoke jbpm deployed process

2009-03-17 Thread nebri.faical
Thx Torinto for your reply. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218638#4218638 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218638 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: NullPointerException with jbossws 2.0.1

2009-03-17 Thread richard.opa...@jboss.com
The documentation fix mentioned in JBWS-1800 doesn't work on AS 5.x series. Related issue is: JBAS-6185. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218643#4218643 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218643

[jboss-user] [JBossWS] - Urgent Exception

2009-03-17 Thread mounir-aboud
Please i need a help i have deployed a web service and it is running but in each time that i make a request i got this exception and the service keep running org.jboss.ws.WSException: ClientAbortException: java.net.SocketException: Software caused connection abort: socket write error

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
I am using JBPM 3.2.3 and tomcat 5.5.20 | state name=tsmactoncr async=true | event type=node-leave | cancel-timer name=timer/cancel-timer | /event | timer duedate=7 seconds name=timer transition=to escalated | script |

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
If I have a actionHandler insted of script the following error occurs: | org.jbpm.graph.def.DelegationException | at org.jbpm.graph.def.GraphElement.raiseException(GraphElement.java:382) | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | at

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
My actionHandler contains | public void execute(ExecutionContext executionContext) throws Exception { | try { | System.out.println(It is not working...); | } catch (Exception e) { | e.printStackTrace(); |

[jboss-user] [JBossWS] - java.lang.UnsupportedOperationException: setProperty must be

2009-03-17 Thread mahdesh
Hi, I am deploying my web service on JBossWS + jboss-5.0.1.GA + jdk1.6.0_12 I am following tutorial http://www.codeproject.com/KB/java/webservice-for-jboss.aspx and web service properly deployed. I also generated client stubs using wsdl2java and wrote a client of my own. In both cases,

[jboss-user] [JBoss Messaging] - Re: MessagingXAResourceRecovery can not reconnect

2009-03-17 Thread szhigunov
No. We got away from using JBM recovery for number of reasons. Implemented custom XA based solution. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218656#4218656 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218656

[jboss-user] [JBoss Portal] - problem by security-constraint for portlet-instance

2009-03-17 Thread Fuchs
I like to give my portlet a role definition: | instance-idPortletInstance/instance-id | portlet-refPortlet/portlet-ref | security-constraint | policy-permission |

[jboss-user] [EJB 3.0] - Access the EJB2 bean from EJB3 Service problem

2009-03-17 Thread konstantin.ermakov
Hi! I am writing a small EJB3 Service app, which should call the EJB2 app. The code looks like this: | | @Service(name=MyService) | @Depends(jboss.management.local:J2EEApplication=EJB2App.ear,J2EEServer=Local,j2eeType=EJBModule,name=EJB2App.jar) | class MyManagement implements

[jboss-user] [JBoss Tools (users)] - JBoss Tools 3

2009-03-17 Thread max.ander...@jboss.com
JBoss Tools 3 is now available! See blog here http://in.relation.to/Bloggers/JBossTools3IsHere View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218660#4218660 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218660

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Failed deployment, several tomcat deployment and ctxPath

2009-03-17 Thread vaguardia
Thanks. How you can see below there was a folder called sipre in the deploy folder. | Directorio de C:\Tools\jboss-5.0.0.GA\server\default\deploy | | 17/03/2009 14:14DIR . | 17/03/2009 14:14DIR .. | 04/12/2008 17:23 2.065

[jboss-user] [Beginners Corner] - Re: Jboss log directory

2009-03-17 Thread PeterJ
JBoss AS produces only two logs by default: boot.log and server.log. If you have a third log file, then someone configured that log file. In addition, for both boot.log and server.log, the FILE appender has an entry like the following: param name=File value=${jboss.server.log.dir}/server.log/

[jboss-user] [Security JAAS/JBoss] - Re: authentication with no authorization problem

2009-03-17 Thread Wolfgang Knauf
Hi, please activate logging of the security layer (see FAQ in the sticky posts of this forum). Probably your security domain cannot verify the user, e.g. because of some configuration problem. Next time you post XML, please don't copy it from IE, but open the xml file with some text editor

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread gchanteb
It works: ?xml version=1.0 encoding=UTF-8? | | process-definition xmlns=urn:jbpm.org:jpdl-3.2 name=process6 | | start-state name=start-state1 | transition to=tsmactoncr/transition | /start-state | | state name=tsmactoncr async=true | timer

[jboss-user] [JBoss jBPM] - Re: showing image of current process stage

2009-03-17 Thread rajeshvcpp
Hi... really a nice post... i am working on the same example but i know very little about java the line Configuration.instance().GetParameter(,ProcessPath); is not compiling as i am unable to find any class with name configuration please help me regarding some file inclusions sso that

[jboss-user] [EJB 3.0] - Re: Access the EJB2 bean from EJB3 Service problem

2009-03-17 Thread jaikiran
Which version of JBossAS do you use? And what exactly happens when you say JBoss hangs? If it really stops responding, then please collect the thread dump http://www.jboss.org/community/docs/DOC-12300 and post it here. While posting logs or xml content or code, please remember to wrap it in a

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread gchanteb
And it works with action handler: ?xml version=1.0 encoding=UTF-8? | | process-definition xmlns=urn:jbpm.org:jpdl-3.2 name=process6 | | start-state name=start-state1 | transition to=tsmactoncr/transition | /start-state | | state name=tsmactoncr

[jboss-user] [JBossWS] - Re: Trying to use jboss.xml instead of @WebContext

2009-03-17 Thread alessio.sold...@jboss.com
Please read my last comments on JBWS-1309 issue on Jira. This should work since August 2008, on AS 5 or later only. I've added 2 testcases showing that: http://fisheye.jboss.org/changelog/JBossWS/?cs=9612 http://fisheye.jboss.org/changelog/JBossWS/?cs=9609 View the original post :

[jboss-user] [JBoss Cache: Core Edition] - Re: is it possible for MVCCInvocationContext to have null mv

2009-03-17 Thread bstansbe...@jboss.com
READ_COMMITTED is the recommended isolation level for the Hibernate Second Level Cache use case[1], since the Session itself acts as a R_R cache. The reason you'd use R_R in JBC is if your app was calling Session.evict() or Session.clear() and then you wanted to re-read an entity with R_R

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
When I tried this solution with my application the SOP's are printed in a infinite loop and the process never ends. Any suggestion on this plz. -Arunkumar View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218692#4218692 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
It works fine Thanks gchanteb. But Instead if I have a timer on a state node and upon escalation I have to send a mail for which I need a task node or mail node or node and configure a Handler accordingly. If I try to have a actionHandler class I am able to see exception in JBPM_jobs table

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread gchanteb
Sorry i'm french, i don't understand all your english. Could you try to re-explain again your other problem plz ? With code example and show what doesn't work now. ^^ Thx. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218693#4218693 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
When I tried to have a actionHandler inside the timer It throws the following exception: org.jbpm.graph.def.DelegationException at org.jbpm.graph.def.GraphElement.raiseException(GraphElement.java:382) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Toriton
hello , i'm working on timers too, and the timer defined in the post before work fine for me. I have a little problem after the timer execute the transition. Imagine something as stateA have the timer, after 5 sec the timer go for transition to stateB ,do something , and then have to turn back

[jboss-user] [JBossMQ] - Re: Send jms message from JBoss mq to Glassfsih Queue

2009-03-17 Thread chakri007
I mean to say that I am looking for sending a JMS msg from a normal Java class running on JBoss(4.2.3) server to Glassfish Queue. Is there any adapter/configuration that needs to be done on JBoss to communicate with Glassfish Queue? -ysc View the original post :

[jboss-user] [JBoss Portal] - Re: jboss 2.6.4-GA wsrp producer not sending correct update

2009-03-17 Thread chris.lap...@jboss.com
I will look into the issue. kharma wrote : | as a side note, i am also seeing this issue described as unreproducible. https://jira.jboss.org/jira/browse/JBWS-1932 I see that as well. Feel free to chime in on that JIRA. I had given up on it since it isn't adversely affecting Portal and there

[jboss-user] [Beginners Corner] - Re: Reassigning Naming Services and other ports

2009-03-17 Thread PeterJ
Which version of JBoss AS? How to do this in 5.0 is different than what was done in 4.2.x and 4.0.x. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218704#4218704 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218704

[jboss-user] [JBoss Cache: Core Edition] - Re: is it possible for MVCCInvocationContext to have null mv

2009-03-17 Thread manik.surt...@jboss.com
bstansbe...@jboss.com wrote : | Manik, why is the removeNode call not removing the node? Is the MVCC code detecting that the node didn't exist when the get() call happened and therefore turning the removeNode into a no-op? | Yes. This is consistent with R_R semantics in that you only

[jboss-user] [JBoss jBPM] - Re: Need help to fix timer issue

2009-03-17 Thread Arunkumar DSRC
For example plz conside the following: | process-definition xmlns=urn:jbpm.org:jpdl-3.2 name=process6 | | start-state name=start-state1 | transition to=tsmactoncr/transition | /start-state | | state name=tsmactoncr async=true | timer

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: how to configure jaas with jboss 5.0.1

2009-03-17 Thread BjPenn
Well i found an error , it looks like my application is looking for hibernate drivers,even if i dont use it, so my question is: i am using toplink instead of hibernate, in wich file configure this detail View the original post :

[jboss-user] [Beginners Corner] - Re: Reassigning Naming Services and other ports

2009-03-17 Thread PeterJ
Found one wiki page that appears to cover both: http://www.jboss.org/community/docs/DOC-9038 View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218708#4218708 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218708

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: how to configure jaas with jboss 5.0.1

2009-03-17 Thread BjPenn
this is the error message that jboss return: org.apache.jasper.JasperException: java.lang.ClassCastException: org.hibernate.ejb.HibernatePersistence cannot be cast to javax.persistence.spi.PersistenceProvider |

[jboss-user] [JBoss AOP] - Problem intercepting DataSource method calls in JBoss 4

2009-03-17 Thread fbrueseke
Hi JBoss AOP folks. I have been fiddling with JBoss AOP all day now and just can't find the right solution. I want to use AOP to monitor which data sources are there and how long acquiring connections takes. I am using a -aop.xml configuration file in my deploy directory. The bindings are

[jboss-user] [JBossWS] - Re: java.lang.UnsupportedOperationException: setProperty mus

2009-03-17 Thread PeterJ
Sounds like you downloaded the JDK5 variant of 5.0.1, and not the JDK6 variant. The error you got is a common one when using JDK 6 to run the JDK5 variant of JBoss AS. You can either download the jdk6 variant, or search the forums for setProperty to locate a workaround (which involves copying

[jboss-user] [JBoss Cache: Core Edition] - Re: Unable To Acquire Lock

2009-03-17 Thread bstansbe...@jboss.com
Who is node 192.45.195.127:7802? Is that the node you got this log from or another node? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218717#4218717 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218717

[jboss-user] [JBoss Portal] - Re: jboss 2.6.4-GA wsrp producer not sending correct update

2009-03-17 Thread kharma
I have added a comment to the JIRA as such. Thank you for looking into this. ^__^ View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218718#4218718 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218718

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: session getting changed while switching between HTTPS an

2009-03-17 Thread Jinson
If you had resolved this issue, could you please update how you fixed it. I am also facing the same issue. Thanks in Advance View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4218719#4218719 Reply to the post :

  1   2   >