[JBoss-user] [JBoss Getting Started Documentation] - Re: Error trying to deploy a .ear file

2006-03-31 Thread hitarth
I guess we all r sailing in same boat.. i too got this error::: 05:41:31,180 INFO [EARDeployer] Init J2EE application: file:/C:/Program Files/jboss-4.0.2/jboss-4.0.2/server/default/deploy/FiboApp.ear 05:41:31,260 ERROR [MainDeployer] Could not initialise deployment: file:/C:/Program Files/jbos

[JBoss-user] [EJB 3.0] - Re: separate container configurations

2006-03-31 Thread tterm
Thank you, That is exactly what I want! And it is the @RemoteBinding(interceptorStack="TestStack") to add another Stack for the client side. Thomas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934126#3934126 Reply to the post : http://www.jboss.com/in

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: cmp2.x jdbc2 pm with cache invalidation wont work

2006-03-31 Thread peterm75
Please can anybody point me into the right direction. Any help would be very appreciated View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934123#3934123 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934123 ---

[JBoss-user] [JBoss Seam] - Re: JAAS and SEAM

2006-03-31 Thread mirko27
Dear Louis, if this exception is the only problem then please turn your code back. This exception is caused by a very common shortcome of hibernate. Portaluser roles does not get initialized when portaluser is initiliazed. You should do smth. like creating portaluser and after that calling user

[JBoss-user] [Installation, Configuration & Deployment] - ...where to put

2006-03-31 Thread bmw0128
i would like to put some in jboss on a per server basis. i have a number of servers(local, test, and production), and the values in the need to change for each install, so i'd like to have them configured for each server, not part of my EAR. any suggestions? thanks View the original post : h

[JBoss-user] [Security & JAAS/JBoss] - Re: Mapping ldap groups to jboss roles? where?

2006-03-31 Thread jaco.joubert
I think my role mapping question is basically answered by this thread: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=77709 Seems like I'll have to do this mapping myself, as the spec is not clear on this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtop

[JBoss-user] [Security & JAAS/JBoss] - EJB3 OpenLDAP LdapLoginModule role validation failure

2006-03-31 Thread schuller007
EJB3 Code: @Stateless @SecurityDomain ("test") @RolesAllowed("Allora-User") public class EJBOps implements EJBOpsRemote {...} If I do not specify the RolesAllowed, a remote client gets authenticated OK and is able to call the EJB. With the RolesAllowed in, I get Insufficient permissions, princip

[JBoss-user] [EJB 3.0] - Re: Deployment order ejb3 / war

2006-03-31 Thread asack
Wow, this is helpful, I was having similar issues. I think this is a real outtage in the spec that there aren't deployment primitives that allow this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934117#3934117 Reply to the post : http://www.jboss.com/ind

[JBoss-user] [Clustering/JBoss] - Re: time to deploy in the cluster

2006-03-31 Thread [EMAIL PROTECTED]
That would need to be handled by some kind of scripting you set up to roll the deployment out across your servers. Once something is copied to the deploy or farm directories, JBoss will deploy it. The only delayed-deployment option is the deploy-hasingleton folder I mentioned, which isn't what

[JBoss-user] [Beginners Corner] - Re: How i access text file in JBoss?

2006-03-31 Thread hrjrex
I wanna to ask the same question too. Anyone can help? Thanks a million Rex View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934114#3934114 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934114

[JBoss-user] [JBoss jBPM] - Problem running process state inside a process

2006-03-31 Thread hosierdm
I have a process that contains a process state pointing to another process. When I run the process and it gets to the process state, it seems to have just blown right through the subprocess without stopping at the wait states and assigning the tasks contained within. For example, my test proce

[JBoss-user] [JBoss jBPM] - Re: SuperState and webapp

2006-03-31 Thread hosierdm
I found the task.jsp and edited it to replace the line: with a static image (of Aria Giovanni :) ). And it went onto the next task successfully. So I assume it's just an enhancement to the webapp that needs to be done. Just like you can't drill down into the super state and get an image of t

[JBoss-user] [JBossWS] - Re: ws4ee-deployment.xml

