[jboss-user] [Messaging, JMS JBossMQ] - Re: class not ofunf exception

2007-05-12 Thread iamgoingcrazy
please someone respond.it is very important View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045177#4045177 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045177 ___

[jboss-user] [JBoss Seam] - Re: FacesMessages queued but not being displayed.

2007-05-12 Thread [EMAIL PROTECTED]
anonymous wrote : | There is an API change for the FacesMessages that was introduced in 1.2. If you want to attach a message to a JSF control, then you should use the new FacesMessages.addToControl() method | Ghaar.. Can this be put in the documentation 13.2.3? I keep falling over

[jboss-user] [JBoss Seam] - Re: jboss-beans.xml vs *-ds.xml

2007-05-12 Thread [EMAIL PROTECTED]
The -ds.xml files are used in the full JBoss Application Server to specify datasource configurations. The jboss-beans.xml is the main configuration file of the embeddable EJB3 container, in which, besides other kernel level beans, you can configure datasources. That is the only thing both

[jboss-user] [JBoss Messaging] - Re: How can I avoid start Subscriber BEFORE Publisher for du

2007-05-12 Thread timfox
LOL. It was late when I wrote that. What I meant to say was, of course, This is a forum for JBoss Messaging, not JBoss MQ. JBoss MQ is the old JMS provider shipped with JBAS. http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMQ JBoss Messaging is the new JMS provider.

[jboss-user] [JBoss Portal] - Re: JBoss WSRP consumer and file uploads

2007-05-12 Thread superfilin
Can I ask a stupid question? What is the subversion address for portal project? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045182#4045182 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045182

[jboss-user] [JBoss Portal] - Re: JBoss WSRP consumer and file uploads

2007-05-12 Thread superfilin
Nevermind. I figureed it out. http://anonsvn.jboss.org/repos/portal View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045184#4045184 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045184

[jboss-user] [JBoss Seam] - Validation: @NotNull required=true

2007-05-12 Thread miloslav.vlach
I have problem with this: HibernateValidator is run when value is not empty - I have to use required=true - OK But, why I have to see the default UIInput validation message javax.faces.component.UIInput.REQUIRED, when I have my own @NotNull(message=messages['something.better']). Is there any

[jboss-user] [JBoss Seam] - Seam and Identity.logout

2007-05-12 Thread [EMAIL PROTECTED]
Refers: http://www.icefaces.org/JForum/posts/list/0/4463.page#19798 I am invalidating a login (and that kills of some session scoped objects) good... but I think new ones are not being re-created for the new session (possibly as one has not been created yet). Is it possible to force Seam, on

[jboss-user] [JBoss Seam] - Re: Validation: @NotNull required=true

2007-05-12 Thread [EMAIL PROTECTED]
I think thisis what you are after: | javax.faces.component.UIInput.CONVERSIONConversion error occurred | javax.faces.component.UIInput.REQUIRED required | javax.faces.component.UISelectOne.INVALID Value is not a a valid option | javax.faces.component.UISelectMany.INVALID Value is

[jboss-user] [JBoss Seam] - Re: Validation: @NotNull required=true

2007-05-12 Thread [EMAIL PROTECTED]
If this is helpful then you might want to propose to add it to the FAQ... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045188#4045188 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045188

[jboss-user] [JBoss Seam] - Re: Validation: @NotNull required=true

2007-05-12 Thread miloslav.vlach
Thanks for reply, but I don't know how to disable the displaying the UIInput default validation message. When the field isn't empty, the hibernate validation work good. If the input is empty the UIInput default message is show - and I would like to don't show this but show the @NotNull. M.

[jboss-user] [JBoss Portal] - Re: JBoss WSRP consumer and file uploads

