[jboss-user] [Remoting] - Re: how to start remote jboss server

2007-05-04 Thread [EMAIL PROTECTED]
Hi jb, Could you be more specific about what you want to do? Thanks, Ron View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043410#4043410 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043410

[jboss-user] [JBoss Seam] - Re: Nested conversations and transaction management

2007-05-04 Thread FabBoco
Christian, anonymous wrote : | Yes, you have a fuzzy picture about what system transactions are and now look for the wrong solutions. Seam and Java EE have _all_ options you need to handle transactions. Don't jump into the middle trying to use nested conversations, long-running persistence c

[jboss-user] [EJB/JBoss] - Re: Statefull session bean and exception

2007-05-04 Thread vkaushik_610
I am getting the same issue. can anybody help me out if this is possible. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043408#4043408 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043408

[jboss-user] [JBoss Seam] - Problem with s:convertEntity

2007-05-04 Thread Seto
When I choose one of the category, nothing happen. But when i choose the no selection label, the form is submitted normally. Anyone could help me? Please, I'm waiting anxiously online now. | | | | | |

[jboss-user] [JCA/JBoss] - I can't see Conneciton Sharing happening .

2007-05-04 Thread vickyk
I am making the Unshareable in the web.xml file , here goes the code . | DB Connection | jdbc/testDS | javax.sql.DataSource | Container | Unshareable | I have a jsp which does the following InitialContext ctx = new InitialContext(); | Da

[jboss-user] [Beginners Corner] - Re: CommunicationException

2007-05-04 Thread kuvera
Thank you, that's also good to know. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043405#4043405 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043405 ___ jboss-user mailing

[jboss-user] [Remoting] - Re: while monitoring on Jboss Opertaional network actions ar

2007-05-04 Thread [EMAIL PROTECTED]
Repeating a response from another forum: anonymous wrote : | I assume that JON is JBoss ON, which you get only by having a support contract. Why don't you use your support contact to ask this question? You are sure to get an answer back in a timely fashion. | The Remoting group is separat

[jboss-user] Specify war file unpack directory

2007-05-04 Thread Zakai Kinan
is there a way to specify/force a war file to unpack in a directory? TIA, ZK Don't get soaked. Take a quick peak at the forecast with the Yahoo! Search weather shortcut. http://tools.search.yahoo.com/short

[jboss-user] [JBoss Seam] - Re: EL and an emelemtn out of a LinkedHashSet

2007-05-04 Thread [EMAIL PROTECTED]
Solved in other thread... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043403#4043403 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043403 ___ jboss-user mailing list jboss

[jboss-user] [JBoss Seam] - Re: EL and accessing .size or isEmpty

2007-05-04 Thread [EMAIL PROTECTED]
Thanks guys excellent solutions. I discovered a workaround which was to use "another" DataModel to to hold these. Seems overkill as its only for displaying them as text (no buttons, line row selections etc.), so I will refactor to use one of the solutions above. View the original post : http://

[jboss-user] [JBoss Seam] - Re: EL and accessing .size or isEmpty

2007-05-04 Thread hstang
Use Facelets' built-in Jstl Function library. | | make sure you register the namespace for fn i.e | http://java.sun.com/jsp/jstl/functions";> | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043401#4043401 Reply to the post : http://www.jboss

[jboss-user] [JBoss Seam] - Re: EL and accessing .size or isEmpty

2007-05-04 Thread stu2
You can use the empty keyword, like this: #{advertisingCampaign.keywords == null || empty advertisingCampaign.keyword} View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043400#4043400 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[jboss-user] [JBoss Seam] - Re: Security - Define dynamic Role in application

2007-05-04 Thread [EMAIL PROTECTED]
Try check.getName() and check.getAction(). We're waiting for the next Drools milestone to be released which should include some enhancements to the rule language that will allow more EL-like expressions. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043399#

