[jboss-user] [JBoss Seam] - Re: flushMode= MANUAL, when does commit happen? And other qu

2007-07-14 Thread matt.drees
ellenzhao wrote : | The concrete error messages I got were always something like no transaction available Well, you could always manually get a transaction with Transaction.instance() and begin/commit. But probably the right way is marking the method as needing a transaction. If it's a

[jboss-user] [JNDI/Naming/Network] - Re: JNDI lookup problem from remote client present in Extern

2007-07-14 Thread vedgunjan
Hi kanth_seenu, I already tried this, but it didnt work. Am missing any more setting or jars needed for remote lookup i,e from from external client. Thanks for any suggestion and help. Regards. Ved View the original post :

[jboss-user] [EJB 3.0] - Re: TimerService Security Permissions Authorization

2007-07-14 Thread Agan
Hi James, Today I ran into exactly the same problem and I wonder if you solved the issue in the meantime. Thanks in advance, Andreas View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064197#4064197 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Could not create Component : class is abstract!

2007-07-14 Thread szaccaria
Hallo Norman, first all thanks thousand for your reply, I had lost the hope!!! The component that failing is doing the same thing that do the the entity abstract class User in the dvdstore example of seam 2.0B1. Could perhaps being a problem in to the hibernate configuration? Thanks again!

[jboss-user] [JBoss Seam] - Re: Seam 2.0.0 B1 validateAll

2007-07-14 Thread FabBoco
Pete, thank you so much. Please, take some free time during the weekend !! Fabrizio View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064199#4064199 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064199

[jboss-user] [JBoss Seam] - Re: Seam form submission errors

2007-07-14 Thread matt.drees
It'd probably be helpful to post a stacktrace View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064200#4064200 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064200 ___ jboss-user

[jboss-user] [JCA/JBoss] - Connection Pooling , Preferred pool size..?

2007-07-14 Thread jsbhangra
Hi All... I have built a web-application , which connects to the 10g Express edition at the backend.. I have set the maximum connection pool size to 1500 connections .. But while load testing according to the client requirements , 18000 requests per minute. The connection pool chokes up..

[jboss-user] [JNDI/Naming/Network] - Re: JNDI lookup problem from remote client present in Extern

2007-07-14 Thread vedgunjan
Hi, I'm posting my run.bat for your reference.Please let me know whether what i tried was correct or not. | @echo off | rem - | rem JBoss Bootstrap Script for Win32 | rem

[jboss-user] [JBoss Seam] - Cant able to use stateful bean in project