2006-03-31 Thread kspsoftgroup
Here http://wiki.jboss.org/wiki/Wiki.jsp?page=WSTypeMapping you could find out how to work with complex types. And here http://wiki.jboss.org/wiki/attach?page=JBossWS%2Fsamples.zip you can download samples. In samples you should take a look at complexbean example. View the original post : http

[JBoss-user] [JBoss Eclipse IDE (users)] - JSR88 and JBoss IDE?

2006-03-31 Thread chuck.fowler
Hi, I am interested in whether JBoss IDE 1.5 supports the ability to remotely deploy applications? I believe JSR88 provides a standard deployment API and that JBoss supports it, but I could not determine if JBoss IDE supports. The closest I could find was an "experimental" "Main Deployer" as

[JBoss-user] [JBossWS] - ws4ee-deployment.xml

2006-03-31 Thread jbush
Does anybody know how to create a ws4ee-deployment.xml to handle complex types. When I test a web service server, it returns because the schema does not match. I think it has something to do with the elements being complex types. View the original post : http://www.jboss.com/index.html?module

[JBoss-user] [Security & JAAS/JBoss] - Re: Mapping ldap groups to jboss roles? where?

2006-03-31 Thread jaco.joubert
I'm glad you solved the roles problem in your configuration. With this configuration, you are mapping your groups in LDAP directly to the security roles configured in your JBoss deployments. This means that you are effectively using the same group / role names. Does anyone know if it's possibl

[JBoss-user] [EJB 3.0] - Re: How are entity beans detached?

2006-03-31 Thread [EMAIL PROTECTED]
entities are detached from entitymanager at end of transaction with a transaction scoped entity manager. If it is an extended entity manager, then the entity remains managed. EntityManager.clear() also detaches all managed entities, but you lose an unflushed changes. View the original post :

[JBoss-user] [JBoss jBPM] - JBPM 3.1 : Error while Transitioning to next Token.

2006-03-31 Thread aryavishrut
I'm getting an Exception : can't continue execution on locked tokens. signalling the same token that executes an action is not allowed. Actually I'm running a process, After I come out of one task, I do save the processInstance and then continue to the next transition. The code goes like this

[JBoss-user] [JBoss Portal] - Re: logout page and login page

2006-03-31 Thread noicangi
thanks mholzner for the specification ;), i'm just a user trying to get juice of the portal (chilean modism) i will download the 2,4 latest branch. thanks again. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934104#3934104 Reply to the post : http://ww

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: MDB stop listening

2006-03-31 Thread [EMAIL PROTECTED]
You are the one with the flashlight. http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMQLogging View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934103#3934103 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934103 ---

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: MDB stop listening

2006-03-31 Thread bcoutinho
We are experiencing what seems to be the same problem. The environment is also similar: Red Hat AS Linux kernel 2.6.12-10-386 Java HotSpot(TM) Server VM 1.5.0_06-b05, Sun Microsystems JBoss 4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1 date=200510231752) The MDB stops processing messages after process

[JBoss-user] [Messaging, JMS & JBossMQ] - Using different jaas context - different Security Manager???

2006-03-31 Thread zambak
Hello I am trying to secure access to a queue based on the information froma a different DB that that JBoss comes with (Hypersonic)... I have created a necessary context in login-config.xml as so: | | | | guest | java:jdbc/XXXDS |

[JBoss-user] [Installation, Configuration & Deployment] - how to hide all start up info

2006-03-31 Thread [EMAIL PROTECTED]
Hi, I'm wondering how to block/hide all info/warn/debug level message when jboss starting up but not when running to deploy? -- Thanks John Toronto View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934100#3934100 Reply to the post : http://www.jboss.com/index

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-31 Thread forJbpm
huh!!! Finally I found my problem, Thanks a lot to Jose,thomas and others who contributed Its really really very stupid thing but in my webservices.xml file I was using anonymous wrote : instead of | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=393

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: question about JMS Queue info in jbossmq-destinations-se