[jboss-user] [Javassist user questions] - Re: Javassist getMethods() returns protected methods?

2007-05-04 Thread chiba
Thanks, but it a spec... There was some reason but I don't remember it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043398#4043398 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043398 __

[jboss-user] [Javassist user questions] - Re: javassist can't work with jdk1.6

2007-05-04 Thread chiba
I fixed this problem and the new source is now available from the CVS HEAD. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043397#4043397 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043397 ___

[jboss-user] [Installation, Configuration & Deployment] - Re: Infinite loop?

2007-05-04 Thread flarosa
It worked. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043396#4043396 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043396 ___ jboss-user mailing list jboss-user@l

[jboss-user] [EJB 3.0] - Re: Map multiple rows to one object?

2007-05-04 Thread fhh
Use the @Basic annotation. It will serialize the Array/List with your values, Regards Felix P.S.: I consider this bad design since you can't modify the data directly using sql. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043395#4043395 Reply to the post

[jboss-user] [EJB 3.0] - Re: help composite keys

2007-05-04 Thread fhh
In thoery this would probably best be solved by using @idclass with ruta and puerto as the two @ids (assuimng every puerto is only once on a route). But if your solution works for you I wouldn't bother. Regards Felix View the original post : http://www.jboss.com/index.html?module=bb&op=viewt

[jboss-user] [EJB 3.0] - Re: @EmbeddedId vs. @IdClass - when shall I use what?

2007-05-04 Thread fhh
IMHO @EmbeddedId should be used when the combined pk is either a meaningful entity itself or it reused in your code. @IdClass is useful to specify that some combination of fields is unique but these do not have a special meaning. Regards Felix View the original post : http://www.jboss.com/in

[jboss-user] [JBoss and NetBeans] - Re: Unable to deploy / run to JBoss from Netbeans, port 8080

2007-05-04 Thread int2
I got similar problem. Update your netbeans to 5.5.1 Rc1 to fix it. Cheers View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043392#4043392 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043392 ___

[jboss-user] [JBoss Seam] - Re: First JBoss Seam book released

2007-05-04 Thread Delphi's Ghost
Got mine today from Bookpool. Now I just need to find some peace and quiet to read it this weekend. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043391#4043391 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043391 _

[jboss-user] [JBoss Seam] - Re: Sun's app server and Seam

2007-05-04 Thread Delphi's Ghost
There have been a number of posts here from people using Glassfish, I'd suggest using the forum search for Glassfish. AFAIK, people have Seam apps running under glassfish, but it takes a little more work on the config files. View the original post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread Delphi's Ghost
Hey Carlos anonymous wrote : | but when should i call the forwardToBaseAction() ??? In my Action constructor ?? As Christian said, the @Create annotation tells seam to call this function once the bean has been constructed. If you use Christians method beware that when you call setEntity,

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread carlos.abreu
Ow, it's quite obvious i didn't realize that... You sugested to do something like this : public CompanyAction(){ super.setEntitty(Component.getInstance("company")); } The object attributes that will be passed to the super class will not be null ?? Thanks View the original post : http://w

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread [EMAIL PROTECTED]
It's called by Seam when the component is instantiated, hence @Create. My solution is easier, call super(Component.getInstance("customer")) in your constructor. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043387#4043387 Reply to the post : http://www.jb

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread carlos.abreu
Delphi i understand your sugestion, but when should i call the forwardToBaseAction() ??? In my Action constructor ?? Thanks in advance for your time guys... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043386#4043386 Reply to the post : http://www.jbos

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Map multiple rows to one object?

2007-05-04 Thread texan
To clarify, I want the primary key of the UserPreference class to effectively be distinct(user_id,preference_id). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043384#4043384 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[jboss-user] [EJB 3.0] - Map multiple rows to one object?

2007-05-04 Thread texan
Is it possible to map multiple rows to one object? Here's a sample table: User_Preference_Value --- user_id pref_id value The combination of (user_id, pref_id) is not unique. A User can have multiple values for some preferences. I'd like to have a single UserPreference value whose co