2007-07-14 Thread kaviarasu
Hi i cant able to use stateful bean in any of my project i had pated the coding i had used .it says the component cannot registered ,can any one tell suggestion @Stateful | @Scope(SESSION) | @Name(usermessage2) | public class UserComments implements Serializable, UserDisplay1 { |

[jboss-user] [JBoss Seam] - Re: examples didn't work

2007-07-14 Thread guiltyxsin
Really?? Hmm...ok here is what happens when I type 'ant deploy' within the booking example directory [img]http://farm2.static.flickr.com/1311/806595456_82608f8623.jpg?v=0[/img] Is there any problem there? because it says Build successful so I thought there's no problem on deployment part.

[jboss-user] [JNDI/Naming/Network] - JBoss 4.05 and Dynamic IP

2007-07-14 Thread sirynx
My problem is the following. I have installed JBoss in a computer outside of my network and I wanted to connect from my computer. I've done the next. Firstly, I opened the ports 1098,1099 and in the NAT of the router in the server's network. By doing that the server didn't work. Then, I

[jboss-user] [JBoss Seam] - Re: Could not create Component : class is abstract!

2007-07-14 Thread matt.drees
The User class in the dvdstore example is not a Seam component - it doesn't have a @Name. I don't think you can't make an abstract class be a Seam component. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064206#4064206 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Could not create Component : class is abstract!

2007-07-14 Thread szaccaria
You are right! I have spend two days of job in order to understand it... I'm very newbie in Seam! Thanks thousand View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064211#4064211 Reply to the post :

[jboss-user] [JNDI/Naming/Network] - Re: JNDI Connection Problem! jboss.bind.address always 127.0

2007-07-14 Thread cjc
Hi, @ vedgunjan: I'm think your problem is something with FW too. If i install a fresh donwloaded JBoss it works well on Windows Server 2003. I havnt installed a Activ directory or somthing like that (dev system!) maybe write your own programm and bind the requred Port so u can test if it is

[jboss-user] [JBoss Seam] - Re: Cant able to use stateful bean in project

2007-07-14 Thread ellenzhao
could you please paste some stack trace? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064214#4064214 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064214 ___ jboss-user

[jboss-user] [JBossWS] - Re: Unsupported content type: application/x-www-form-urlenco

2007-07-14 Thread florian79
yes it sounds like a problem with the content-type. But I set the HTTP- HEADER with 'Content-Type':'text/xml' And I tried the following encode variations: plain: ?xml version=1.0 encoding=UTF-8?soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;soap:BodygetHalloWorld

[jboss-user] [JBoss Seam] - Re: flushMode= MANUAL, when does commit happen? And other qu

2007-07-14 Thread ellenzhao
Thanks for Matt's tip, I tried this: | @Destroy | @Remove | public void destroy() { | UserTransaction tx = Transaction.instance(); | try { | tx.begin(); | entityManager.remove(entityManager.merge(this.recipe)); | try { | tx.commit(); |

[jboss-user] [JBoss Seam] - Re: Cant able to use stateful bean in project

2007-07-14 Thread kaviarasu
Hi i missed the annotations @Destroy @Remove not while adding the lines @DataModelSelection @Out(required=false) private TblComments1 message; im getting the error like

[jboss-user] [JBoss Seam] - Re: Problem with tr:inputFile in Seam 1.2.1GA and Trinidad

2007-07-14 Thread [EMAIL PROTECTED]
No its installed by the Seam Filter by default. You'll need to disable it (no easy way to do this). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064218#4064218 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064218

[jboss-user] [JBoss Seam] - Re: Problem removing

2007-07-14 Thread [EMAIL PROTECTED]
Looks like you've got some filter defined in your project called sddsddsdsdsds (that extends AbstractFilter) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064219#4064219 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Expression language enhancements do not work

2007-07-14 Thread [EMAIL PROTECTED]
You can't use extended EL in value bindings in Seam 1.2.1.GA (you can in Seam2) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064220#4064220 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064220

[jboss-user] [JBoss Seam] - Re: examples didn't work

2007-07-14 Thread [EMAIL PROTECTED]
Post the server log from where it Says Welcome to Seam View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064221#4064221 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064221 ___

[jboss-user] [JBoss Seam] - Re: JBoss AS Seam upgrade - Validation message showing up

2007-07-14 Thread [EMAIL PROTECTED]
This is fixed in Seam2. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064222#4064222 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064222 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: SeamGen for NetBeans Enterprise Application and GlassFis

2007-07-14 Thread [EMAIL PROTECTED]
Have you looked at the glassfish/jee5 example? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064223#4064223 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064223 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Combination of jPDL and RESTful pages

2007-07-14 Thread [EMAIL PROTECTED]
You want to start the pageflow from a link? Take a look at s:link View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064224#4064224 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064224

[jboss-user] [JBossWS] - Re: Unsupported content type: application/x-www-form-urlenco

2007-07-14 Thread florian79
there was a problem with the proxy... thank you for your help! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064226#4064226 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064226

[jboss-user] [JCA/JBoss] - Re: Connection Pooling , Preferred pool size..?

2007-07-14 Thread vickyk
jsbhangra wrote : | Please tell what should i set the value of the preferred maximum pool size ? | This cannot be told instantly without looking into your application behavior .You need to perform the stress tests under heavy loads and see what connection pool count helps you . You

[jboss-user] [JBoss Seam] - possible to specify action in pageflow transition?

2007-07-14 Thread mocha
Is it possible to specify a bean action in a pageflow transition (in the same way that this can be done using from-action in a pages.xml navigation case)? I have tried it as follows but it doesn't seem to work... | page name=history view-id=/history.xhtml | redirect/ |

[jboss-user] [Messaging, JMS JBossMQ] - Re: Using external messaging Provider with JBOSS server

2007-07-14 Thread grover_pawan
Just required to integrate JBOSS with SonicMQ, but don't have JCA Adapter. Could you please let me know what would be the alternative approach you are talking about? Is it something related to mbean org.jboss.naming.ExternalContext Please provide any link or example for same. View the original

[jboss-user] [Messaging, JMS JBossMQ] - ConnectionFactory not bound Exception... - Noobie

2007-07-14 Thread galrub
Hello ppl, I'm having a problem with lookup of the ConnectionFactory. Getting a not bound exception. it seems a common problem because I see it on google but can't find a solution! when deploying an EJB I got no problem looking it up on the standalone. (EJB3)

[jboss-user] [JBoss Seam] - Re: possible to specify action in pageflow transition?

2007-07-14 Thread ellenzhao
yes. Do it like this: | page name=history view-id=/history.xhtml | redirect/ | transition name=youNameIt to=historyitem | action expression=#{historyController.selectHistoryItem(item)}/ | /transition |transition name=youNameIt2 to=

[jboss-user] [JBoss Seam] - Re: possible to specify action in pageflow transition?

2007-07-14 Thread mocha
thanks for the suggestion. Unfortunately I get the following error when trying this: Caused by org.jbpm.JbpmException with message: couldn't evaluate expression '#{historyController.selectHistoryItem(item)}' ... Caused by org.jbpm.jpdl.el.ELException with message: Encountered (, expected one

[jboss-user] [JBoss Seam] - Required Session Bean and server restart / redeploy

2007-07-14 Thread damianharvey
I have a UserProfile Bean that I populate in the Authenticator method when a User successfully logs in. I then use this Bean throughout my app for any User related data. My Authenticator class outjects the UserProfile like this: @Out(required=true, scope=SESSION) | UserProfile userProfile; My

[jboss-user] [JBoss Seam] - selectDate not popping up on click in row of table

2007-07-14 Thread szaccaria
I try the cvs seam 2.0B and now selectDate non pop up when is in the row like: | rich:tab label=Righe | rich:datascroller for=righeList / | rich:spacer height=5 / | | rich:dataTable | id=righeList | rows=10 |

[jboss-user] [JBoss Seam] - Re: possible to specify action in pageflow transition?

2007-07-14 Thread ellenzhao
the last time I wrote page flow definition in jPDL was last year December, so I do not know whether this Seam Enhanced EL is also working in jPDLFor your scenario there is a workaround. You can make your item your action bean managed (write it as a member like private Item historyItem; and

[jboss-user] [JBoss Seam] - Re: possible to specify action in pageflow transition?

2007-07-14 Thread ellenzhao
sorry, forgot to use the code tag in my last post...I meant: | page name=history view-id=/history.xhtml | redirect/ | transition name=youNameIt to=historyitem | action expression=#{historyController.selectHistoryItem}/ | /transition |

[jboss-user] [Remoting] - Re: sending Streams using POJOS

2007-07-14 Thread caultonpos
Tom, this feature of streaming a file from the server to the client is very important for my application. I have a Swing fat client with many use cases whereby I need to exchange images or file attachments with the server over RMI. To upload files your implementation was elegant and testing GB

[jboss-user] [JBoss Seam] - Re: Seam form submission errors

2007-07-14 Thread jbrosan
Hi Matt, Sorry about not posting the stack trace earlier...shame on me. Here it is. | Exception during request processing: | Caused by javax.servlet.ServletException with message: #{usermodifyaction.addUser}: javax.ejb.EJBTransactionRolledbackException: Could not get property value |

[jboss-user] [JBoss Seam] - Re: flushMode= MANUAL, when does commit happen? And other qu

2007-07-14 Thread ellenzhao
Feature request filed: http://jira.jboss.com/jira/browse/JBSEAM-1664 I guess it is not uncommon for developers to mentally map a long-running conversation to an atomic DB transaction. If you feel this feature is also handy to you, please vote it on JIRA, thanks! View the original post :

[jboss-user] [JBoss Seam] - Re: possible to specify action in pageflow transition?

2007-07-14 Thread [EMAIL PROTECTED]
jboss-el isn't currently working in jbpm, but should be for Seam 2.0.0.CR1 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064242#4064242 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064242

[jboss-user] [JBoss Seam] - Re: seam 1.2.1GA - belowField / description facet

2007-07-14 Thread tynor
Following up to my only question, I think Pete was trying to tell us that belowField and description facets simply don't work any more. I see they are used in the ui example (via ui:define name=description), but when I deploy that example, those extra annotations (Enter your name as it appears

[jboss-user] [JBoss Seam] - Re: SeamGen for NetBeans Enterprise Application and GlassFis

2007-07-14 Thread samdoyle
Thanks I wasn't aware of it. So I'm still encountering the same issue though it has to be something simple with the project layout perhaps? Basically trying to convert the ant project as seen by NetBeans into a NetBeans Enterprise Application which constructs two additional projects within.

[jboss-user] [JBoss Seam] - Seam-Gen few questions

2007-07-14 Thread mrohad
1) when seam-gen genrete screens(create/update) can I somehow force it to generete drop down lists for some codes table that connected to the genereted table? 2)how can I change the name of the columns in the screen? can I make seam-gen use the coulmn comment or anything like that? thanks.

