[jboss-user] [JBoss jBPM] - How to make task required?

2008-04-08 Thread suk1324
please, help me tasknode has one task. then, How to make task required? when task is not started, tasknode move to next tasknode... I want to make tasknode that has required task. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142249#4142249 Reply to the

[jboss-user] [JBossWS] - Re: Web services client

2008-04-08 Thread nikhilkshirsagar
Thanx peter for replying.I m using jbossws 1.2.1 which comes with jboss 4.2.1 GA.The jdk i used was 1.6 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142250#4142250 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142250

[jboss-user] [JNDI/Naming/Network] - Re: Connection not bound final solution

2008-04-08 Thread esteveavi
Solution for JBoss 4.0.4. There's a bug affecting this issue. So updating the following libraries solves the problem: jboss-j2ee.jar jboss-jca.jar jboss-jaxrpc.jar View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142253#4142253 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: JNDI not bound spring + Hibernate JPA

2008-04-08 Thread esteveavi
Solution for JBoss 4.0.4. There's a bug affecting this issue. So updating the following libraries solves the problem: jboss-j2ee.jar jboss-jca.jar jboss-jaxrpc.jar View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142252#4142252 Reply to the post :

[jboss-user] [EJB/JBoss] - Classloader nightmare and ClassCastException. Isolation wi

2008-04-08 Thread tnine
Hi all, I'm running Java 1.5, JBoss AS 4.0.5. I'm deploying an EJB 2.0 MDB within an EAR. I want to use a more up to date version of hibernate in my MDB. I'm getting classloader issues, and I have the following in my EAR's META-INF/jboss-app.xml | !DOCTYPE jboss-app PUBLIC

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread jaikiran
Which version of Hibernate do you use? How have you packaged the hibernate jar in the EAR (where is it placed)? Please post the complete exception stacktrace that you see. Also, when Hibernate session factory gets built, it prints out the version of Hibernate being used. Something like: |

[jboss-user] [JBoss jBPM] - taskInstance.cancel() still fires events

2008-04-08 Thread dleerob
Hi, When I call taskInstance.cancel(), it still fires any task-end events etc. When cancelling a task instance, I would assume that any task instance events should not be fired. But I see in the code that the cancel() method still calls end(), which in turn fires the events. I dont want these

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread tnine
I'm using the following version of Hibernate and Spring Hibernate 3.2.6.ga Hibernate Annotations 3.3.0.ga Spring Framework 2.0.5 Here's the stacktrace | 19:24:05,422 ERROR [JMSContainerInvoker] Exception in JMSCI message listener | javax.ejb.TransactionRolledbackLocalException: Could not

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-08 Thread boopet
hm our client is sending the wsse headers and authentification by UserNameToken is ok. The result returned by the server does not include any wsse information, which should also be OK. but the stacktrace leads to the assumption, that the jboss WS client tries to find some wsse information in

[jboss-user] [JBossWS] - org.jboss.ws.WSException: arg0 is not a valid property on cl

2008-04-08 Thread maffeis
I'm getting the following error in deploying a simple document/literal web service with jbossws-3.0.1-native-2.0.4.GA on jboss 4.2.2.GA. org.jboss.ws.WSException: arg0 is not a valid property on class ... Full stack trace: | 09:22:41,781 ERROR [MainDeployer] Could not start deployment:

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread tnine
Also, just an FYI, removing the hibernate-annotations jar from my server's lib directory fixes the issue. However this doesn't seem to be a very good solution. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142265#4142265 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Newest hibernate version in JBoss-4.2.2.GA

2008-04-08 Thread holger_u_s
Thanks, I think I don't have an isolation problem, JMX MBean Operation Result displayClassInfo() shows only one instance: org.hibernate.search.event.FullTextIndexEventListener Information Not loaded in repository cache ### Instance0 found in UCL: [EMAIL PROTECTED] url=null ,addedOrder=2}