[jboss-user] [Installation, Configuration & Deployment] - Re: Infinite loop?

2007-05-04 Thread PeterJ
Take a thread dump and see what is running. You might have to take several a minute or so apart. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043381#4043381 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043381 _

[jboss-user] [JBoss Seam] - Re: Security - Define dynamic Role in application

2007-05-04 Thread markfoerstein
Hi Shane, Today I finally got my hands on this. My database structure and entities are all set. Step 2) tricked me, since the getSecurityContext() method is not available inside RuleBasedIdentity.instance(). So Im using the following to get the working memory: | WorkingMemory wm = ((RuleBas

[jboss-user] [Beginners Corner] - Re: CommunicationException

2007-05-04 Thread PeterJ
JavaService stores its information in the registry, so you can always tweak the settings in there. Documentation is at http://javaservice.objectweb.org/js_doc_frame.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043379#4043379 Reply to the post : http

[jboss-user] [JBoss Getting Started Documentation] - Re: Bank example build error

2007-05-04 Thread PeterJ
You downloaded the wrong file from Sun. You want the "tutorial", not the "samples". Thel ink I gave you above was for ch 4 of the Getting Started guide, the prior chapter has the URL for the tutorial. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043378#404

[jboss-user] [JBoss Portal] - Re: CMS - UnsupportedOperationException: Blobs are not cache

2007-05-04 Thread rharari
Thanks Sohil, I´ve changed to JBossCachePeriststenceManager and worked fine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043375#4043375 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043375

[jboss-user] [JBoss Seam] - Re: Problem injecting EJBs

2007-05-04 Thread ips
It's the job of the EJB container when the EJB annotation is used within EJBs. I think it would be really nice if Seam processed the EJB annotation when it was used within non-EJB POJOs. Otherwise, you're stuck using JNDI to lookup EJBs that are not Seam components. View the original post : h

[jboss-user] [JBoss jBPM] - Re: Trying to build JBPM ear file locally. jbpm-jpdl-3.2.GA

2007-05-04 Thread meghanai_99
I just noticed that even though I get this exception, I can still login and access JBPM console. But I would still like to understand what I am missing here. Thanks, Meghana View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043368#4043368 Reply to the post :

[jboss-user] [JBoss jBPM] - Trying to build JBPM ear file locally. jbpm-jpdl-3.2.GA work

2007-05-04 Thread meghanai_99
Hello, I need to build the JBPM ear file locally and deploy to JBoss 4.0.5GA. I could get JBPM working on it using official release jbpm-jpdl-3.2.GA. However when I built the same ear and war files locally, I got following exception - I did not change anything in the source code, only modified

[jboss-user] [JBoss Seam] - EL and an emelemtn out of a LinkedHashSet

2007-05-04 Thread [EMAIL PROTECTED]
| | | | | | | | | | | | | | | this should be

[jboss-user] [JCA/JBoss] - Migration to MySQL

2007-05-04 Thread bartek.polakowski
Hello, I trying to change my datasource to MySQL but I can not solve one problem: 2007-05-05 00:05:13,664 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment listing: ... --- MBeans waiting for other MBeans --- ObjectName: jboss.ejb:service=EJBTimerService,persisten

[jboss-user] [JBoss Seam] - EL and accessing .size or isEmpty

2007-05-04 Thread [EMAIL PROTECTED]
A coding question ... with EL how do I get to things like .size.. or .isEmpty its seems very hard to get to!!! I have this... | | and want this | | But size is "not a property" and incidently nither is isEmpty !!! keywords is a LinkedHashSet (to ensure retreival order matches i

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.0 CR2 Release

2007-05-04 Thread [EMAIL PROTECTED]
Which binary distro you are using? I believe I had verified user and admin account before I uploaded it to sourforge. Do you see any error in console? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043358#4043358 Reply to the post : http://www.jboss.com/inde

[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.0 CR2 Release

2007-05-04 Thread sweiss
I just set up 2.6 CR2, the "user" and "admin" accounts seem to be disabled. I was able to create a new account and login once, but after restarting the server I get the "Your account is disabled" message. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043356#

[jboss-user] [JBoss Seam] - Help: problem with EntityHome

2007-05-04 Thread qzhengyy
Hi, I am having problem using EntityHome. I have an entity class Foo, follow the Seam documentation in Section 10.2 I define a FooHome class | public FooHome extends EntityHome { | } | First I get null pointer exception because getEntityManager() returns null. I solve this problem b

[jboss-user] [JBoss Seam] - jboss-el improvements?

2007-05-04 Thread dustismo
Hello, I am using seam from cvs, using jbossas 4.2.0. I built the documentation but it didn't have anything new about the jboss-el. So my question is: what are some of the new features of jboss-el? Is there some documentation I am missing? thanks, Dustin View the original post : http://www.

[jboss-user] [JBoss Messaging] - Re: Calling messaging from webapp in same vm as messaging

2007-05-04 Thread timfox
Glad to hear it :) BTW Are you deploying JBM scoped? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043340#4043340 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043340 ___ j

[jboss-user] [JBoss Messaging] - Re: Calling messaging from webapp in same vm as messaging

2007-05-04 Thread chip_schoch
I managed to find that elusive combo that works. 1. JBossAS 4.2.0.CR2 2. JBM 1.2.SP1 3. Copy jboss-messaging.jar and jboss-remoting.jar from jboss-messaging.sar into server/messaging/lib 4. restart server 5. Do not include jboss-messaging-client.jar in .ear Everbody plays nice now. View

[jboss-user] [Installation, Configuration & Deployment] - Infinite loop?

2007-05-04 Thread flarosa
Hi, I'm having a problem where my web application seems to be entering some kind of infinite loop every few hours. The CPU meter on the machine pegs near 100% until I either restart JBoss or redeploy my application. I don't know what particular request or activity triggers the problem. Is ther

[jboss-user] [JBoss Seam] - Re: SeamLoginModule Error invoking login method

2007-05-04 Thread jblackmore
I've been struggling with this problem all day, and I just figured out what my problem was. Maybe yours is the same. I too started with the examples, specifically booking. In my case, I had been checking the differences between my log output and the booking example test output, and the key dif

[jboss-user] [JBoss Messaging] - Re: Calling messaging from webapp in same vm as messaging

2007-05-04 Thread timfox
Ok, I have added this task: http://jira.jboss.com/jira/browse/JBMESSAGING-955 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043336#4043336 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043336

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Map multiple rows to one object?

2007-05-04 Thread texan
I'm using EJB3 persistence under JBoss 5.0.5. (But I think this is a hibernate question) With the table structure below, I want to create a UserPreference class with a relationship to User and Preference, and a collection of String values. Note that (user_id,preference_id) is not unique in th

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread Delphi's Ghost
Oops, sorry, posted before I saw your last post describing your problem. >From your code, the injection happens after the constructor is called. What you need is : | | @Create | public void forwardToBaseAction() { | super.setEntity(company) | } | | The @Create an

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread [EMAIL PROTECTED]
I don't think injection occurs during construction of the CompanyAction Seam component (it has a @Name, right?). You might want to use a lookup in the constructor with Component.getInstance("company") instead. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40

[jboss-user] [JBoss Messaging] - Re: Calling messaging from webapp in same vm as messaging

2007-05-04 Thread chip_schoch
I have my webapp scoped as per the directions: My jboss-app.xml | | com.eLynx:loader=ImplementationsWebapp | java2ParentDelegation=false | | | The problem that arises when I include jboss-messaging-client.jar in my .ear file and try to deploy it. W

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread Delphi's Ghost
If I'm understanding correctly, you want to use a more "spring like" service/dao design for developing your application? .You can implement DAOs and have them injected into your stateful beans : I think you can implement your DAOs as stateless session beans since the only 'state' you have is in

[jboss-user] [Beginners Corner] - Re: CommunicationException

2007-05-04 Thread kuvera
I reply my own questions for the sake of posterity, that is me, when I forget it :) JavaService.exe -install jboss c:\App\J\jdk6\jre\bin\server\jvm.dll -Djava.class.path=c:\App\J\jdk6\lib\tools.jar;c:\App\jboss\bin\run.jar -start org.jboss.Main -params "-b 0.0.0.0" -stop org.jboss.Main -method

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread carlos.abreu
Hy Christian basically what i need is to pass forward objects from my Action Class, to a generic Action class.. Example: public abstract class BaseAction(){ private BaseEntity em; protected void setEntity(BaseEntity em){ this.em = em; } } public class CompanyAction extends Ba

[jboss-user] [EJB 3.0] - Entity super class getting nulled out

2007-05-04 Thread tglaess
I have an entity bean that extends another entity bean. All is fine until about 10 minutes of inactivity in the session. So, I log in to our app and let the session sit idle for 10 minutes. At that time, the values in the superclass all become null. The values in the subclass have not changed.

[jboss-user] [JBoss Messaging] - Re: Calling messaging from webapp in same vm as messaging

2007-05-04 Thread timfox
No problem- If you add a JIRA task, assign it to 1.2.0.SP2, either Clebert or I will take a look. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043325#4043325 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043325 _

[jboss-user] [JBoss Seam] - Re: Is seam-gen really a good idea to learn about seam?

2007-05-04 Thread ASavitsky
"fperedo" wrote : Hi! | -First, transient POJOs: show me what can be done in | SEAM without JPA or Hibernate. (a really simple in memory POJOs example with 1 page first, and then 2 or three) ¿this part needs the microcontainer? No, though one does get included in the Seam-PDF example. You can

[jboss-user] [JBoss Messaging] - Re: Calling messaging from webapp in same vm as messaging

2007-05-04 Thread chip_schoch
Tim, I appreciate your efforts and I apologize for the way my post sounded. Part of my frustration is I had a configuration working and cannot seem to get back to it. I can't remember what I did to get it going in the first place (4.0.5.GA, JBM 1.0.1.GA). I am just moving ahead with 4.2.0CR

[jboss-user] [JBoss Seam] - Re: Can i use another kind of architeture for a SEAM applica

2007-05-04 Thread [EMAIL PROTECTED]
I don't understand what you want to do. Please post some pseudo code or something. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043321#4043321 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043321 __

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-04 Thread ASavitsky
Thanks Pete. I had my findings posted a while ago in this forum (http://www.jboss.com/index.html?module=bb&op=viewtopic&t=104525), and now waiting for JIRA admins to resolve my inability to post new issues there. My integration covers JOTM, Atomikos and JBoss Transactions (Arjuna JTA) - frankly

[jboss-user] [JBoss Portal] - Re: Authenticate and redirect/forward to another page in the

2007-05-04 Thread vijaychhipa
Just an update that: I am using Jboss Portal 2.6 Beta and JBoss App Server 4.0.5 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043318#4043318 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043318 __

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-04 Thread petemuir
A good starting point is to write up your findings on the wiki, for others to view. Then, create a JIRA request asking to have them included in the docs. If you've already done that, then I guess it's just taking time for them to be pulled in! View the original post : http://www.jboss.com/i

[jboss-user] [EJB 3.0] - Re: recurring timer and app re-start issue

2007-05-04 Thread ajay662
Nobody else is experiencing this?? This is a major problem. I have a bunch of tasks scheduled to do nightly maintenance on my devices at 1pm every night. So I am using a recurring timer to schedule these. Everything works as expected if I keep my application running. But if have to re-start my

[jboss-user] [JBoss Portal] - Re: Exception in clustered environment

2007-05-04 Thread ashishaneja
Any idea from the Gurus out there .. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043311#4043311 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043311 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Can i use another kind of architeture for a SEAM application

2007-05-04 Thread carlos.abreu
Hy, i´m new here... I am studying SEAM and i am liking very much However , i wanna apply another kind of architeture in my application. I would like to pass forward the objects injected by SEAM to other layer of my application. I want to do this because i want to padronize the calls to upd

[jboss-user] [JBoss Seam] - Re: First JBoss Seam book released

2007-05-04 Thread smithbstl
Just got my published book in mail. Thought I would let anyone know who maybe wondering when it will come from Safari (for those that purchased the Rough Cuts bundle) Thanks Michael and Thomas for writing it!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4

[jboss-user] [Beginners Corner] - Re: CommunicationException

2007-05-04 Thread kuvera
Thanks for writing. I have just a few minutes ago figured out how I can bind an address with the -b switch. You question suggests that I can bind more. How? Also, on windows with JavaService.exe, how do I pass the bind address to JBoss? View the original post : http://www.jboss.com/index.html?

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-04 Thread ASavitsky
You missed the point. Yes, time was spent integrating Seam with plain JTA and Tomcat (and I don't regret it), but I don't see why Seam documentation and examples shouldn't incorporate these findings. So far, I've seen no interest in making Tomcat users' life easier. View the original post : ht

[jboss-user] [JBoss jBPM] - Enumerations in jPDL

2007-05-04 Thread isobretatel
How do I specify enumeration in jPDL? For example, in my bug tracking application "Create Change Request" task requires entering "Category", which is an enumeration. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043302#4043302 Reply to the post : http://w

[jboss-user] [Beginners Corner] - Re: CommunicationException

2007-05-04 Thread genman
What are the bind addresses for the ports on this remote machine? If they are bound to 127.0.0.1 and not the real IP address, they are not available remotely. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043300#4043300 Reply to the post : http://www.jboss.

[jboss-user] [JBoss Portal] - Authenticate and redirect/forward to another page in the por

2007-05-04 Thread vijaychhipa
Hello I have a request from a user of my portal to automatically log in the user into the portal and then take them to a particular page say p1.jsp . The user will pass a param in the request "next_url=UserManager/UserListPortletWindow?action=2&operation=view_reg_code" Since I use a DatabaseLog

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-04 Thread [EMAIL PROTECTED]
So, because your production department is saving money on the deployment environment, you need to spend more money (time) on the development side. Sorry, but nothing is free. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043297#4043297 Reply to the post :

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-04 Thread ASavitsky
Because we're a major bank where everyone cannot run whatever they please. There are tons of regulations regarding what is allowed to run production environments. There's an architectural department that makes such decisions for a few years ahead. There are administrators that are hired with spe

[jboss-user] [JBoss Getting Started Documentation] - Re: Bank example build error

2007-05-04 Thread JasonHsu
Well, I just download the j2eesdk-1_4_03-samples.zip from Sun and unzip it. But the directories under the 'sample' looks like the following. I really don't understand where I can copy the patch files to. It seems to be totally different stories. I know it must be Sun or my problem but I can

[jboss-user] [Installation, Configuration & Deployment] - Re: Jar files not deploying

2007-05-04 Thread earniedyke
Of course as soon as I hit the "submit" button it came to me: I copied the installation from another server and did NOT delete the tmp and work directories. Stopped, deleted, restarted and all is well. Earnie! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40

[jboss-user] [Installation, Configuration & Deployment] - Jar files not deploying

2007-05-04 Thread earniedyke
Greetings all, I have a new 4.0.5.GA installation with several jar files and two war files. The war files deploy but the jar files do not. What would cause JBoss NOT to deploy jar files? Earnie! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043291#4043291

[jboss-user] [JBoss jBPM] - Nullable properties and Text control behaviour in the GPD

2007-05-04 Thread [EMAIL PROTECTED]
Hi all, With this post I want to get some input from the community about two different topics. The first of these is nullable properties in jPDL. As you might have seen in the latest release of the GPD (3.1.0.alpha4), I have provided a checkbox next to some of the text input fields. The check

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-04 Thread supernovasoftware.com
Why are so many people not willing to just download JBoss AS for free and use the embedded Tomcat? What are the advantages of just using plain tomcat? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043288#4043288 Reply to the post : http://www.jboss.com/ind

[jboss-user] [JBoss Seam] - Custom Injector - What interceptors should I go

2007-05-04 Thread jbnewb
- I am using seam (no EJB), do use @In, @Out - However, I need to inject domain specific objects (these cannot have default constructors), I have written a custom @Inject annotation - I also have a dummy @Injector annotation at the class level, where I actually introspect all fields annotated w

[jboss-user] [JBoss Seam] - Re: Pageflow Question & Switcher Issue

2007-05-04 Thread Delphi's Ghost
Looking at this a bit more, it seems that join="true" might not be the best answer. In my dummy app, I have meeting objects which has one or more person objects as members. When editing the meeting, you can select "add member" to go to the person search page where you select a person and the pa

[jboss-user] [Beginners Corner] - Re: finding images

2007-05-04 Thread tekniklas
Apache and mod_jk in front of jboss can achieve it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043283#4043283 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043283 ___ jb

[jboss-user] [JBossCache] - Habanero in CR

2007-05-04 Thread [EMAIL PROTECTED]
JBoss Cache 2.0.0 Habanero is now in CR1. Details on the JBoss Cache blog page. It is important that people download, try out and feed back as much as possible on the 2.0.0 series. Enjoy! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043281#4043281 Reply

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Superclass of Entity getting nulled-out

2007-05-04 Thread tglaess
I have an entity bean that extends another entity bean. All is fine until about 10 minutes of inactivity in the session. So, I log in to our app and let the session sit idle for 10 minutes. At that time, the values in the superclass all become null. The values in the subclass have not changed.

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-04 Thread ASavitsky
The only complaint I have about Seam so far, is the recommended packaging for Tomcat. The Microcontainer-based packaging places very serious restrictions on the application (for example, try passing the Tomcat-configured DataSource into the MC-based app) that makes this configuration not accepta

[jboss-user] [JBoss Seam] - Re: Is seam-gen really a good idea to learn about seam?

2007-05-04 Thread fperedo
I agree... Seam is simplest to use in an EE5 container... perhpas my problem is that I am used to other frameworks on which you learn the other way around: 1) How to do it without EE5 2) How to do it with EE5 I guess all this comes from the fact that I would love to use Seam over OC4J... but fr

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl-designer-3.1.0.alpha3 questions

2007-05-04 Thread [EMAIL PROTECTED]
Hi Maurice, I am not aware of the jpg issue. Are there particular errors showing up in the Eclipse error log? Btw, I released alpha4 earlier this week. It has complete jPDL support, including controller support for tasks and form generation. I recommend that you give it it a try. Regards, Koen

[jboss-user] [Installation, Configuration & Deployment] - Re: Weird: Different deployed apps in each windows account,

2007-05-04 Thread fperedo
Yes, exactly, I am running Vista... I am going to use google to find out about that Program Files protection... Thanks a lot! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043276#4043276 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [Management, JMX/JBoss] - Re: JMX URLs

2007-05-04 Thread argonRyan
I figured it out. I needed to also add the following property to the run.conf: JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.port=3099" and then use the URL: service:jmx:rmi:///jndi/rmi://myhost:3099/jmxrmi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[jboss-user] [EJB 3.0] - Re: Mixed EJB 2.1 and 3.0 in ejb-jar.xml

2007-05-04 Thread rkite01
Thanks, that is what I have done. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043274#4043274 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043274 ___ jboss-user mailing l

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Unabled to enlist resource Jboss 4.2 CR2

2007-05-04 Thread swjackson
I just upgraded from jboss-4.0.5.GA. I am now getting an issue which could related to the new binding -b option on startup. When trying to obtain a database connection to Sybase ASE I get the following Exception below. The extra arg1 is my machine name but jboss is adding an incorrect domain

[jboss-user] [JBoss jBPM] - How to delete a process archive?

2007-05-04 Thread [EMAIL PROTECTED]
I'm running with jbpm-jpdl-3.2.GA - and have a question about deployed process archives. I inadvertently deployed a process twice. Is there a (short of deleting from the server DB manualy) way for me to remove one of these process archives? Thanks! View the original post : http://www.jboss.co

[jboss-user] [JBoss jBPM] - Looking for localhost:8080/jbpm (referenced in demo)

2007-05-04 Thread [EMAIL PROTECTED]
I'm running with jbpm-jpdl-3.2.GA - in the on-line demo, after a process archive is deployed, the user accesses it via http://localhost:8080/jbpm and http://localhost:8080/jbpm/faces/home.jsp I'm not seeing anything at that URL - has this moved? Thanks! View the original post : http://www.jbos

[jboss-user] [JBoss Seam] - Re: While Seam is great, is any weakness of this framework?

2007-05-04 Thread Delphi's Ghost
anonymous wrote : | All the plugins that make up rhds will be available free on an eclipse update site - so for home dev you maynot even need a license | It's a question of this whole RHDS vs the community version which hasn't fully been explained clearly. From my last take on it, from a

[jboss-user] [JBoss jBPM] - Seeing these errors - something to worry about?

2007-05-04 Thread [EMAIL PROTECTED]
I'm running with jbpm-jpdl-3.2.GA and just noticed a set series of server log errors - I was just deploying a simple test app and then using the web console to start/view the process. Does this look like a serious problem - can anyone suggest what's going on here? Thanks! 11:28:16,256 ERRO

[jboss-user] [JBoss Seam] - Re: Pageflow Question & Switcher Issue

2007-05-04 Thread Delphi's Ghost
Hey, thanks for the reply, anonymous wrote : | Yes, I think this is correct. I need to think about it tho. | Ok, my only thought was that nested=true would result in a new nested conversation on each render, and join = false results in errors on each render, so if it was by design, it w

[jboss-user] [EJB 3.0] - Re: design pattern for canceling an EJB3 timer

2007-05-04 Thread ajay662
Thanks. As I iterate through the timers and find the one that I need to cancel, is there a way to know if a @Timeout callback is in progress for that Timer object? I don't see anything on the Timer class for this. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: IllegalAccessError with Hibernate Annotation

2007-05-04 Thread apfeuti
I use JBoss 4.0.5.GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043260#4043260 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043260 ___ jboss-user mailing list jboss-user

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - IllegalAccessError with Hibernate Annotation

2007-05-04 Thread apfeuti
Hi If I try to build a SessionFactory for annotated classes AnnotationConfiguration cfg = new AnnotationConfiguration(); | cfg.addAnnotatedClass(mypackage.MyAnnotatedEntity.class); | SessionFactory sessionFactory = cfg.buildSessionFactory(); (or if I try with an xml-configuration ins

[jboss-user] [JBoss Seam] - ClassCastException: org.jboss.seam.jsf.SeamApplication11 inc

2007-05-04 Thread titou09
Hello, I'm trying to setup a project with seam 1.2.1 on WebSphere v6.1.0.7. WAS v6.1.0.7 has a JSF 1.1 implementation based on JSF Sun RI. When WAS tries to start the application, I get the following exception: WebAppE Extension processor failed to initialize in factory: [EMAIL PROTEC

  1   2   3   >