2006-03-31 Thread vincent.yuan
commonly in yourself jboss-service xml packaged in your mdb jar. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934094#3934094 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934094 ---

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-31 Thread Pierroot
For creating a client for an existing web service in a very simple way : download the WTP (Web Tools Platform) plugin for eclipse (forget about the JBoss-IDE for now) and just do a new > web service client. This works like a charme for the most simple tasks you have to do with web services. I d

[JBoss-user] [JBoss jBPM] - Re: jBPM and Concurrency

2006-03-31 Thread jboarhat
This is exactly the information I was looking for. Thank you very much for your help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934092#3934092 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934092

[JBoss-user] [Security & JAAS/JBoss] - Re: Simple Database Authentication in EJB

2006-03-31 Thread kamal444
Hi everyone, My example is working finally. There was a problem in the login-config.xml file and also in the Query. Thanks a lot to all the prev posts. Regards, Kamal View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934091#3934091 Reply to the post : http:/

[JBoss-user] [JCA/JBoss] - Re: Jboss 3.2.7 JCA question.

2006-03-31 Thread minamti
It seems to be trying to passivate the stateful bean and the error is java.io.NotSerializableException: org.jboss.resource.connectionmanager.NoTxConnectionManager$NoTxConnectionEventListener Why is this passivation happening ? Could it be because some "remove's" were lost ? -mic View the orig

[JBoss-user] [JBoss jBPM] - Re: Required indexes missing in JBPM DB script.

2006-03-31 Thread k.pravin
Hi Dan, Following are the indexes we ceated to avoid deadlocks. create index JBPM_LOG_ust_n7 on JBPM_LOG(PARENT_) tablespace bce_index ; create index JBPM_TASKINSTANCE_ust_n4 on JBPM_TASKINSTANCE(TOKEN_) tablespace bce_index ; create index JBPM_TOKEN_ust_n3 on JBPM_TOKEN(PROCESSINSTANCE_) table

[JBoss-user] [Security & JAAS/JBoss] - Re: request.isUserInRole() change from 3.2.7 to 4.0.3SP1

2006-03-31 Thread [EMAIL PROTECTED]
Create a jira issue with the full details needed to reproduce the behavior. http://jira.jboss.com/jira/browse/JBAS View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934088#3934088 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[JBoss-user] [Security & JAAS/JBoss] - Re: request.isUserInRole() change from 3.2.7 to 4.0.3SP1

2006-03-31 Thread rob_canoe1
The deployments are as close to the original downloads as I can get them. I am using 'default' of both 3.2.7 and 4.0.3sp1. There are a couple of changes: 1) added some entries to login-conf.xml for my datasources and jaas names. 2) added a couple of extra jars into the lib directory. View t

[JBoss-user] [EJB 3.0] - How are entity beans detached?

2006-03-31 Thread treespace
How are local entity beans detached? The local session bean uses the entity manager to find and return an entity bean. What mechanism is responsible for detaching that bean prior to returning it to, say , the web tier. Corollary: what is the "injection" mechanism? I know annotations trigger the

[JBoss-user] [JBoss jBPM] - Re: SuperState and webapp

2006-03-31 Thread hosierdm
...and the stack trace | 17:02:35,557 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception | java.lang.NullPointerException | at org.jbpm.webapp.tag.ProcessImageTag.extractBoxConstraint(ProcessImageTag.java:172) | at org.jbpm.webapp.tag.ProcessImageTag.writ

[JBoss-user] [JBoss jBPM] - SuperState and webapp

2006-03-31 Thread hosierdm
Does the jbpm webapp not support drilling down into super states or do I have something wrong in my process definition. When I click on a task to complete it in the webapp and that task is the first state in a super state, I get a stack trace in the server. Here is the relevent portion of my p

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-31 Thread forJbpm
I have been following / again followed the same steps but I still get the exception mentioned at http://jboss.org/index.html?module=bb&op=viewtopic&t=79562 this time I followed your steps till 5. but after that I get above error :-( View the original post : http://www.jboss.com/index.html?module

[JBoss-user] [Security & JAAS/JBoss] - Re: Extending AbstractPasswordCredentialLoginModule

2006-03-31 Thread lduperval
Excellent! Thanks! L View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934082#3934082 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934082 --- This SF.Net email is sp