[jboss-user] [JBoss jBPM] - Re: taskInstance.cancel() still fires events

2008-04-08 Thread Olivier_Debels
We extended taskInstance with an abort(), which does the same as cancel() but doesn't fire events and doesn't signal the token. We use this in a number of use cases. For example we have situations where user want to merge two task instance in different process instances. The use initially

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Newest hibernate version in JBoss-4.2.2.GA

2008-04-08 Thread jaikiran
Please read my post dated Mon Oct 22, 2007 11:20 AM and Tue Oct 23, 2007 05:22 AM on page 2 and 3 of the thread that i pointed in my earlier reply. The classcast is probably because of org.hibernate.event.PostInsertEventListener being loaded by multiple classloaders. Let us know if that is

[jboss-user] [EJB 3.0] - Re: Basic EJB - cant be invoked from client

2008-04-08 Thread r12345_2003
on changing Remote to remote it worked!! Finally!! Thanks to all of you! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142271#4142271 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142271

[jboss-user] [JBoss jBPM] - Re: taskInstance.cancel() still fires events

2008-04-08 Thread dleerob
Thanks Olivier...you always come back with useful info/ideas. How do you get Jbpm to make use of your extended TaskInstance class, instead of using the original TaskInstance class? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142273#4142273 Reply to the

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread jaikiran
anonymous wrote : | Hibernate 3.2.6.ga | Hibernate Annotations 3.3.0.ga | Spring Framework 2.0.5 anonymous wrote : Coincidentally, it works with Hibernate 3.2.0.ga and Annotations 3.2.0.ga. The exception stacktrace that you posted does not show anything related to hibernate. But going

[jboss-user] [JBoss jBPM] - Re: taskInstance.cancel() still fires events

2008-04-08 Thread Olivier_Debels
Our custom task instance subclasses the jbpm task instance, we also provide a custom hibernate mapping (again extending the one of jbpm). We created a custom TaskInstanceFactory (which creates our custom task instance) and made sure jbpm is using this one. You can set override this setting in

[jboss-user] [EJB/JBoss] - Re: Classloader nightmare and ClassCastException. Isolatio

2008-04-08 Thread tnine
That's very strange. I'll try packaging the search up tomorrow. I'm not sure how this will solve my issue, since both of my hibernate dependencies are in maven, and transitive dependencies are be included. I still don't understand why I'm having this issue in the first place. If my

[jboss-user] [JBoss jBPM] - Re: taskInstance.cancel() still fires events

2008-04-08 Thread dleerob
Thanks for your time. Hopefully an abort method will be added to JBPM in a future release. :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142280#4142280 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142280

[jboss-user] [JBoss Portal] - Question JBOSS Portal

2008-04-08 Thread khadijbal
hello, I have to download JBoss Portal Binary, and I have the page portal which displays. I would like to know if it's the file to jboss-portal.sar that is going to be to re-configure for developper a new portal. because if I makes change such as the addition of portlets I do not see change in

[jboss-user] [JBoss jBPM] - Re: taskInstance.cancel() still fires events

2008-04-08 Thread dleerob
I found quite a simple way to make sure a task-end event does not get fired when cancelling a task instance. I remove the event, cancel the task instance, and then add the event back. Simply use code similair to the following: taskInstance.setSignalling(false); |

[jboss-user] [Beginners Corner] - Re: Another war file deployment error :)

2008-04-08 Thread leonidMir
No, it is present: | %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % | %@ page import=java.util.ArrayList % | %@ page import=java.util.Random % | | % | //List of sayings | View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - How to use XSLT 1.0 and 2.0 inside the JBoss

2008-04-08 Thread mitchs
we use both standards inside our projects. per default jboss activates xalan 2.7.0 as XSLT transformator, which is not 2.0 compatible. in general it is possible to set a system property or use a property file but both has global impacts. 1. how is the impact on the jboss system if we change

[jboss-user] [Beginners Corner] - Re: Another war file deployment error :)

