[jboss-user] [Messaging, JMS & JBossMQ] - Re: Sequential processing of messages with the same Key

2007-07-30 Thread mzeijen
Thank you for your help and your patience. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069001#4069001 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069001 ___ jboss-user m

[jboss-user] [EJB 3.0] - Re: ClassCastException when trying to merge an entity bean

2007-07-30 Thread fbenvegna
We have same error with Seam 1.2.1-GA and JBoss 4.0.5-GA. Our problem was double assignment in @OneToOne relationship. | A a = new A(); | B b = new B(); | a.setB(b); | b.setA(a); | Solution: set the the relationship only to the object that own the mapping (table with foreign key)

[jboss-user] [JBoss Tools (users)] - Re: Seam Project on Jboss 4.0.5

2007-07-30 Thread [EMAIL PROTECTED]
p.s. 4.0.5 is currently not supported for the seam wizards from eclipse.use 4.2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068999#4068999 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068999 __

[jboss-user] [JBoss Seam] - Adding a dynamic UI component before a page is rendered

2007-07-30 Thread muralikri_bng
Hi All I have a page where in i have to display some UI components like textboxes which are dynamic in nature. What i am trying to do is i have a panel grid in the page for which I am trying to add these dynamic components. When a user clicks on a link to this page i am calling a method which

[jboss-user] [JBoss Tools (users)] - Re: Seam Project on Jboss 4.0.5

2007-07-30 Thread [EMAIL PROTECTED]
it's fixed in svn - just waiting for the build to get stable again. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068997#4068997 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068997 ___

[jboss-user] [JBoss jBPM] - Re: JBPM IDentity