[JBoss-user] [Security & JAAS/JBoss] - Re: Extending AbstractPasswordCredentialLoginModule

2006-03-31 Thread [EMAIL PROTECTED]
"lduperval" wrote : So if I take all the files in org.jboss.resource.security that are package protected, rebuild them to add my change (the secret key), I should be OK? | | Is that still "fair use"? | | L Yes View the original post : http://www.jboss.com/index.html?module=bb&op=viewt

[JBoss-user] [Security & JAAS/JBoss] - Re: Extending AbstractPasswordCredentialLoginModule

2006-03-31 Thread lduperval
So if I take all the files in org.jboss.resource.security that are package protected, rebuild them to add my change (the secret key), I should be OK? Is that still "fair use"? L View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934080#3934080 Reply to the post

[JBoss-user] [Security & JAAS/JBoss] - Re: request.isUserInRole() change from 3.2.7 to 4.0.3SP1

2006-03-31 Thread [EMAIL PROTECTED]
Details of the configuration are needed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934078#3934078 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934078 --- This

[JBoss-user] [Security & JAAS/JBoss] - Re: Extending AbstractPasswordCredentialLoginModule

2006-03-31 Thread [EMAIL PROTECTED]
You have to create your own priviledged actions. You should not be using an org.jboss.resource.security package name because you don't have permission to interact with other classes in the package if they are loaded by another class loader. View the original post : http://www.jboss.com/index.h

[JBoss-user] [Installation, Configuration & Deployment] - Re: sharing library-jar globally in EAR

2006-03-31 Thread lafr
I would advise against option one and two, but what's the problem with your third option (java module entry in aplication.xml)? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934076#3934076 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[JBoss-user] [Installation, Configuration & Deployment] - Re: Problem in accessing Connection Factory

2006-03-31 Thread lafr
Where does this piece of code run? Seems to me, that it is run inside jboss, not a standalone application. If so, avoid setting the properties again. They are already known. Try to simply use "ctx = new InitialContext()". This work for me perfect. View the original post : http://www.jboss.com/i

[JBoss-user] [Security & JAAS/JBoss] - Simple Database Authentication in EJB

2006-03-31 Thread kamal444
Hi, Well I am trying to authenticate a user to access an EJB. But nothing seems to work out. I get the exception that No LoginModules Configured. I wonder why this error seems to come out. The access works when using simple properties file. Below are the various files. For this purpose I have

[JBoss-user] [JBossCache] - Re: Unregistering MBeans

2006-03-31 Thread JerryGauth
This has been fixed in JBossCache 1.3.0 GA release. See JBCACHE-523 for further details. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934072#3934072 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934072 --

[JBoss-user] [JBossCache] - Re: InstanceAlreadyExistsException

2006-03-31 Thread JerryGauth
This has been fixed in JBossCache 1.3.0 GA release. See JBCACHE-523 for further details. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934071#3934071 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934071 --

[JBoss-user] [JBoss jBPM] - Re: [URGENT] TaskInstance.isCancelled()==TRUE after creation

2006-03-31 Thread [EMAIL PROTECTED]
TRUE is 0?? Do you have a (wrong!) query substitution in your hibernate config files? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934070#3934070 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934070 --

[JBoss-user] [JBoss jBPM] - Re: New jBPM Getting Started Documentation

2006-03-31 Thread Saviola
Wonderfull job, Kevin! I hope everyone involved in jBPM world will appreciate your diligence and patience you put into it. Congratulations, Kevin! Best regards, Saviola View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934069#3934069 Reply to the post : http:/

[JBoss-user] [EJB 3.0] - Re: upgrade to JBoss 4.0.4RC1, ERROR

2006-03-31 Thread khoyaraaz
"epbernard" wrote : I've just updated hibernate.org/3714.html Hi Emmanual, can't find that page anymore. Are there instructions on upgrading jboss to the newer version of Hibernate 3.2, the notes on the download page are vague? thanks. View the original post : http://www.jboss.com/index.html

[JBoss-user] [JBoss Portal] - Re: logout page and login page