2008-04-08 Thread jaikiran
leonidMir wrote : No, | it is present: | | | | %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % | | %@ page import=java.util.ArrayList % | | %@ page import=java.util.Random % | | | | % | | //List of sayings | | You have imported ArrayList, but

[jboss-user] [JBoss Portal] - Re: JBoss Portlet Bridge with JBoss Portlet Container

2008-04-08 Thread [EMAIL PROTECTED]
I think it is possible the portlet bridge with the JBoss Portlet Container as currently 2.7 branch is consuming both products. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142294#4142294 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Is this a JBoss bug?

2008-04-08 Thread gefa
I have the same problem. I use JBoss 4.2.2 GA and JDK5.No matter JTA or RESOURCE_LOCAL which I use,this error always presents when Junit case executing. please help me! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142288#4142288 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Re: Creating a EJB3 Entity bean?

2008-04-08 Thread OChikvina
Read about Hibernate Code Generation in our documentation http://download.jboss.org/jbosstools/nightly-docs/hibernatetools/en/html_single/index.html#d0e845 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142310#4142310 Reply to the post :

[jboss-user] [J2EE Design Patterns] - Re: could not publish to the server

2008-04-08 Thread hammou
Hello, I am still having the same problem, I don't find any information about that in the Internet. Help me please thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142317#4142317 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: taskInstance.cancel() still fires events

2008-04-08 Thread Olivier_Debels
Depends what you want. In your case task-end event will not get fired, but the task instance will end and process instance will continue (token will signal). The task-end event will never fire again (since task instance was already added), so adding it again is not needed. If you want your

[jboss-user] [JBoss Tools (users)] - Re: Wizard for creating of h/rich:dataTable using fields

2008-04-08 Thread OChikvina
It's described in our guide how to add a tag from JBoss Tools palette http://download.jboss.org/jbosstools/nightly-docs/jsf/en/html_single/index.html#palette View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142309#4142309 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Could not find stateful bean (Seam2 ICEfaces: Uploadin

2008-04-08 Thread Newlukai
I just forgot the rest of the stacktrace: anonymous wrote : 08:58:29,179 ERROR [SeamPhaseListener] uncaught exception | java.lang.IllegalStateException: Could not start transaction | at org.jboss.seam.jsf.SeamPhaseListener.begin(SeamPhaseListener.java:581) | at

[jboss-user] [JBoss jBPM] - BPEL2 examples?

2008-04-08 Thread conoroneill
I have installed jbpm-bpel-1.1.GA and jboss-4.2.2.GA. I have got it up and running, and I have successfully run the BPEL examples (hello, trip, purchase, and ATM). However, I notice that the build scripts for these are using the .bpel and .swdl files from the 'bpel' subdirectory, not the

[jboss-user] [Management, JMX/JBoss] - Re: Securing JMX console (JBoss)

2008-04-08 Thread mcdan311
Thanks for your patient and time. It is very confusing trying to interpretate the JBoss scripts. However the last scripts for uncommenting were correct, right? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142322#4142322 Reply to the post :

[jboss-user] [EJB/JBoss] - Re: How to get the current user in a SessionBean from the Se

2008-04-08 Thread beherenow
That's right but.. How do you get the current sessionContext? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142324#4142324 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142324

[jboss-user] [JBoss Portal] - Can portlet eindow properties be accessed from the standard

2008-04-08 Thread erezharari
say as portlet preferences? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142323#4142323 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142323 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Could not find stateful bean (Seam2 ICEfaces: Uploading a

2008-04-08 Thread Newlukai
Hi there, I've a problem with my application (it uses Seam and ICEfaces) in a special use case: There is the possibility to attach files for an entity. Those files are stored on disk. The file upload is realized using a component (ice:inputFile) from ICEfaces. This component renders an iframe

[jboss-user] [Installation, Configuration DEPLOYMENT] - some question on the classloader