2007-05-12 Thread [EMAIL PROTECTED]
The Wiki (http://jboss.com/wiki/Wiki.jsp?page=JBossPortal) is your friend! :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045190#4045190 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045190

[jboss-user] [JBoss Seam] - Re: Validation: @NotNull required=true

2007-05-12 Thread [EMAIL PROTECTED]
Currently there is no way to utilize the message of @NotNull, you need to change the JSF validator message for required=true globally. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045193#4045193 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Validation: @NotNull required=true

2007-05-12 Thread monkeyden
There is no way to do it globally but you can use a phase listener: import java.util.Iterator; | | import javax.faces.application.FacesMessage; | import javax.faces.component.UIComponent; | import javax.faces.component.UIViewRoot; | import javax.faces.context.FacesContext; | import

[jboss-user] [JBoss Seam] - Re: Validation: @NotNull required=true

2007-05-12 Thread monkeyden
On second thought, this is of no use to you within the context of hibernate validation. This is strictly JSF. I'll be quiet now. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045195#4045195 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Getting Id of Presisted object.

2007-05-12 Thread [EMAIL PROTECTED]
This is really turning into a Hibernate question. Your entity should have an identifier after you call persist(o), no matter where as long as you have a sequence-style generator. I recommend enabling the Hibernate DEBUG log and posting on the Hibernate forum. View the original post :

[jboss-user] [JBoss Seam] - Re: Getting Id of Presisted object.

2007-05-12 Thread [EMAIL PROTECTED]
Well, if Hibernate says the sequence isn't there it probably isn't there or can't be seen by the user Hibernate connects with. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045198#4045198 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Getting Id of Presisted object.

2007-05-12 Thread monkeyden
anonymous wrote : Your entity should have an identifier after you call persist(o), no matter where as long as you have a sequence-style generator. So Hibernate actually calls the mutator after persisting (or implicitly refreshes)? View the original post :

[jboss-user] [JBoss Seam] - not redirecting to security_error.xhtml

2007-05-12 Thread efabiano
HI, I´ve started using seam security in advanced mode. In fact I´m using dynamic role as you can see at http://www.jboss.com/index.html?module=bbop=viewtopicp=4045165#4045165 I´ve configured my pages.xml with this exceptions exception class=org.jboss.seam.security.NotLoggedInException |

[jboss-user] [JBoss Seam] - Re: Getting Id of Presisted object.

2007-05-12 Thread monkeyden
Your sequence looks correct. I don't have the code here but I think I'm doing this: em.persist(entity); | em.flush(); | em.refresh(entity); to get the sequence. I don't think EntityManager uses the primary key to find the persistent state. View the original post :

[jboss-user] [Remoting] - Re: what happended to the JBoss Remoting 2.2 GA download lin

2007-05-12 Thread [EMAIL PROTECTED]
It is missing from the labs site. Click on jboss.org link you see in the top banner - then navigate to the Jboss remoting downloads and all u see r the ones up to 2.0.GA. nothing later: http://labs.jboss.com/jbossremoting/downloads BTW: I see that JBossAS 4.2.CR2 has Remoting 2.0.GA in it but

[jboss-user] [Clustering/JBoss] - Re: Doubt regarding clinet side interceptor.....

2007-05-12 Thread cheenu2
I think you have a conceptual misunderstanding here. - Clustering is done for fault tolerance (aka high availability) of an application. - Load balancing is to distribute load, and hence for scalability. Clustering any object (incl. HTTPSession, Stateful EJB ...) comes at a price, because the

[jboss-user] [JBoss Seam] - Re: Raising an event in Seam without violating EJB's concurr

2007-05-12 Thread stu2
Coud you post some more details. I'm using events raised by SFSB just fine. Please post the relevant snippets where your event is raised, the receiver, and where the event handling is configured in components.xml. Also your stacktrace doesn't show any application code, so more of that would

[jboss-user] [JBoss Seam] - Re: s:fileUpload throw

2007-05-12 Thread stu2
Isn't it just that the uploaded file is too big for the column? You might want to put some debug in the byte [] setter to check the size, and also specify the column size. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045204#4045204 Reply to the post :

[jboss-user] [Remoting] - what does this mean?

2007-05-12 Thread kuvera
Could somebody please explain to me this exception I get on the client side? | org.jboss.remoting.CannotConnectException: Can not get connection to server. Problem establishing socket connection for locator - InvokerLocator [socket://127.0.0.1:3873/] | at

[jboss-user] [JBoss Seam] - Load Templates from Database?

2007-05-12 Thread patrickr
Hi all, Is there a way to load templates from a database? I don't have the possibility to write templates to a file because this only works with exploded archives. Still, I want to have some templating mechanism at runtime available. I know that this question depends on the view technology.

[jboss-user] [Remoting] - Re: what happended to the JBoss Remoting 2.2 GA download lin

2007-05-12 Thread [EMAIL PROTECTED]
Hi John, JBossMessaging depends on Remoting 2.2.0, and JBoss ESB depends on JBM. They argued in favor of JBossAS 4.2 adopting Remoting 2.2.0 to avoid scoping in JBM, and they carried the day. The original release of Remoting 2.2.0 was not wire compatible with 2.0.0, and the point of

[jboss-user] [Remoting] - Re: JBoss Client/Server Connections Fail On Certain Networks

2007-05-12 Thread [EMAIL PROTECTED]
Hi, This phenomenon isn't familiar to me, personally. You might also try a forum like http://www.jboss.com/index.html?module=bbop=viewforumf=61. Of course, we'd like to know more about the problem. When you get additional information, please post it. Thanks, Ron View the original post :

[jboss-user] [JBoss Seam] - @RequestParameter vs. page.xml and STATE_SAVING_METHOD=serve

2007-05-12 Thread gernotr
hi! due to very big page-sizes when using STATE_SAVING_METHOD=client i switched to STATE_SAVING_METHOD=server and since that the params in page.xml are not working anymore (always NULL). using @RequestParameter seems o.k. i'm using jboss 4.05, myfaces 1.1.5 and seam 1.2 is this a known prob

[jboss-user] [JBoss Messaging] - Re: Can't run example (JBoss Messaging 2.1)

2007-05-12 Thread tamaluna
Ok, I posted my issue on the other forum (http://www.jboss.com/index.html?module=bbop=viewtopict=108476). It has some new information that I didn't have yet when I posted to this forum, so you might have a look and see if you happen to recognize the issue right off the bat. I'm sure all that

[jboss-user] [Messaging, JMS JBossMQ] - 2 Queue receivers can receive same number message from an De

2007-05-12 Thread geniusfox
I use the JbossMQ in Jboss4.02, i start 2 Queue receivers at same server, and listen on same destination on same Jboss server. But i found, one listener would acknoledge most of the message, the other is lazy. For example, i send 100 messages to this Queue. the 1st will get more then 80

[jboss-user] [JBoss Seam] - Re: SaaS and Seam

2007-05-12 Thread talentsoftech
You can have a look at Microsoft reference implementation for SaaS sample application LitewareHR at http://msdn2.microsoft.com/en-us/architecture/bb229292.aspx In order to improve scalability ,we are redesign the application to run on MySQL ,JBoss 4.0.5 (EJB3 with clusterings). My question

[jboss-user] [JBoss Seam] - Re: Getting Id of Presisted object.

2007-05-12 Thread [EMAIL PROTECTED]
Hibernate sets the identifier property, through field or setter access. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045216#4045216 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045216

[jboss-user] [JBoss Seam] - Re: Getting Id of Presisted object.

2007-05-12 Thread [EMAIL PROTECTED]
(You don't need an INSERT to get the next identifier value from a sequence.) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045217#4045217 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045217

[jboss-user] [JBoss Seam] - Re: @RequestParameter vs. page.xml and STATE_SAVING_METHOD=s

2007-05-12 Thread [EMAIL PROTECTED]
Do not use server-side state saving with MyFaces, it's buggy. This has been reported before (search the forum) and your problems with page parameters will go away if you switch to client-side state saving or the JSF reference implementation. View the original post :

[jboss-user] [JBoss Seam] - Re: Load Templates from Database?

2007-05-12 Thread [EMAIL PROTECTED]
Seam has no built-in mechanism for that and it's a little tricky to get Facelets dynamic. Have a look at the stuff in Seam CVS in examples/wiki/ and how the plugins render their plugin.xhtml dynamically with a Facelets handler. That should get you half way there. View the original post :

[jboss-user] [JBoss Seam] - Re: not redirecting to security_error.xhtml

2007-05-12 Thread [EMAIL PROTECTED]
anonymous wrote : | SERV ERROR RENDERING VIEW COR.XTML | ?! Is this something you typed in or is it really in the log? My guess is that you need to post the real full log excerpt. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045220#4045220 Reply to

[jboss-user] [JBoss Seam] - Problem pasting text from Word using s:formattedText

2007-05-12 Thread dd_la_frime
Hi, after typing text in Word, I copied and pasted it in my form. Submitted it and it works. But whenever I want to display the text stored in the database I've got this error : java.lang.RuntimeException: line 1:61: unexpected char: 0x2019 | at

[jboss-user] [JBoss Portal] - Re: JBoss WSRP consumer and file uploads

2007-05-12 Thread superfilin
Great job, Chris :)! It seems to work now! Although it took me some time to compile the portal out of the source :) Best regards, Andrey View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045222#4045222 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem pasting text from Word using s:formattedText

2007-05-12 Thread [EMAIL PROTECTED]
This is the character: http://www.fileformat.info/info/unicode/char/2019/index.htm These are the current Unicode ranges supported by the parser: | WORD: ('a'..'z'|'A'..'Z'|'0'..'9'| | '\u00c0'..'\u00d6' | | '\u00d8'..'\u00f6' | | '\u00f8'..'\u00ff' | |

[jboss-user] [JBoss Seam] - Seam Jaas Problem

2007-05-12 Thread koriel
I want to use seam jaas module so I followed the instructions from docs. I use seam 1.1.6 and here is my config files... components.xml | components xmlns=http://jboss.com/products/seam/components; | xmlns:core=http://jboss.com/products/seam/core; |

[jboss-user] [JBoss Portal] - Re: JBoss WSRP consumer and file uploads

2007-05-12 Thread [EMAIL PROTECTED]
Thanks for the report and sorry for the trouble! Let us know if you run into any more issues. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045226#4045226 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045226

[jboss-user] [JBoss Seam] - Re: Load Templates from Database?

2007-05-12 Thread stu2
Pete wrote up a nice blog post on that at http://pmuir.bleepbleep.org.uk/2007/04/building-plugin-system-in-facelets.html View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045227#4045227 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem pasting text from Word using s:formattedText

2007-05-12 Thread dd_la_frime
Ok thank you very much. So the problem is with Office Word, the apostrophe is not well encoded (well in french for sure). Maybe if you can add this character it will be great for french people. Cheers. [EMAIL PROTECTED] wrote : This is the character: | |

[jboss-user] [JBoss jBPM] - cannot read process variable from other thread

2007-05-12 Thread clandestino_bgd
Hi JBPM people, I have the following Business requirement. Process looks like this: start-T1-S2-W3-T4-S5-J6-end T1 is a task node Here should be specified how many paths of execution (document translations) will be performed concurrently. S2 is a state which has some ForEachForkAction handler

[jboss-user] [Clustering/JBoss] - Re: Doubt regarding clinet side interceptor.....

2007-05-12 Thread [EMAIL PROTECTED]
If your EJB tier consists of SLSBs that are only invoked from the web tier, don't make them clustered, and don't use HA-JNDI to look them up from the web tier. JBoss is going to detect that the EJB is available in the same VM as the web tier and is going to send any call to the EJB in the same

[jboss-user] [JBoss AOP] - Re: Intercepting EJB3 EntityBeans

2007-05-12 Thread waynebaylor
Upon further testing it appears that specfying the EntityBean results in the class being properly woven. I used typedef name=logclasses expr=class(test.entity.GroupEntity)/ and the pointcut was properly bound. When classes are specified with wildcards(*) are they woven differently? View the

[jboss-user] [JBossWS] - Re: JBoss 4.0.5--JAX-RPC has Issues?

2007-05-12 Thread lafr
The problem has been solved with JBossWS 1.2.1. See http://jbws.dyndns.org/mediawiki/index.php/Install_JBossWS how to install JBossWS or checkout JBoss-4.0.5.SP1. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045232#4045232 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: ConnectPool problem

2007-05-12 Thread jalla
I have tried to invoke flush() on that MBean but the connections that had been created did not get closed (as I see it in TOAD). The MBean view got update and the MaxConnectionsInUseCount was updated to 0. Any tips on how to find any possible connection/statement leak? View the original post

[jboss-user] [JBoss Seam] - Re: Seam and Identity.logout

2007-05-12 Thread [EMAIL PROTECTED]
I use an entry like this in pages.xml: page view-id=* | navigation from-action=#{identity.logout} | redirect view-id=/home.xhtml/ | /navigation | /page View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045234#4045234

[jboss-user] [JBoss Seam] - Re: Unit Testing EL in EJB-QL/HQL

2007-05-12 Thread zzzz8
mrobinson28 wrote : | So my questions: | | | * From the exception it looks like I may have to provide more than I am currently via something in org.jboss.seam.mock.* e.g currentUser (In the application currentUser is a session scoped component that is instantiated when a user logs

[jboss-user] [JBoss Seam] - Re: Seam and Identity.logout

2007-05-12 Thread [EMAIL PROTECTED]
Thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045237#4045237 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045237 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [Installation, Configuration Deployment] - Re: Problem with Deploying

2007-05-12 Thread jaikiran
anonymous wrote : But i would like to know why the Eclipse SDK 3.2 do not put the jar's in the EAR Sorry, i dont have a clue. I dont have JBoss integrated with Eclipse. Maybe if you post your question at http://www.jboss.com/index.html?module=bbop=viewforumf=201, it might get answered View

[jboss-user] [JBoss Seam] - Re: Load Templates from Database?

2007-05-12 Thread patrickr
Thanks for your feedback! I didn?t realize it was that complex, but again you smart Seam guys figured a way. ;-) And regarding Pete Muir?s blog (that I've bookmarked now): I?ll vote for ?Serving up dynamic resources RESTfully? Regards Patrick View the original post :

[jboss-user] [JBoss Seam] - Re: Load Templates from Database?

2007-05-12 Thread patrickr
BTW: The wiki looks great! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045239#4045239 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045239 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: A Composite pattern.

2007-05-12 Thread axyd80
It seems that image not posted correctly, this is an url http://pics.livejournal.com/axyd80/pic/c9k0. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045244#4045244 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045244

[jboss-user] [JBoss Seam] - Re: A Composite pattern.

2007-05-12 Thread [EMAIL PROTECTED]
The Composite Pattern, though trivial at first, is quite challenging when it comes to object/relational mapping and data management. Your best bet is to try to implement that part first, without much consideration for the UI. The UI will then be easy to put on top. View the original post :

[jboss-user] [JBoss Seam] - Access EJB from Web page

2007-05-12 Thread amontobin
Hi, I'm starting to learn seam and i've some troubles. I've got a project with one web app and one ejb jar (like seam booking) I can deploy my ear on the server but when i want to access login page i've this error : 01:44:41,352 INFO [StartupServletContextListener] Serialization provider :

[jboss-user] [JBoss Portal] - Re: Regarding customize portal creation

2007-05-12 Thread PeterJ
Are you saying that you want to change the logo? That is, the image that says JBoss Portal in the upper left corner? The logo is typically called logo.gif and is located in the jboss-portal.sar/portal-core.war/themes/xxx/images directory, where xxx is the name of the theme you are using. View

[jboss-user] [Management, JMX/JBoss] - Re: Managing JBoss programmatically?

2007-05-12 Thread BogusException
PeterJ, Thanks for writing. I understand a lot more about the app server as a result. A more definitive list can be found in the source at system/src/main/org/jboss/deployment/DeploymentSorter.java, look at DEFAULT_SUFFIX_ORDER. Interesting. It is deprecated, but points to

[jboss-user] [JBoss jBPM] - Re: cannot read process variable from other thread

2007-05-12 Thread clandestino_bgd
Well, let me answer my own question, as usual:) This link helped a lot: http://pveentjer.wordpress.com/2007/02/19/sharing-hibernate-entities-between-threads/ So, in problematic Message consumer, which has session bound to its own thread with different state than in DB, 1 magic line should be

[jboss-user] [EJB 3.0] - Re: EJB3 and jndi error.

2007-05-12 Thread xubin
Thank Oskar. I have look the jmx console/jndi , no found anything about my slsb. I think maybe the slsb no been bound to the jndi at all. But I don't know what's mistake. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045251#4045251 Reply to the post :

[jboss-user] [Installation, Configuration Deployment] - Failed to start JbossAs5

2007-05-12 Thread phoenix.zhp
hi, I have download the jboss-5.0.0.Beta2 and unzip it to D:\server\jboss-5.0.0.Beta2. But when I want start it it failed. can someone give me help? Thanks in advance. this is the log anonymous wrote : | 11:36:24,937 ERROR [AbstractKernelController] Error installing to Instantiated:

[jboss-user] [JBoss Seam] - Re: jboss-beans.xml vs *-ds.xml

2007-05-12 Thread dan.j.allen
Thanks for the reply. So my understanding is that the embedded EJB container will not look for or process the -ds.xml files in any way. Those files are strictly for use by the JBoss application server. Please correct me if I am wrong, otherwise I don't expect a follow-up. View the original

[jboss-user] [JBoss jBPM] - Re: jBPM project, Eclipse, JBPM Library

2007-05-12 Thread vipul.gupta
Hi Simon/Others, Can you help me to setup a project of using jbpm without jboss. I am new to jbpm and i am totally confused as to how to use it without jboss, say in a web application of mine. I will be greatful for any help in this regards ~Vipul View the original post :

[jboss-user] [Clustering/JBoss] - JBoss AS 5

2007-05-12 Thread dupra
I'm new to clustering and starting looking at JBoss 5.0 Beta 2. I have my two nodes set up and they see each other. However, I don't see a farm directory. Is there a new procedure for deploying a WAR in 5.0? Pointers would be appreciated. View the original post :

[jboss-user] [JBoss Seam] - JbossAS crash on Eclipse using JbossIDE (blue screen)

2007-05-12 Thread cormet
Hi ALL, I am new to Jboss framework. After reading the SEAM tutorial, I would like to try to use SEAM on my project with Jboss Eclipse IDE. However, I am having big problem when i try to start JBossAS from eclipse inside. The error I got just a blue screen and then restart my computer. Here

[jboss-user] [JBoss Seam] - Re: Unit Testing EL in EJB-QL/HQL

2007-05-12 Thread matt.drees
Yeah, I mock the log object in my unit tests to get around the fact that there is no application context active. It looks like this, and seems to work ok: | package org.uscm.crs.misc; | | import org.jboss.seam.log.Log; | import org.jboss.seam.log.Logging; | | public class