2006-03-31 Thread mholzner
the security module is in a state of change. The links will be secured again (i.e. not showing). The current behaviour is a bug in the 2.4 branch. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934068#3934068 Reply to the post : http://www.jboss.com/index

[JBoss-user] [JBoss jBPM] - Re: jBPM and Concurrency

2006-03-31 Thread [EMAIL PROTECTED]
jBPM executes in the client thread. How you create that thread is up to you. Here are some facts for you to consider: JbpmConfiguration is threadsafe, mostly because it is read-only :-) If you find it is not, please report the problem here. Conversely, JbpmContext is designed to be used as a thre

[JBoss-user] [Installation, Configuration & Deployment] - Re: Inside ear war not visible to ejb jars

2006-03-31 Thread lafr
Put the jars needed by ejb.jar and web.war into the root of the ear and put an entry in application.xml: | common.jar | | Leave the web module specific classes in web.war/WEB-INF/lib. This works for us. View the original post : http://www.jboss.com/index.html?module=bb&

[JBoss-user] [JBoss jBPM] - Delegation problem

2006-03-31 Thread pedrosacosta
I want to build a process definition that calls a class outside the class handler. I suppose that i should build a process definition with a delegation element. But i don't know what shoul i write in the processdefinition.xml. Can anybody give me an example of a processdefinition with a delegati

[JBoss-user] [JNDI/Naming/Network] - Re: How to access DB/session beans from applet?

2006-03-31 Thread rludwick
Efrat, Did you solve your problem? The same thing is happening to me when I try to do a lookup on ConnectionFactory from an applet. Robert View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934063#3934063 Reply to the post : http://www.jboss.com/index.html?mod

[JBoss-user] [JBoss AOP] - Re: Adding an interceptor for exception join points

2006-03-31 Thread jrobison
Great! Thanks for the help. Justin J. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934062#3934062 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934062 --- This

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: where to put context.xml in JBoss?

2006-03-31 Thread [EMAIL PROTECTED]
AFAIK, deploying a war by simply deploying a context.xml is not supported. You can configure JBoss to scan external directories for deployment; look at the server/.../conf/jboss-service.xml file, DeploymentScanner MBean, URLs attribute. View the original post : http://www.jboss.com/index.html?

[JBoss-user] [JBoss Seam] - Re: Configuring deployment in Eclipse

2006-03-31 Thread [EMAIL PROTECTED]
The fatal is nothing. It is a log statement that was never cleaned up. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934060#3934060 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934060 -

[JBoss-user] [JBoss AOP] - Re: Adding an interceptor for exception join points

2006-03-31 Thread [EMAIL PROTECTED]
The link was wrong, try this :-) http://docs.jboss.com/aop/1.3/aspect-framework/userguide/en/html/building.html#exceptions View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934059#3934059 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[JBoss-user] [JBoss AOP] - Re: Adding an interceptor for exception join points