2008-04-08 Thread niefeng
We have migrated from JBOSS4.0.5 GA to JBOSS4.2.2, and we encounter the class loader issue. We have packaged the java mail.jar in our application archive (due to our application archive can be deployed in different AS, so we include that instead of depending the existing mail.jar in

[jboss-user] [JBossWS] - No tests for @SchemaValidation annotation in 3.0.1 ?

2008-04-08 Thread ljgp
In the distribution of 3.0.1 I cannot find any test for the @SchemaValidation annotation on a webservice, is this already supported ? Cheers, Luc. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142326#4142326 Reply to the post :

[jboss-user] [JBossWS] - @SchemaValidation annotation does not seem to work

2008-04-08 Thread ljgp
Also, when I add this to my webservice: @SchemaValidation( enabled=true, errorHandler=nl.kb.hrd.dd.karakterisering.impls.ValidationErrorHandler.class, schemaLocation=ergens) and send an invalid request, nothing happens (or seems to happen). The request just gets passed, the handler is not

[jboss-user] [JBoss Portal] - Re: Can portlet eindow properties be accessed from the stand

2008-04-08 Thread [EMAIL PROTECTED]
no are not. what we expose are portal properties exposed PortalContext properties. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142328#4142328 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142328

[jboss-user] [EJB/JBoss] - Re: How to get the current user in a SessionBean from the Se

2008-04-08 Thread jaikiran
beherenow wrote : That's right but.. | | How do you get the current sessionContext? There's a callback method setSessionContext which gets called by the container. See this for more details

[jboss-user] [EJB/JBoss] - How to pass object between EJB during just a session / trans

2008-04-08 Thread dmary
Hi all, I've got a queue declared that handle messages. A stateless EJB consumer A is handling message and call another stateless EJB B (business level). I use log4j to log infos, and I want that infos which be logged into A and B starts with same ID, like a session ID. I've try to give a look

[jboss-user] [JBossWS] - terminating zero in SOAP request

2008-04-08 Thread yasir.arsalan
I am having a problem in makin a call using Axis client. I have generated the client in java using wsdl file. When I make the call using generated client it generates a SOAP request message, that I have pasted below, which contains a terminating zero in it [ /soapenv:Envelope0 ]. This

[jboss-user] [JBoss.NET] - terminating zero in SOAP request

2008-04-08 Thread yasir.arsalan
I am having a problem in makin a call using Axis client. I have generated the client in java using wsdl file. When I make the call using generated client it generates a SOAP request message, that I have pasted below, which contains a terminating zero in it [ /soapenv:Envelope0 ]. This

[jboss-user] [JBoss jBPM] - Re: How to make task required?

2008-04-08 Thread salaboy21
I think if you start the task... which is the normal behavior for the tasknode.. then your tasknode enter in a wait state wating for the task to complete. How are you doing this things? that your tasknode dont fire the task inside them? View the original post :

[jboss-user] [JBossWS] - Re: Web Service Response problem

2008-04-08 Thread Karnan
and i am also using that with java 1.5 because jbossws 405GA can only work with java 1.5 Can JaxWs2 work with jbossws203ga and jboss405ga ??? ithink yes but not sure thx again, i really need help View the original post :

[jboss-user] [JBossWS] - Web Service Response problem

2008-04-08 Thread Karnan
Hi, Im using JBossws203GA with jboss405GA. I generated interfaces and service classes with wsconsume from wsdl file And i also wrote my client which will consume the service. BUt i have a prob with the response of the server. Details: here is my web method: | | @WebMethod(operationName

[jboss-user] [JBoss jBPM] - Re: jpdl designer-form controller

2008-04-08 Thread kukeltje
It's 'simple'... jBPM 3.1 has automagically generated forms which do not take data types into account at all and have very limited customizability. So build your own ui framework... or... switch to jBMP 3.2 that allows you to customize forms a little more. View the original post :

[jboss-user] [JBoss jBPM] - Re: Deployment archive advice

2008-04-08 Thread kukeltje
anonymous wrote : However, where do you generally place the .par file, in the deploy folder of JBOSS, or any local folder. That is really up to you and dependant on how your deployer code is written. There currently is not something identical to a war deployer. View the original post :

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-08 Thread pramod_bs
Here are some code snippets from JBoss code. I am not sure if you already loked at this. If not you can use eclipse debugger to see what is coming in the parameters. I am assuming the header is null. I might be wrong. Try it out. WSSecurityDispatcher.java | | public static void

[jboss-user] [JBoss jBPM] - About assignement

2008-04-08 Thread simply smart1
hi, i'm using jbpm-jpdl-3.2.1, i have a problem with assignement , i did every thing but i still can do a task with a user diffrent from whom i defined into my swimlane and it is not normal!!! how can i do in order to let only the actor who a defined in my swimlane to do his task and not

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-08 Thread boopet
yes i could check this with debugger. the strange thing is: why is the WSSecurityDispatcher invoked at all, when there is no security information inside the response ? Or does JBossWS just simply require a wsse tag inside the response, when the request had those? View the original post :

[jboss-user] [JBoss Portal] - assign portal to role

2008-04-08 Thread capic
Hello, I would like to know if it's possible to assign a default portal to a role ? I want to create different portals with security-constraint and a main portal where the user can be redirect to the portal associate to his role. Sorry for my bad english. View the original post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Application acting differently in regards to hibernate when

2008-04-08 Thread jej2003
I have a sample application (adapted from http://www.eclipse.org/webtools/dali/docs/tutorial_1.0/dali_jsf_tutorial.htm) that I am running on JBoss. When I run the application with a persistence.xml file that specifies the JDBC connection everything works, but if I change the persistence.xml

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Newest hibernate version in JBoss-4.2.2.GA

2008-04-08 Thread holger_u_s
Many,many thanks. I put the hibernate-search and lucene-core together with the other hibernate libs into the myapp.ear/lib, not WEB-INF/lib. It works! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142382#4142382 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Application acting differently in regards to hibernate w

2008-04-08 Thread jaikiran
You probably missed out posting the exception stacktrace. Btw, anonymous wrote : persistence-unit name=default transaction-type=RESOURCE_LOCAL Since you are using a JTA datasource, you should be using transaction-type=JTA (not sure whether this might be the cause of the exception that you

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-08 Thread pramod_bs
R u sure you handleInbound is invoked with the response. I think this is invoked while you send the message from the client. Check it out. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142386#4142386 Reply to the post :

[jboss-user] [Beginners Corner] - Running 32 bit JVM on 64 Bit Linux OS

2008-04-08 Thread [EMAIL PROTECTED]
Do you see any problem with this? Running JBoss 4.0.4 (j2dsk1.4.2_13) 32 bit on 64 bit SuSE Enterprise Server 9, service pack 3 Linux. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142387#4142387 Reply to the post :

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-08 Thread boopet
well i am not sure, but my tcpmon shows the request and also the response , so i think the request has been processed properly. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142391#4142391 Reply to the post :

[jboss-user] [EJB/JBoss] - Is there a similar annotation of seam @in annotation in jbos

2008-04-08 Thread dmary
Hi all, Is there a similar annotation of seam @in annotation in current jboss AS ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142392#4142392 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142392

[jboss-user] [JBossWS] - Re: Web Service Response problem

2008-04-08 Thread Karnan
this is what i get when i listen the http port during the remote call of the method | | env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'env:Header/env:Headerenv:BodyOpenSession

[jboss-user] [JBoss Portal] - Re: Question JBOSS Portal

2008-04-08 Thread [EMAIL PROTECTED]
The XML descriptors are only used for initial configuration or reset of Portal's data. They are not updated by Portal to mirror the current state of your Portal. Please take a look at the reference guide for more information. View the original post :

[jboss-user] [JBoss Messaging] - Message delivery delay 30 sec sometimes

2008-04-08 Thread bodrin
jboss-4.2.2.GA / jboss-messaging-1.4.0.SP3 / jboss-remoting-2.2.2.SP5 I have a test which sends a message (persistent transacted) to queue A and waits a response in queue B. The SystemInTest that answers in queue B is in a separate JVM and is a consumer of queue A. The strange thing is that

[jboss-user] [JBoss Tools (users)] - Re: using HQL editor with JBoss Tools

2008-04-08 Thread asookazian
well I did the above instructions and still didn't work. the persistence.xml in the exploded deployment in the %JBOSS_HOME%/server/default/deploy folder was only found in C:\jboss-4.2.1.GA\server\default\deploy\SHIMS.ear\SHIMS.jar\META-INF so I closed Eclipse and copied that persistence.xml

[jboss-user] [Installation, Configuration DEPLOYMENT] - tomcat vulnerabilities

2008-04-08 Thread hstripathy
Is there any patch or upgrade version of jboss which address apache tomcat hi-jacking vulnerability (CVE-2007-5333)? I am using JBoss 4.0.2. Your response will be highly appreciated and thanks for early response. Himansu View the original post :

[jboss-user] [JBossWS] - Re: Web services client

2008-04-08 Thread PeterJ
JBossAS 4.2.1 is not qualified with JDK 6. You need to use JDK 5. For more discussion as to why, see my post at http://www.jboss.com/index.html?module=bbop=viewtopict=102355postdays=0postorder=ascstart=10 View the original post :

[jboss-user] [JBoss Portal] - Can portlets share JBoss Portal hibernate session

2008-04-08 Thread ddelponte
I would like to develop many different portlets, all of which should share the same hibernate session. I would like to do this for efficiency. Would anyone have any recommendations as to how the best way to accomplish this may be? Can I modify and use the hibernate session already created by

[jboss-user] [JBoss Portal] - Re: Question JBOSS Portal

2008-04-08 Thread PeterJ
When you add portlets, you need to also supply a portlet-instances.xml file and *-object.xml file, or else they will not appear. (Well, you could go into them anagement portlet and add them theree.) Information about these files, and how to use the management portlet, is also in the reference

[jboss-user] [JBoss jBPM] - Re: jPDL-Designer

2008-04-08 Thread wootenator
Another project that might be interesting would be to make a version of the eclipse IDE that is exclusively targeted towards the jpdl-designer tool. In other words to strip off all other eclipse menus and perspectives except for the frames solely focused on jpdl designer functionality. I'm

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss 3.2.7 no longer deploys due to site reorganizatio

2008-04-08 Thread bob.mcwhirter
All of the DTDs and schemas should be back online at this point. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142410#4142410 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142410

[jboss-user] [Management, JMX/JBoss] - Re: Securing JMX console (JBoss)

2008-04-08 Thread PeterJ
Are you asking if you correctly changed the web.xml file to secure the jmx console, then yes, that change is correct. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142411#4142411 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Oracle DS/JNDI Issue

2008-04-08 Thread bml
Hi, I am currently trying to access an Oracle datasource via JNDI that I have configured. I am using JBoss 4.0.3 on Windows XP Pro with Oracle 10g. The datasource seems to be binding correctly as I get the following message when I start the server: | [ConnectionFactoryBindingService]

[jboss-user] [Management, JMX/JBoss] - Re: Securing JMX console (JBoss)

2008-04-08 Thread mcdan311
Then I will need to restart the machine for those changes to take place, since there is no jboss service to stop and start? I've restarted the Quality Center service and had the security group rerun the scan and had the same results. View the original post :

[jboss-user] [Management, JMX/JBoss] - Re: Securing JMX console (JBoss)

2008-04-08 Thread PeterJ
Changes to the web.xml file should be recognized by JBossAS as soon as the changes are made - it should redeploy the app. But if you thnik it is not doing that, then stopping JBossAS and starting it again will do it. How are you running JBossAS? From a command prompt? What operating system are

Re: [jboss-user] [Installation, Configuration DEPLOYMENT] - Oracle DS/JNDI Issue

2008-04-08 Thread Jay Kraly
I'm having pretty much the exact same problem and have been trying to figure it out for days. Can you check the value of UseJBossWebLoader in your jboss-service.xml? When I have this set to true everything works fine, when I have it set to false (isolated class loading) I get the same null

[jboss-user] [Beginners Corner] - Newbie Can't get jboss to start

2008-04-08 Thread d92377
I got jboss as a TAR file from a running version of Jboss I have change the files with server names and ip address but now I get the error below org.jboss.deployment.DeploymentException: url file:/var/jboss_servers/jboss-4.0.4RC1/server/default/conf/jboss-service.xml could not be opene d, does

[jboss-user] [Installation, Configuration DEPLOYMENT] - Using JBoss with Linux(RedHat)

2008-04-08 Thread rkhurana
Hello I am using JBoss 4.2.2.GA on HTTP connector port 8091(other ports being default) and I can access the URL http://localhost:8091 to see jboss stuff. My router has a static IP Address and I want to access Jboss from outside using http://static ip:8091. I enabled port forwarding in the

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - tomcat 5.x vulnerability

2008-04-08 Thread hstripathy
Is there any patch or upgrade version of jboss which address apache tomcat hi-jacking vulnerability (CVE-2007-5333)? I am using JBoss 4.0.2. Your response will be highly appreciated and thanks for early response. Himansu View the original post :

[jboss-user] [JBossWS] - Re: How do I override the ServiceEndpointAddress?

2008-04-08 Thread [EMAIL PROTECTED]
http://jbws.dyndns.org/mediawiki/index.php?title=FAQ#How_do_I_know_what_endpoint_address_is_being_used.3F View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142426#4142426 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142426

[jboss-user] [Management, JMX/JBoss] - Re: Securing JMX console (JBoss)

2008-04-08 Thread mcdan311
I'm not running JBossAS, Are we talking about the same application Jboss and Jbosas? The operating system is Window2003. How do I get the version of Jboss. We have an application that is using Jboss within it's application. I am not familar with any command prompts. What we do is run the

[jboss-user] [J2EE Design Patterns] - Hibernate 3 compatible with Jboss 3.2.5?

2008-04-08 Thread olonga
I am running and old website that only runs on Jboss 3.2.5. Now, I would like to inject a hibernate archive .har file with hibernate 3.x into the website so that I can start using hibernate daos. Is Jboss 3.2.5 compatible with hibernate 3.x? View the original post :

[jboss-user] [JBossWS] - Re: org.jboss.ws.WSException: arg0 is not a valid property o

2008-04-08 Thread [EMAIL PROTECTED]
The wsdl should be generated by jbossws tools. You can also get it from the deployed endpoint. Note, that | @WebService(name = MyTest, targetNamespace = http://www.example.org/MyTest/;) | public class MyTestWebService implements MyTest { | public String newOperation(String in) {

[jboss-user] [JBossWS] - Re: No tests for @SchemaValidation annotation in 3.0.1 ?

2008-04-08 Thread [EMAIL PROTECTED]
We do not distribute our entire testsuite. You can run the test from the src. http://jira.jboss.org/jira/browse/JBWS-1172 http://jbws.dyndns.org/mediawiki/index.php?title=Building_From_Source#Checkout_and_build_JBossWS-Native View the original post :

[jboss-user] [JBossWS] - Re: terminating zero in SOAP request

2008-04-08 Thread [EMAIL PROTECTED]
Not sure if the terminating 0 is valid, but it definitely has to do with chunking. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142434#4142434 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142434

[jboss-user] [JBossWS] - Re: Web Service Response problem

2008-04-08 Thread [EMAIL PROTECTED]
Have a look at the jaxws/holder test | ant -Dtest=jaxws/holder test | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142435#4142435 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142435

[jboss-user] [JBossWS] - Re: NullPointerException when processing response

2008-04-08 Thread [EMAIL PROTECTED]
Please show us the client security config and the incomming response message View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142437#4142437 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142437

[jboss-user] [JBossWS] - Re: Use Map as return type/parameter in a web method..

2008-04-08 Thread [EMAIL PROTECTED]
Yes, you use a Map ;-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142436#4142436 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142436 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: SAML support for jbossws-native

2008-04-08 Thread [EMAIL PROTECTED]
You can vote for http://jira.jboss.org/jira/browse/JBWS-491 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142438#4142438 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142438

[jboss-user] [Beginners Corner] - J Excel API

2008-04-08 Thread taicode
Hi, I'm fairly new to Jboss and using Jboss AS 4.2.2. I need to use with Java Excel API (very popular) to read/write/access Excel files with Java. This API comes with its' own log4j.xml file. I'm not sure what to do with this .xml file as documentation is not mentioned. Please help on help

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss 3.2.7 no longer deploys due to site reorganizatio

2008-04-08 Thread mvmeij
confirmed, thanks! Maarten View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142446#4142446 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142446 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: org.jboss.ws.WSException: arg0 is not a valid property o

2008-04-08 Thread maffeis
Hi Thomas I'm following the topdown model and so I've created the WSDL first ... I tried adding @WebMethod and @WebParam annotations, but that did not solve my problem. Or can you give me an example of the jaxb annotations you are suggesting? Regards, Silvano View the original post :

[jboss-user] [JBoss Portal] - JSF command button with partial_refresh_enabled - Portal

2008-04-08 Thread shimonl97
I am trying a simple jsf with 2 action buttons in the portal. (jsf in jsp not facletes). It works fine when partial_refresh_enabled = false. when partial_refresh_enabled = true, submit is performed but it always takes the action for the first button, so if I have 2 back bean methods it always

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Using JBoss with Linux(RedHat)

2008-04-08 Thread PeterJ
Are you starting JBossAS using the -b option? See http://wiki.jboss.org/wiki/JBoss42FAQ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142454#4142454 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142454

[jboss-user] [JBossWS] - Re: Web Service Response problem

2008-04-08 Thread Karnan
Im new on web services so i dont know what you mean exactly. should i test this command on the client side or something else? thx View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142458#4142458 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Using JBoss with Linux(RedHat)

2008-04-08 Thread rkhurana
Thank you... that did the trick but I dont understand why does it work with -b option and why I dont need to do that on windows... pls explain. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142459#4142459 Reply to the post :

[jboss-user] [Management, JMX/JBoss] - Re: Securing JMX console (JBoss)

2008-04-08 Thread PeterJ
If Quality Center by Mercury has JBossAS embedded within it, then simply stop and restart Quality Center to restart JBossAS. To find out the version number, look for a file named boot.log within a directory named log. In a typical JBossAS installation this will be at

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Using JBoss with Linux(RedHat)

2008-04-08 Thread rkhurana
I just checked that in the windows setup, I have JBoss 4.0.5 and not 4.2.2 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142462#4142462 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4142462

[jboss-user] [Beginners Corner] - Re: J Excel API

2008-04-08 Thread PeterJ
If you do not need the logging, you could just remove the log4j.xml file. Also, if the Excel API comes with the log4j jar file or the commons logging jar file, you should remove them also. If you want to log some of the Excel API stuff, you could update the server/default/conf/jboss-log4j.xml

[jboss-user] [JBossWS] - Re: Changing soap:address location=

2008-04-08 Thread [EMAIL PROTECTED]
This is an FAQ http://jbws.dyndns.org/mediawiki/index.php?title=FAQ#How_does_rewriting_of_the_soap_address_in_WSDL_work.3F View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4142441#4142441 Reply to the post :

  1   2   >