[jboss-user] [JBoss Seam] - Re: Problem with tr:inputFile in Seam 1.2.1GA and Trinidad

2007-07-14 Thread fquimbay
Hi, Pete ... This in my web.xml: anonymous wrote : | ?xml version=1.0 encoding=UTF-8? | web-app version=2.4 xmlns=http://java.sun.com/xml/ns/j2ee; | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee

[jboss-user] [JBoss Seam] - Re: Dynamic view for s:button control?

2007-07-14 Thread nathandennis
im sure it is something simple... but im having the same trouble with the same revision. anyone figure this out? i really dont have haft a day to waste looking for it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064248#4064248 Reply to the post :

[jboss-user] [JBoss Seam] - Re: SeamGen for NetBeans Enterprise Application and GlassFis

2007-07-14 Thread [EMAIL PROTECTED]
Compare the built ear from the example and the ear built using netbeans to see where the differences are. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064249#4064249 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064249

[jboss-user] [JBoss Seam] - Re: seam 1.2.1GA - belowField / description facet

2007-07-14 Thread [EMAIL PROTECTED]
Sorry, I lost the net yesterday. We had those facets in CVS, but removed in favour of the enhanced s:decorate and forgot to update the docs. If there was a bug in ui example - sorry :( Anyway, the booking example has it correct. View the original post :

[jboss-user] [JBoss Seam] - Re: seam 1.2.1GA - belowField / description facet

2007-07-14 Thread tynor
OK. I hate to be a pest, but I've looked through all uses of s:decorate in the 1.2.1-GA booking demo, and don't see any that set anything other than ui:define name=label and input widgets. Nothing that looks analogous to a belowField comment. Can you be more specific? Thanks! View the

[jboss-user] [JBoss Seam] - Re: seam 1.2.1GA - belowField / description facet

2007-07-14 Thread [EMAIL PROTECTED]
The ui example in Seam2 does this with divs and css. Basically, the idea of s:decorate is to allow you to design your own template for this s:decorate template=decorateField.xhtml |ui:define name=labelAge/ui:define |ui:define name=descriptionThe age list is an array of

[jboss-user] [JBoss Seam] - Re: seam 1.2.1GA - belowField / description facet

2007-07-14 Thread [EMAIL PROTECTED]
Btw, you are not being a pest at all, you are asking clear questions and providing the necessary information to allow people to ask answer your question in each post which is lovely :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064255#4064255 Reply to the

[jboss-user] [JBoss Seam] - Re: seam 1.2.1GA - belowField / description facet

2007-07-14 Thread tynor
Thanks Pete. The underlying confusion (for me at least) is that the 1.2.1 seam-gen generated layout/edit.xhtml used by the forms it generated does not in fact have ui:insert for these belowField/definition annotations as in your example above. I'll add some and go on my merry way. Cheers!

[jboss-user] [JBoss Seam] - getting rid of the .seam extension

2007-07-14 Thread alexg79
Is it possible to configure web.xml so that I could use the .xhtml extension directly instead of .seam? The Seam Blog example uses /seam/* which I like even less. At the moment, if I use the .xhtml extension directly, I just get the raw contents of the file. Another related problem is getting

[jboss-user] [JBoss Seam] - Re: Problem removing

2007-07-14 Thread supernovasoftware.com
Thx. Pete. I had the following on a class. I did not realize Seam was registering it for me as it was not listed in my web.xml @Name(sddsddsdsdsds) | @Interceptors(SeamInterceptor.class) | public class HttpServletRequestTimerFilter implements Filter View the original post :

[jboss-user] [JBoss Seam] - Re: getting rid of the .seam extension

2007-07-14 Thread supernovasoftware.com
See http://www.jboss.com/index.html?module=bbop=viewtopict=113401 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064260#4064260 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064260

[jboss-user] [JBoss Seam] - Re: getting rid of the .seam extension

2007-07-14 Thread supernovasoftware.com
?xml version=1.0 encoding=UTF-8? | web-app version=2.5 |xmlns=http://java.sun.com/xml/ns/javaee; |xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; |xsi:schemaLocation=http://java.sun.com/xml/ns/javaee

[jboss-user] [JBoss Seam] - Re: getting rid of the .seam extension

2007-07-14 Thread alexg79
My problem has nothing to do with MIME types. Please read the problem description more carefully. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064263#4064263 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064263

[jboss-user] [JBoss Seam] - Re: getting rid of the .seam extension

2007-07-14 Thread alexg79
Replied too quickly it seems. Changing the URL pattern to .xhtml gets rid of the .seam extension, but doesn't solve the rss problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064264#4064264 Reply to the post :

[jboss-user] [JBoss Seam] - Re: @Destroy annotated method on Application Scoped componen

2007-07-14 Thread [EMAIL PROTECTED]
Mark, sorry, for not replying sooner. What you are doing should work, that error (normally) means that Seam hasn't set up it's lifecycle properly. Can file a JIRA issue so that we don't loose this one. View the original post :

[jboss-user] [JBoss Seam] - Re: possible to specify action in pageflow transition?

2007-07-14 Thread mocha
Thanks for the help with this. I got it working using DataModelSelection and the pageflow suggested by ellenzhao. Looking forward to Seam 2.0.0.CR1 with jboss-el support from jbpm - will be a more elegant solution for my purposes. View the original post :

[jboss-user] [JBoss Seam] - Re: Seam 2.0.0 B1 validateAll

2007-07-14 Thread [EMAIL PROTECTED]
Ok, the seamdiscs example is back in CVS (examples/seamdiscs). It would be great if you would test it! I was able to replicate your problem http://jira.jboss.com/jira/browse/JBSEAM-1667 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064269#4064269 Reply to

[jboss-user] [JBoss Seam] - Re: Seam 2.0.0.BETA1, transaction:ejb-transaction and SeamTe

2007-07-14 Thread [EMAIL PROTECTED]
Have you got this working? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064270#4064270 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064270 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Bean level validator

2007-07-14 Thread [EMAIL PROTECTED]
It should work AFAICS. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064271#4064271 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064271 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: s:graphicImage and images being shared by users!

2007-07-14 Thread [EMAIL PROTECTED]
Sorry about the late reply. I don't know why this is happening. I hope to include a version of s:graphicImage in in Seam 2.0.0.GA that doesn't rely on session maps to store this information - that should help you :) View the original post :

[jboss-user] [JBoss Seam] - Re: SEAM Tesing

2007-07-14 Thread [EMAIL PROTECTED]
Sorry for the late reply. You should mock up the JMS service probably. You will need to wire this into your container. Ask in the EJB3 forum about this. Report back if you get this working, as it will be interesting to others I think :) View the original post :

[jboss-user] [JBoss Seam] - Re: A suggested SeamTest improvement

2007-07-14 Thread [EMAIL PROTECTED]
Add a FR to JIRA and see what Gavin says :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064274#4064274 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064274 ___ jboss-user

[jboss-user] [JBoss Portal] - Re: New portlet instance not available in content definition

2007-07-14 Thread jdestef
Hi, Using JBoss App Server 4.2 with portal 2.6. In the Management console I go to Portlet Definitions, select the CMSPortlet and create a new instance. The instance shows up in the Portlet Instance tab. Under Portal Objects I create a new page in the default portal. I then select page layout

[jboss-user] [JBoss Seam] - Re: getting rid of the .seam extension

2007-07-14 Thread supernovasoftware.com
You could use URL rewrite. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064276#4064276 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064276 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Seam 2 beta and JPA

2007-07-14 Thread jasondlee
I'm not 100% sure what you mean by that, but, taking the simplest explanation :P I can connect to the DB (pgsql) using a variety of tools, and I can ping the connection pool from the GlassFish admin tool. I'm specifying the dialect in my persistence.xml, and connectivity with the DBMS seems to

[jboss-user] [JBoss Seam] - Re: A suggested SeamTest improvement

2007-07-14 Thread matt.drees
Okeydoke. http://jira.jboss.com/jira/browse/JBSEAM-1668 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064278#4064278 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064278 ___