2006-03-31 Thread [EMAIL PROTECTED]
There is no proper support for this yet. Our pointcut language has the abilty to match on declared exceptions, e.g execution(* *->method(..) throws java.io.IOException will match void method(int i) throws IOException void method(String s) throws IOException, OtherException but not void method

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: where to put context.xml in JBoss?

2006-03-31 Thread mpollard
Hi, I have the same problem. The context.xml (in our case myservice.xml) uses a docbase to point to the war on the file system. The war is not dropped into jboss/tomcat. For example the myservice.xml contains the following: Context debug="0" docBase="c:/mysoftwaretool/mywebapp.war" path="/myap

[JBoss-user] [JBoss jBPM] - Add HttpPost-Vars to Context Vars

2006-03-31 Thread ken1
Hi, I tried to add the POST-Vars of a servlet-request to jbpm-context-vars, but I cant access them after that. The code is: | protected void doPost(HttpServletRequest req, HttpServletResponse response) ..{ | .. | ProcessInstance processInstance = | new Process

[JBoss-user] [EJB 3.0] - Re: Cryptic startup error message: from Seam forum

2006-03-31 Thread Nebob
I should mention that the message in question is bolded in the quoted block of startup messages in the linked thread. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934055#3934055 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[JBoss-user] [EJB 3.0] - Cryptic startup error message: from Seam forum

2006-03-31 Thread Nebob
Hi, I posted this message [http://www.jboss.com/index.html?module=bb&op=viewtopic&t=80266] on the Seam forum the other day and identified an error message appearing in my JBoss AS startup logs that I didn't understand. My problem from that thread seems to have been unrelated to this message an

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: question about JMS Queue info in jbossmq-destinations-se

2006-03-31 Thread jaikiran
The temporary queue will only be created, if there is any MDB listening on it. If you have a QueueReceiver then you WILL HAVE TO CREATE it by making an entry in jbossmq-destinations-service.xml or any similar file. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss Bootstrap Environment config

2006-03-31 Thread PeterJ
I assume that the text "some_word" in your posted -ds.xml file is the actual password for dbjbossca? :-) Run mysql, and enter the following: use mysql | select user,host from user where user='dbjbossca'; What are the hosts that show up? Are any of them 'thecyprusgroup.ca.servermatrix.com'?

[JBoss-user] [JBoss jBPM] - Re: do a test to an actionHandler

2006-03-31 Thread pedrosacosta
I found it. I forgot to add the config.files directory to my build path. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934051#3934051 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934051

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-31 Thread forJbpm
Thanks Jose, Now Something from my side :-) for webservices you dont need remote/home interface so in your session bean edit anonymous wrote : | | ** | | * @ejb.bean name="ExegenixWork1" | | * display-name="Name for ExegenixWork1" | | * description="Descri

[JBoss-user] [JBossWS] - Re: HTTP Proxy beween ws client and JBoss

2006-03-31 Thread irisel
I think I found it... http://labs.jboss.com/portal/jbossremoting/docs/guide/ch04.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934049#3934049 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934049

[JBoss-user] [JBossWS] - HTTP Proxy beween ws client and JBoss

2006-03-31 Thread irisel
Hello, Does anybody know how to connect to a web service through an http-proxy? I have read about properties http.proxyHost and http.proxyPort. Has someone tried? Thx and regards, Jose. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934048#3934048 Reply to

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-31 Thread irisel
ejb-jar.xml | http://java.sun.com/xml/ns/j2ee"; | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"; | version="2.1"> | | |Generated by XDoclet | |

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-31 Thread irisel
Maybe these files help you: Config file for wscompile to generate server: wscompile.config.xml | | | | http://java.sun.com/xml/ns/jax-rpc/ri/config";> | | | | http://com.irisel.oms.ws"; | typeNamespace="http://com.irisel.oms.ws/types"; | packageName="com.i

[JBoss-user] [JBoss Seam] - Re: Problem with @DataModel in PAGE scope

2006-03-31 Thread simon.nicholls
The problem as I see it, unfortunately, exists will all non page scope referenced components. There is in fact no way to reliably value bind to a Seam component from within the view that will accompany that component's destruction, due to lifecycle differences. For example, when a Seam conversa

[JBoss-user] [JBossWS] - Re: java.lang.NoClassDefFoundError: org/apache/axis/client/S

2006-03-31 Thread irisel
Hello, If you would be more explicit... 1. Copy your EJB Remote interface to extend Remote instead. That's all you have to change. It's my com.irisel.oms.ws.OMBrowserEndpoint interface. 2. Modify your ejb-jar.xml to include like in my file, referencing the new interface we created in step 1.

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss Bootstrap Environment config

2006-03-31 Thread johnson4
Hi Ive been able to access the jmx-console and the webbased admin for my app (tambur.org) but Im still having issues getting the mysql database to connect. I receive "Access denied for user: " concerning the connection to the database. Again I've updated www.nettechglobal.ca/putty.log with my la

[JBoss-user] [JBoss jBPM] - Re: JBPM_BYTEBLOCK

2006-03-31 Thread pedrosacosta
Thanks for the asnwer. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934042#3934042 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934042 --- This SF.Net email is s

[JBoss-user] [Security & JAAS/JBoss] - Re: Extending AbstractPasswordCredentialLoginModule

2006-03-31 Thread lduperval
I forgot to mention that I am still at 3.2.5. Thanks, L View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934040#3934040 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934040 ---

[JBoss-user] [JBoss jBPM] - Re: do a test to an actionHandler

2006-03-31 Thread pedrosacosta
adding to the previous questions, in which path sould jbpm.cfg.xml be to load it for a junit test? Can we specify the path to the jbpm.cfg.xml? Thanks, Pedro View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934041#3934041 Reply to the post : http://www.jboss

[JBoss-user] [JBoss Portal] - Re: logout page and login page

2006-03-31 Thread noicangi
ok thanks, also in portal 2.4 alpha i notice that the link to csm and managment page are visible to unknown users, and when you click on it they redirect to the login page, how can i prevent this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934039#3934039

[JBoss-user] [JBoss Portal] - Re: portlets code for learning

2006-03-31 Thread noicangi
thanks ;) thats the thing i was looking for;) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934038#3934038 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934038 --