2007-07-30 Thread cheets
hi OM, in order to use ur own tables for user mgmnt, u need to implement AssignmentHandler urself, and use it as: | | | | | the class itself would be something like this: | public class TaskAssignmentHandler implements AssignmentHandler{ | | private stati

[jboss-user] [JBoss Seam] - Re: problem with booking example in jboss-seam-1.2.1.GA.zip

2007-07-30 Thread alex_enache
"plchen65" wrote : JBoss came up fine. Here you are refering to JBoss AS, or JBoss Seam? You should read this link http://labs.jboss.com/jbossseam/gettingstarted. I did what is writen there and it was ok. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068994#

[jboss-user] [JBoss Tools (users)] - Re: Seam Project on Jboss 4.0.5

2007-07-30 Thread dgolovin
Hello For now Seam wizard uses seam-gen templates for project. It works only for JBoss AS 4.2.X. To have it worked you need the patched version of seam-gen. You can get it from :pserver:[EMAIL PROTECTED]:/cvsroot/jboss/jboss-seam/seam-gen Seam_1_2_AP (Branch). It contains all fixes related t

[jboss-user] [JBoss Portal] - Re: Giving Admin Priviledges to another Role

2007-07-30 Thread roth
Right... I was a bit distracted by other work. Anyway, you'll have the article until Friday night. I'll post a link here once I'm done. Cheers View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068992#4068992 Reply to the post : http://www.jboss.com/index.html

[jboss-user] [JBossCache] - Re: JBC 2 performance

2007-07-30 Thread aditsu
Hm.. I'm not sure how it's related, but it sounds very good. I updated again from CVS; it seems to work now and doesn't do MapCopy anymore. The performance is still not really great, but it may not be JBC's fault. I'll keep profiling. Thanks for the good work! View the original post : http://

[jboss-user] [JBoss Messaging] - Re: persisting messages for audit

2007-07-30 Thread lpiccoli
after further digging i have found the use of AOP within messaging. Particularly the following pointcut on the producer send. It looks like what i need. does seem to be the correct place to define custom audit functionality? -lp View the original post : http://www.jboss.com/ind

[jboss-user] [JBoss jBPM] - Re: Stale state problem kills process instance?

2007-07-30 Thread justin.zhou
I have the similar problem with hibernate323, jbpm321, jboss420. anonymous wrote : 2007-07-30 23:14:20,714 5742606 ERROR [com.rrd.pmt.workflow.service.Task] (pool-6-thread-1:) | org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mappi

[jboss-user] [Messaging, JMS & JBossMQ] - MDB run error

2007-07-30 Thread pansw2
JMSClient.java package com; import javax.jms.JMSException; import javax.jms.Queue; import javax.jms.QueueConnection; import javax.jms.QueueConnectionFactory; import javax.jms.QueueSender; import javax.jms.QueueSession; import javax.jms.Session; import javax.jms.TextMessage; import javax.naming.In

[jboss-user] [JBoss Seam] - GWT example: WebRemote method always returns failure

2007-07-30 Thread kingcu
This is an issue regarding @WebRemote in the seam-gwt example, running on JBoss 4.2.0 with Seam 2.0.0 B1. The GWT compilation output files are shipped with seam 2.0 under examples/remoting/gwt/view and there are 16 files, when I just run "ant deploy" (which uses the shipped GWT files). It works

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Are there any web administration consoles for jboss?

2007-07-30 Thread kusanagihk
To all, I want to know if there are any admininstrative console for jboss? The given consoles by jboss are just jmx related, what I was looking for is the one you can deploy, undeploy applications, setup JNDI resources (datasource). I know there is one for Tomcat, but are there any for jboss?

[jboss-user] [JBoss Seam] - Re: Design question: Why use @Name on Entities?

2007-07-30 Thread [EMAIL PROTECTED]
I can't think of any compelling cases where @Name is the best choice for an entity. If the entity only has one role, with no special creation logic (pre-configuration of attributes in components.xml) then it's a bit simpler just to use @Name. View the original post : http://www.jboss.com/in

[jboss-user] [JBoss Seam] - Re: s:link page parameters and performance

2007-07-30 Thread [EMAIL PROTECTED]
Actually, I still have no clear idea what you are trying to do. Code? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068983#4068983 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068983 _

[jboss-user] [JBoss Seam] - Re: s:link page parameters and performance

2007-07-30 Thread dustismo
Thanks for the response. I guess I wasn't very clear in my initial description. The site is very large and every page has many many links on it (i.e. ebay, amazon, ect..).. And almost every single page in the site has some page page parameters and a backing bean. Thus on every single page l

[jboss-user] [JBossCache] - Re: Can Windows Network Load Balancing(NLB) Service and JGro

2007-07-30 Thread gfzhang
Thanks for you remind of me. Using "bind_addr" and "bind_port" solves this issue. Thanks again. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068975#4068975 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068975 _

[jboss-user] [Beginners Corner] - What's the jboss?

2007-07-30 Thread xuyanning
Hi: Can you tell me what's the jboss and how many modules it hava? What is the basic function of every module? By the way, what is differece between jboss5.0 and jboss4.2? The explication is the more detailed, the better I like. I am a beginner, so ask for your help. The answer in w

[jboss-user] [JBoss Seam] - Re: Remoting does not invoke my @WebRemote ?

2007-07-30 Thread samdoyle
Figured I better add the entire implementing class. | @Stateless | @Name("garageAccessor") | public class GarageAccessorBean implements GarageAccessorLocal { | |@EJB |private GarageEntityBeanFacadeLocal garageEntityBeanFacade; | |/** Creates a new instance of Gara

[jboss-user] [JBoss Seam] - Re: s:link page parameters and performance

2007-07-30 Thread [EMAIL PROTECTED]
16 seconds to evaluate maybe three or four page parameters (i.e. three or four method calls)? If you want to know what you are doing wrong, you need to post some code. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068972#4068972 Reply to the post : http://

[jboss-user] [JBoss Seam] - Re: Remoting does not invoke my @WebRemote ?

2007-07-30 Thread samdoyle
Here is the client side stuff. | | | | Seam.Component.getInstance( "garageAccessor" ).getGarages( getGaragesCallBack ); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068971#4068971 Reply to the post : http://www.jboss.com/index.html?mo

[jboss-user] [EJB 3.0] - Storing Password as MD5 Hash

2007-07-30 Thread blackers
Is it possilbe to use EJB3 and be able to store my password as a MD5 hash instead of in plain text? I have tried | | @Column(name = "password", nullable = false, length = 255) | @NotNull | @Length(max = 255) | public String getPassword() { | return this.pas

[jboss-user] [JBoss Messaging] - persisting messages for audit

2007-07-30 Thread lpiccoli
hi all, i am attempting to persist messages for audit purposes. By audit i mean provide ability to resolve disputes over what has been sent and by whom. So far i have not seen a elegant mechanism to acheive this. I was hoping for a interceptor that could be added to persist the message in the

[jboss-user] [JBoss Messaging] - Re: ClassLoader issue with MDB and Hibernate

2007-07-30 Thread genman
I am using JBoss Messaging. Actually, this is seeming more like an EJB3 question, as I'm using that too... If you could move this question to that forum, I would appreciate it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068966#4068966 Reply to the post

[jboss-user] [JBoss Messaging] - Re: DL(Q) Reason

2007-07-30 Thread genman
The DLQ support for MDB really is handled by the EJB container, and is not part of JBoss Messaging itself. There are several pluggable DLQ strategies, see: http://docs.jboss.org/jbossas/javadoc/4.0.3SP1/connector/org/jboss/resource/adapter/jms/inflow/dlq/package-summary.html It does seem that t

[jboss-user] [JBoss Seam] - Re: s:convertEntity - EntityManager is closed.

2007-07-30 Thread shakenbrain
I had this problem with Seam 2.0.0.BETA1 too. It went away after rebuilding the seam libraries CVS (about a week or so ago). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068964#4068964 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [Management, JMX/JBoss] - Re: Issue with MBean method calls with var args

2007-07-30 Thread genman
One work-around would be to use arrays explicitly in calling, or to create a separate method signature that takes arrays of strings only. How are you creating the proxy? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068963#4068963 Reply to the post : http:

[jboss-user] [JBoss Seam] - Re: Remoting does not invoke my @WebRemote ?

2007-07-30 Thread samdoyle
Oh this is based of your head branch in cvs. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068961#4068961 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068961 ___ jboss-user

[jboss-user] [JBoss Seam] - Remoting does not invoke my @WebRemote ?

2007-07-30 Thread samdoyle
Hi, I followed the instructions closely but I am unable to see my method being invoked from the client. I have remote debugging enabled and this is the popup I get. | Mon Jul 30 17:40:43 PDT 2007: Request packet: | | | | | Mon Jul 30 17:40:44 PDT 2007: Response packet: | |

[jboss-user] [JBoss Seam] - Re: Startup exception: Ajax4jsfFilter

2007-07-30 Thread atao
After updating one hour ago, I get now the same exception. I don't think it's about declaration of Ajax4JSF filter in web.xml as: - i was already working with Seam 2 cvs but updated may be 10 days ago - there is no Ajax4JSF filter in the project web.xml, and this since i work with seam 2 So...

[jboss-user] [Messaging, JMS & JBossMQ] - Managing queues

2007-07-30 Thread arnold.maderthaner
Hi 2 all ! How can I manage jboss queues ? In paticular I want to have a look on the data in the queue and want to know for which time the message is scheduled. I played around with the QueueBrowser but I couldn't get scheduled messages. For that I used the JMX listScheduledMessages function. I

[jboss-user] [JBoss Tools (users)] - Seam Project on Jboss 4.0.5

2007-07-30 Thread fabricio.lemos
Hello What is the best way to create a Seam project to be deployed on Jboss 4.0.5? On the Seam project wizard, if I choose a Jboss 4.0 Target Runtime, Seam does not appear as one of the facets to be chosen. When I choose a Jboss 4.2 Target Runtime, the Seam Facet appears, but after I finish i

[jboss-user] [JBoss Seam] - Re: login & logout options

2007-07-30 Thread rmemoria
Hi Caye, This is my authenticator bean: @Name("authenticator") | @Stateless | public class AuthenticatorBean implements Authenticator { | | @In(required=false) @Out(required=false) | UserLogin userLogin; | | @In Identity identity; | | @In(create=true) Face

[jboss-user] [JBoss Seam] - Re: s:convertEntity - EntityManager is closed.

2007-07-30 Thread trouby
Hmm, anyone? :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068953#4068953 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068953 ___ jboss-user mailing list jboss-user@list

[jboss-user] [Beginners Corner] - Re: Failed to boot JBoss when installed through installation

2007-07-30 Thread Cogito-Ergo-Sum
Hi Peter, Thank you for your continued responses to my questions. anonymous wrote : I really think you should try to just get the zip file containing the binary, unzip it, and run it. I think, I would do so eventually. However, strictly speaking, I was trying to do something (i.e. installation

[jboss-user] [JBoss Portal] - Re: JSF Portlet tutorial out of date?

2007-07-30 Thread desropolis
Thanks, I'll try it. I DID search for an answer, but I guess not hard enough! Cheers, Dean View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068951#4068951 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068951 __

[jboss-user] [JBossWS] - Re:

2007-07-30 Thread chris05atm
In the end it appeared to be something unrelated to either the wsdl, or generated java code. After a clean install of JBoss the same war file worked just fine. I believe there was some kind of cache/cleanup/whatever issue that prevented things from working properly. The order of events can be f

[jboss-user] [JBoss Seam] - Re: Design question: Why use @Name on Entities?

2007-07-30 Thread rmemoria
In my app I have an entity that is a session component. This entity holds information about the user login (like ip address, connection date and time, etc) and is "persisted" by the authenticator bean. After that it's just read by the app and never changed again. Ok... I could have used an Ent

[jboss-user] [JBoss Seam] - Re: SeamTest breaks on drools 4.0

2007-07-30 Thread dmitriy.lapko
I had the same problem and went by second way proposed ellenzhao (thank you :) ) Just add to /resources/META-INF file drools.default.packagebuilder.conf with next contents: drools.dialect.default = java | drools.dialect.java = org.drools.rule.builder.dialect.java.JavaDialectConfiguration | d

[jboss-user] [JBoss Seam] - Design question: Why use @Name on Entities?

2007-07-30 Thread SmokingAPipe
Simple question: I'm using EntityHome objects to manage a bunch of entities. Therefore I have FooHome to manage Foos, etc. Of course FooHome has to have a @Name annotation: @Name("fooHome") for it to be a Seam component. I can do all my stuff to Foos using fooHome.instance. And if I want to

[jboss-user] [EJB 3.0] - does jboss cache JNDI looked up objects for injected EJBs?

2007-07-30 Thread jainsau
In EJB 2.1 and earlier we used service locators to cache objects looked up on JNDI. This improved performance as we didnt need to look up the same beans again. In EJB 3.0, beans are injected by the AS and look up is hidden from us and is performed by JBoss. So, does JBoss perform any caching sim

[jboss-user] [JBoss Seam] - Re: s:link page parameters and performance

2007-07-30 Thread dustismo
Huh, no responses? How is everyone else handling navigation? I have been trying to find away around using page parameters but I can't find an elegant solution. Without any content my page takes 16 secs to load just because of all the s:link page params getting evaluated. View the origi

[jboss-user] [Security & JAAS/JBoss] - stick authentication info to EJB handle?

2007-07-30 Thread nlmarco
Hello *, in our use case, quite a few EJB methods (mostly of stateless session beans) need to communicate with many EJBs on different servers (some on the same server, but then mostly still as different user). Therefore, we want to stick the authentication info to the EJBs, making code like thi

[jboss-user] [JBoss Portal] - ViewRecursive vs PersonalizeRecursive

2007-07-30 Thread swisst
I am using JBoss Portal Server 2.6.1GA on JBoss AS 4.2.1GA... According to the docs: http://docs.jboss.com/jbportal/v2.6/referenceGuide/html/security.html#securing_objects it seems like PersonalizeRecursive would also include ViewRecursive. However, when I specify PersonalizeRecursive only (fo

[jboss-user] [Beginners Corner] - Re: allowing users to access server-created files

2007-07-30 Thread PeterJ
Are you using the getRealPath method of the ServletRequest or ServletContext to convert the relative path to a real path? If not, the path is calculated based on the current working directory, which is typically jboss_home/bin. View the original post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [Beginners Corner] - Re: allowing users to access server-created files

2007-07-30 Thread wesomon99
I have deployed my application exploded, which worked fine. However, I can't create a file within the web file structure. The path .../myproject/csv/example.csv does not work, it gives me an error of no such file or directory even though the directory is definitely there. View the original p

[jboss-user] [JBossWS] - Re: Documentation on generated WSDLs

2007-07-30 Thread [EMAIL PROTECTED]
Schema generation is delegated to jaxb, so I guess there is not. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068920#4068920 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068920 __

[jboss-user] [JBoss Portal] - Re: JSF Portlet tutorial out of date?

2007-07-30 Thread andrewchukwu
Hi, Im a new-commer to to Jboss portal etc. There is a lot of info about. Your answer can be found on the Jboss wiki site: http://wiki.jboss.org/wiki/Wiki.jsp?page=Running2.6WithJBossAS4.2.xAndMyFaces JBoss 4.2.x ships with Sun JSF, replace as indicated in the wiki and it should work. View th

[jboss-user] [EJB/JBoss] - TransactionAttributeType.REQUIRED and nested transactions

2007-07-30 Thread patelnikita
Hello everyone, I want to deploy two jars in my server/messaging/deploy folder, each having a persistence.xml file and also each having a stateless session bean having the @PersistenceContext(unitName="myUnit"). I call a WebMethod in one of my stateless beans, which in turn calls a WebMethod i

[jboss-user] [JBossWS] - Re: setting up an ssl web service & client

2007-07-30 Thread [EMAIL PROTECTED]
Our test clients use this | | | | | | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068916#4068916 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068916

[jboss-user] [EJB 3.0] - Re: Why is injection not working in AS 4.0 and 4.2 (servlets

2007-07-30 Thread [EMAIL PROTECTED]
"tinny" wrote : So JBoss 5.0 beta2 supports servlet injection? Or is the functionality only going to be fully delivered in the final release? | Yes and Yes. The only injection I've heard that doesn't currently work is @EJB in the web layer. But everything in the JEE5 spec will be delivered

[jboss-user] [EJB 3.0] - @EJB injection always injects remote object, why not local

2007-07-30 Thread jainsau
I have a stateless EJB, and have another EJB injected into this EJB. The injection is straight forward: @EJB BeanInteface interface; The BeanInterface is available in both remote and local forms in the jmx-console-> JNDI view-> list. I am running JBoss 4.2.0 GA, on a single system, so the inje

[jboss-user] [JBoss Messaging] - Re: JBM and JAAS Client authentication

2007-07-30 Thread [EMAIL PROTECTED]
anonymous wrote : it would not be necessary to pass a username and password to the connectionFactory.getConnection() At this point you need to pass the username and password to the connectionFactory. We don't have integration with the ClientLoginModule at this point. But anyway.. I'm curious

[jboss-user] [JBoss Messaging] - Re: JBM and JAAS Client authentication

2007-07-30 Thread timfox
The JAAS login module is used on the server side to authenticate/authorise the user specified in the call to createConnection. When using the standard connection factories security credentials are not propagated from client to server. View the original post : http://www.jboss.com/index.html?mo

[jboss-user] [Clustering/JBoss] - Re: Clustering and load balancing EJB 2.x

2007-07-30 Thread konkimalla
I am also doing the similar test but unable to make HAJNDI cluster work. I configured two nodes in the cluster and made sure the EJB has been deployed on two nodes using DistributedReplicantManager -> listContent(). I used the same configuration you have used; for ejb's I have not modified any d

[jboss-user] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service?

2007-07-30 Thread [EMAIL PROTECTED]
Yeah I too could do the simple "Hello World", but i don't know how to include a complex type, such as | | | QwWsHJyTPW.1pd0_jXlNKOSU | | as a header. Notice it wraps sessionId inside SessionHeader. I've tried a number of things including StubExt soapStub = (

[jboss-user] [JBoss Seam] - Re: hibernate session is not injected

2007-07-30 Thread mgrouch
I've found the reason. Code which uses this session was put into getter method and this getter was within ajax request which doesn't need or calls proxied action methods (so no injection happens). The query which used session should have been in @Create create() method instead of getter. View

[jboss-user] [EJB 3.0] - Re: Why is injection not working in AS 4.0 and 4.2 (servlets

2007-07-30 Thread jainsau
i have also seen that, within the AS, in the same ear, EJB injections do not work. So if an EJB access another EJB using @EJB it works. But if the EJB access another class (simple POJO) which uses @EJB, the injection doesnt work (EJB->POJO->EJB does not work, though POJO is in the same EAR file

[jboss-user] [JBossWS] - Re:

2007-07-30 Thread [EMAIL PROTECTED]
Are you saying you have a wsdl that you feed into wsconsume. Then you implement an endpoint based on the generated SEI and it cannot be called. If that's the case, please create a JIRA issue and attach the wsdl to it. The issue should be linked to this forum thread View the original post : htt

[jboss-user] [JBoss Seam] - EntityQuery Ajax update

2007-07-30 Thread jlane
Could someone please explain the steps necessary to have ajax update the input fields and rerun the query. I have the entityquery running correctly when you enter text in a field and press the submit button - refreshing the datatable. What I am trying to do is change the behavior to where as th

[jboss-user] [JCA/JBoss] - Jboss 4.2.0.GA, Oracle 10g, Oracle AQs, and JMS

2007-07-30 Thread evelthon
We want to deploy an MDB for the following platforms: 1. Jboss AS 4.2.0.GA 2. Oracle 10g as database 3. Oracle AQ as queuing system - An obvious solution is the JBoss ESB -- but the release is due end of year. - We are looking for an alternative - such as a JCA 1.5 compliant resource adapter. Q

[jboss-user] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service?

2007-07-30 Thread [EMAIL PROTECTED]
We have support to bound and unbound headers. |public void testUnboundInHeader() throws Exception |{ | // Add a header to the stub | StubExt stub = (StubExt)port; | QName xmlName = new QName("http://otherns";, "HeaderValue"); | stub.addUnboundHeader(xml

[jboss-user] [JBoss Portal] - Re: Unable to Access a preference values from portlet-instan

2007-07-30 Thread PeterJ
When posting XML text, bracket the text with [ code ]...[ /code ] brackets (without the spaces). One way to do this is to select the XML text and click the 'Code' button. (By the way, one can still see the full XML by clicking the 'View Source' button on the browser.) What you have is not that

[jboss-user] [JBoss Seam] - Facelets version?

2007-07-30 Thread monkeyden
What's the version # of facelets which ships with Seam 1.2.1GA? I'm seeing what I think is a defect with ui:repeat and probably want to upgrade. Any suggestions on the version number to upgrade to? fyi - Sometimes only the first item is displayed while looping. View the original post : http:

[jboss-user] [Javassist user questions] - Where can I download the source code for Javassist 3.4 ?

2007-07-30 Thread leonelag
Hi, Newbie here. Where can I download the source code of Javassist 3.4 ? Do I need to register at JBoss.org to be able to download it ? I've been searching the site and I cannot find the source code for Javassist nor any instructions on how to get it. Thanks Leonel View the original post :

[jboss-user] [EJB/JBoss] - Issues with scoped classloader

2007-07-30 Thread tnine
Hi All, I'm receiving strange ClassCastExceptions due to class loader issues in JBoss 4.0.2, I try to turn off parent delegation. According to the post here http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration "Use the following constructs to enabled scoped class loading with th

[jboss-user] [JBoss Seam] - Target Unreachable error w/ Seam 2.0.0.Beta1?

2007-07-30 Thread cupdike
Using Seam 2.0.0.Beta1 on JBoss AS 4.2, I generated my app using seam-gen. The list page for one of my entities, PpPemsItemMv, loads just fine and shows the table contents. However, when I try to filter using a search parameter, it blows up with the error below regarding "Target Unreachable".

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1, AS 4.2.1, @Restricted method gives NoClassDe

2007-07-30 Thread SmokingAPipe
Built on Friday the 13th, note! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068891#4068891 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068891 ___ jboss-user mailing li

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1, AS 4.2.1, @Restricted method gives NoClassDe

2007-07-30 Thread SmokingAPipe
Yes, it's AS 4.2.1 GA. Release ID: JBoss [Trinity] 4.2.1.GA (build: SVNTag=JBoss_4_2_1_GA date=200707131605) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068890#4068890 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss Seam] - selectManyCheckbox

2007-07-30 Thread tompom
I want to display a selectManyCheckbox where the checkboxes are preselected if there was a preceding selection (a selection is persisted). carBean.carList is a java.util.List of car objects (not of Strings): | | How can I achieve that? Do I need a converter? Does anyone have a comple

[jboss-user] [JBoss Portal] - Re: Unable to Access a preference values from portlet-instan

2007-07-30 Thread shanportal
Thanks a lot for you time and help. Please find below the xml file and the code. I am using jboss 4.2.0 GA and portal 2.6 Note: Some of the Element Names are Stripped in the display. I do not know why portlet.xml http://www.w3.org/2001/XMLSchema-

[jboss-user] [JBossWS] - Re: setHeader and setServerURL, using javax.xml.ws.Service?

2007-07-30 Thread [EMAIL PROTECTED]
I wasn't able to find a solution, I'm currently using AXIS. I'd love to switch over - but no one knows how to do this. Not even the jboss team has responded to this thread. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068886#4068886 Reply to the post : ht

[jboss-user] [JBoss jBPM] - Re: Subprocess initiation fails

2007-07-30 Thread rvsoft
Hello, i'am getting an error always when i try to start a new instance of a process definition containing a sub-process: Error starting process: An exception of type "org.jbpm.JbpmException" was thrown. The message is: can't create a process instance when processDefinition is null I have som

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Multiple instances with multiple configurations

2007-07-30 Thread viniciuscarvalho
Hello there! I've already ran multiple instances of jboss on the same machine, but I'm having problems trying to use multiple run.conf for those instances. We are using 4.0.1sp1 in a Suse linux We trigger the start using jboss_init_suse.sh What I've did was to create multiple runXX.conf for eac

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1, AS 4.2.1, @Restricted method gives NoClassDe

2007-07-30 Thread [EMAIL PROTECTED]
SmokingAPipe, Is this AS 4.2.1 GA? Thanks cheers Michael View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068883#4068883 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068883 ___

[jboss-user] [JBoss Messaging] - JBM and JAAS Client authentication

2007-07-30 Thread sibreb
I was under the impression that JBoss Messaging worked with the JAAS ClientLoginModule described in the JBoss AS User Guide for remote messaging clients. I understood this to mean that it would not be necessary to pass a username and password to the connectionFactory.getConnection() method. Th

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1, AS 4.2.1, @Restricted method gives NoClassDe

2007-07-30 Thread SmokingAPipe
I put el-ri.jar in the WEB-INF/lib, and got the same "java.lang.NoClassDefFoundError: com/sun/el/ExpressionFactoryImpl". I then put the el-ri.jar directly in the ear, and added it as a module in application.xml, and... it works! I tested it and it lets me run the restricted factory method. I

[jboss-user] [Messaging, JMS & JBossMQ] - Receiving message from remote Queue

2007-07-30 Thread swatkat1976
Hi, I am looking to create application which receives Messages from Remote Queue, I do not want to write a stand alone client because I want to have it under transactional context. Can anybody guide me how to connect to Remote Queues through JBoss. Thanks, SW View the original post : http://

[jboss-user] [JBoss/Spring Integration] - Re: Jboss and Spring

2007-07-30 Thread alesj
Like I said in the sticky, deploying Spring .war file/application is what Spring is all about - see their basic instructions. JBoss (Tomcat) in this case only serves as a web container. What JBoss/Spring is about, is the integration with EJB3 or any AOP injection capable module. "pedwards" wro

[jboss-user] [JBossWS] - Unable to get the service operation name in Handler, was wor

2007-07-30 Thread stattit
Hi, We have a utility method in our parent handler viz. getOperationName() that retrieves the service operation name using the following code construct msgContext.getOperationMetaData().getJavaName(); We started out with JBossWS 1.2.0 on JBoss 4.0.5. However this method throws a NPE on

[jboss-user] [Beginners Corner] - Re: allowing users to access server-created files

2007-07-30 Thread PeterJ
Here is one possibility that comes to mind. Deploy your app exploded (). With the exploded directory, have a directory (for example, csv) and place the generated file there, then generate a web page with a link to the generated file: csv/tempfilename.csv. The user clicks the link to get the file

[jboss-user] [JBoss Messaging] - Re: How to create Connection object without using JNDI?

2007-07-30 Thread [EMAIL PROTECTED]
anonymous wrote : Thanks for Helping :) No problem! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068869#4068869 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068869 ___ jb

[jboss-user] [JBoss Portal] - Re: Unable to Access a preference values from portlet-instan

2007-07-30 Thread PeterJ
>From what you describe, this should work - you should be getting the value of >the preference as defined in portlet-instances.xml. Please post your portlet.xml, portlet-instances.xml, *-object.xml and the code from your portlet that accesses the preference. You don't have to post the entire fi

[jboss-user] [JBoss Messaging] - Re: How to create Connection object without using JNDI?

2007-07-30 Thread [EMAIL PROTECTED]
Ahhh... now I understand your question: This is something you can easily do in JNDI. You could create a method like this. the returned Context will be bound to the host you pass as a parameter: | | |// the default method |protected Context createContext() throws Exception |

[jboss-user] [JBoss Messaging] - Re: How to create Connection object without using JNDI?

2007-07-30 Thread linnuxxy
Thats what I meant: | Properties h = new Properties(); | h.put( "java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory"); | h.put( "java.naming.provider.url","jnp://localhost:1099"); | h.put("java.naming.factory.url.pkgs","org.jboss.naming:org.jnp.interfaces

[jboss-user] [JBoss Portal] - Re: commands to change regions

2007-07-30 Thread [EMAIL PROTECTED]
It is not documented *because* it is part of the internal API and subject to changes. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068865#4068865 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068865

[jboss-user] [JBoss Messaging] - Re: How to create Connection object without using JNDI?

2007-07-30 Thread linnuxxy
I'm sorry for not being clear... Lets simplify the question... I need to hard-code the server url in my code... rather to use jndi.properties file... is that possible? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068864#4068864 Reply to the post : h

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1, AS 4.2.1, @Restricted method gives NoClassDe

2007-07-30 Thread [EMAIL PROTECTED]
Can you try to put just the implementation classes not the interfaces in the lib dir? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068863#4068863 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068863

[jboss-user] [JBoss Portal] - Re: Unable to Access a preference values from portlet-instan

2007-07-30 Thread shanportal
Thanks a lot peter for you Immediate Response, I am able to access the preference value from the portlet.xml. However I am not able to access the value I set in the portlet-instances.xml for the same preference. The values of the preference are set to be different in portlet.xml and portlet-i

[jboss-user] [JBoss Messaging] - Re: How to create Connection object without using JNDI?

2007-07-30 Thread [EMAIL PROTECTED]
I'm not sure I understand what you mean... If you can use the JNDI... you can just wrap this code somehwere, right? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068861#4068861 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[jboss-user] [JCA/JBoss] - Re: JCA 1.5 deployment in JBOSS 4.0.0

2007-07-30 Thread vickyk
MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM: | ObjectName: jboss.jca:service=RARDeployment,name='infranetconnector.rar' | state: NOTYETINSTALLED | I Depend On: | Depends On Me: jboss.jca:service=ManagedConnectionFactory,name=Ombi.Infranet | The above log message indicates that the infr

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1, AS 4.2.1, @Restricted method gives NoClassDe

2007-07-30 Thread SmokingAPipe
When I put the jars in the war/WEB-INF/lib, I get: SEVERE: Error Rendering View[/index.xhtml] | com.sun.facelets.FaceletException: Could not instantiate feature[compiler.ExpressionFactory]: org.jboss.seam.ui.facelet.SeamExpressionFactory | at com.sun.facelets.compiler.Compiler.featu

[jboss-user] [JBoss Seam] - hibernate session is not injected

2007-07-30 Thread mgrouch
I have problem with injecting hibernate session. I have the following in my Seam component (which is session scoped) @In | private Session productDatabase On first request it is injected properly and on second one (which is ajax request via quipukit 1.2 pagination control) it is not happening

[jboss-user] [JBoss Seam] - problem with booking example in jboss-seam-1.2.1.GA.zip

2007-07-30 Thread plchen65
I am new in Seam. I downloaded jboss-seam-1.2.1.GA.zip in 07/26/07 and unzipped it. I followed the instructions and deployed booking example. JBoss came up fine. I could go to app by http://localhost:8080/seam-booking/. I then clicked "Register New User" link and tried to register. I type

[jboss-user] [Beginners Corner] - allowing users to access server-created files

2007-07-30 Thread wesomon99
Hello, I have a JBoss server set up for hosting web applications, which is working great. However, I need to allow users to access simple .CSV files that the server creates based on the information they provide. For example, they submit an .XML file, the server does some mumbo jumbo, then they

[jboss-user] [JBoss/Spring Integration] - Jboss and Spring

2007-07-30 Thread pedwards
Guys, I am new to jboss. I've got a prewritten spring application, that I now need to run out of jboss. I've had a play with the jboss-spring deployer, but its still using 1.2.5 version of spring, which doesn't work with my code. So I need to know how to start spring application context from a

[jboss-user] [JBoss Seam] - IllegalStateException after redeploy

2007-07-30 Thread dietmaier
Hi, this error has bugged me for 2 days now: I get an java.lang.IllegalStateException: pageflow is not currently at a or node (note that pageflows that begin during the RENDER_RESPONSE phase should use instead of ) when accessing the start-page of the pageflow, but only after redeploying th

[jboss-user] [JBoss Portal] - JSF Portlet tutorial out of date?

2007-07-30 Thread desropolis
I have been following the Portlet Tutorials that I downloaded with JBoss Portal 2.6.1 and have hit a snag. The HelloWorldJSFPortlet should extend a MyFaces portlet. JBoss AS 4.2.1 ships with Sun's RI, not MyFaces. I get this error: 14:30:37,096 ERROR [[/helloworldjsfportlet]] Error configurin

  1   2   3   >