[JBoss-user] [JBoss Getting Started Documentation] - Re: Error with the getting start of a JMS jboss example

2006-03-31 Thread PeterJ
Have you worked with Ant before? Did you grep for the text string "FIXME: Point to JBoss 4.0 installation directory"? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934037#3934037 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[JBoss-user] [JBoss Portal] - Re: portlets code for learning

2006-03-31 Thread [EMAIL PROTECTED]
there are portlets you can look at here - www.portletswap.com and if you want to see how role and login portlets are implemented, I suggest checking out the portal source code. Hope that helps, rali View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934036#39340

[JBoss-user] [JBoss Portal] - Re: logout page and login page

2006-03-31 Thread ScottDawson
There's a JIRA patch (with code attached) that provides a way to specify a destination URL to redirect to after logout. I'm hopeful that it will be available in the 2.4 release. http://jira.jboss.com/jira/browse/JBPORTAL-621 Regards, Scott Dawson Unisys View the original post : http://www.j

[JBoss-user] [JBoss Seam] - Re: problem deploying simple seam app

2006-03-31 Thread supernovasoftware.com
I meant in server/default/lib so that all ears I have deployed can load the same copy of seam.jar without having to include it explicitly in every one. Thx for the quick reply. See you in Vegas! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934031#3934031

[JBoss-user] [JBoss Seam] - Re: Cannot use @DataModel and sorting functionality for Toma

2006-03-31 Thread Newion
Could you paste the essential source code here? I have already tried to implement the solution described by you and it didn't work. I'm glad to hear that you have succeeded! Congratulations! Best wishes, Pawel Kaczor View the original post : http://www.jboss.com/index.html?module=bb&op=viewtop

[JBoss-user] [Messaging, JMS & JBossMQ] - question about JMS Queue info in jbossmq-destinations-servic

2006-03-31 Thread madalvi
I have some code which writes data to Queue and MDB reads from that Queue. I don't have Queue entry in jbossmq-destinations-service.xml. So when I start JBoss server I get following in log file. anonymous wrote : | WARN [org.jboss.ejb.plugins.jms.JMSContainerInvoker] destination not found: qu

[JBoss-user] [JBossCache] - Re: DavCache on top of JBossCache

2006-03-31 Thread [EMAIL PROTECTED]
This is exactly what JSR 171 (IIRC) does: Java Content Repository. An implementation could be based on JBossCache. What they essentially do for versioning is to create another subtree for the same data with a version number++. Reverting back to an old version simply entails setting the view to

[JBoss-user] [Clustering/JBoss] - Re: Dynamically create JMS destinations in clustered environ

2006-03-31 Thread chris_pollentier
The queue will be persistent if you configured the JMS provider to use persistent queues (the file hsqldb-jdbc2-service.xml in the deploy-hasingleton/jms directory configures the persistent storage using hypersonic DB) There is no secondary JMS server where the queue can be added. When deployin

[JBoss-user] [JBossWS] - Schema issue with Document-literal Web Service

2006-03-31 Thread jbush
I have developed a web service that uses WSDL http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft -01.wsdl Schema http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft -01.xsd Th

[JBoss-user] [JBoss jBPM] - Re: Cant get jBPM to work with oracle - please help

2006-03-31 Thread [EMAIL PROTECTED]
Generate SQL scripts for oracle I hope this is useful...All you need to start is ant 1. Download the latest version of the JBoss jBPM Starters kit. This has got the jbpm-db folder which contains all the useful jBPM database stuff. http://www.jboss.org/products/jbpm/downloads 2. Download the lat

[JBoss-user] [JBoss jBPM] - jBPM and Concurrency

2006-03-31 Thread jboarhat
I know this subject has come up numerous times on these forums, but none of the posts has the exact answer I'm looking for. I understand that jBPM implements concurrency at a business process level, not in terms of real (i.e. threaded) concurrent execution. Would it be possible to implement th

[JBoss-user] [JBoss Portal] - Re: authorizaton to forum portlet catagory and forum problem

2006-03-31 Thread unibrew
Hello http://wiki.jboss.org/wiki/Wiki.jsp?page=ForumsPortletInPortal22DevelopementStatus In this wiki page you can find all information about defining roles. Probably it will not solve your problem but at this point nothing more is available in JBForums. Of course we are planning to add such a

[JBoss-user] [JBoss jBPM] - Re: Web form mechanism

2006-03-31 Thread medjbpm
Use a filter in which you open and close the jbpmcontext and make it available to the request? can you explain me more can i deply struts on jbpm-server/jbpm like deploying it on jboss4.0.2? regard med View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934019#3

[JBoss-user] [EJB 3.0] - Re: how to get entitymanager within MBean

2006-03-31 Thread hfarid
I found some answers (after one long night and tons of coffee :-) ) - To declare the dependancy between SAR and PAR within the same ear file in your jboss-service.xml (within the sar] | | | jboss.j2ee:service=EJB3,module=put your par file here | | | - To

[JBoss-user] [JBossCache] - Re: DavCache on top of JBossCache

2006-03-31 Thread [EMAIL PROTECTED]
Nice stuff. Not to be pessimistic though, true CMS functionality cannot be achieved without being able to version the data, roll back to specific versions, etc. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934017#3934017 Reply to the post : http://www.

[JBoss-user] [JBoss jBPM] - Re: jBPM getting started wiki

2006-03-31 Thread kbarfield
The front end JSP pages, images, styles sheets and so on are in: C:\jbpm-starters-kit-3.1\jbpm\src\resources\jbpm.war I will add more info in the getting started guide about this. Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934016#3934016 Reply t

[JBoss-user] [JBoss Portal] - logout page and login page

2006-03-31 Thread noicangi
hi, it's a way to define the logout page? when i logout i would like to redirect to home in casa the logoin page, also y would like to add some login portlet, does anyone knows? thanks nix View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934014#3934014 Repl

[JBoss-user] [Installation, Configuration & Deployment] - sharing library-jar globally in EAR

2006-03-31 Thread afjochnick
Hello, I have an EAR with a WAR and a jar with some EJB's in it. I also have a "library-jar" with utility classes that i want both the WAR and EJB classes to find. I have been looking around and weblogic has a thing called "APP-INF" where you can put common jars for an ear. The "classloading

[JBoss-user] [EJB 3.0] - PersistenceContextType.EXTENDED does not work ??

2006-03-31 Thread kanto
hi, i have a problem with rolling back transactions that are splitted into several method invacation on the same stateful bean. my bean (lets call it BeanEJB) looks like: | @Stateful | @TransactionAttribute( TransactionAttributeType.REQUIRES_NEW ) | public class BasicImport implements Impo

[JBoss-user] [Security & JAAS/JBoss] - Extending AbstractPasswordCredentialLoginModule

2006-03-31 Thread lduperval
Hi, I want to create my own copy of SecureIdentityLoginModule where I only change the secrete key. I originally tried to create an exact copy of SecureIdentityLoginModule, built a jar with it and put it in server/lib. However, when I try to access it, I get an IllegalAccessError: | 2006-03-

[JBoss-user] [JBoss Portal] - portlets code for learning

2006-03-31 Thread noicangi
hi, i would like if it is posible to see somo portlet code for studing and learning to create portlets, specially the login portlet and role portlet, where i can find the code? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934008#3934008 Reply to the post :

  1   2   >