[jboss-user] [JBoss Seam] - YEAAAAAHHHHHHHHHHHHHHH!!!!!!!!!!!!!!!!!!!!!!!!!!!

2007-07-31 Thread JUnkie
IT FINALLY WORKS!!! I've just added equals() to my PaymentMethod entity like this: public boolean equals(Object o){ | PaymentMethod pm = (PaymentMethod)o; | if (pm.getId() == this.getId()){ | return true; | } | return false; | } Did the same thing for all

[jboss-user] [JBoss Seam] - Re: I'm back

2007-07-31 Thread kingcu
Hi Pete, Would you be able to forward the following issue (GWT - Seam remoting integration) to Michael Neale, the author of the Seam GWT example. Thanks, wt http://www.jboss.com/index.html?module=bbop=viewtopict=114829 View the original post :

[jboss-user] [JBoss Seam] - Re: I'm back

2007-07-31 Thread mgrouch
No active conversation context problem http://www.jboss.com/index.html?module=bbop=viewtopict=114864 Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069289#4069289 Reply to the post :

[jboss-user] [Remoting] - Multiplex socket exmaple with SSL?

2007-07-31 Thread TheNelson
Any ready made examples to see what I have to do to make this work? I'm using MasterServerSocket and VirtualSocket. Thanks, Ian View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069290#4069290 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: JBPM Processor Designer not working with Eclipse 3.2

2007-07-31 Thread dleerob
Thanks, will remember that when using 3.1.0. Anyone know why it wouldn't work when copying org.jbpm.gd.jpdl.feature. 3.0.13.1 manually to the Eclipse 3.2.2 directory? That is the process designer that comes with the jbpm-jpdl-suite-3.2.1 download. If I used the build install task found in

[jboss-user] [JBoss Seam] - Re: numberguess not working right in Seam 2.0b1 under Tomcat

2007-07-31 Thread IGx89
Apparently it's an issue with Tomcat 6; downgrading to Tomcat 5.5 solved it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069293#4069293 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069293

[jboss-user] [JBoss Seam] - Re: I'm back

2007-07-31 Thread samdoyle
[EMAIL PROTECTED] wrote : Sorry, I'm not up on Seam remoting. Ok thanks. It's unfortunate I guess I'll need to scrap the idea of using Seam remoting and use good ole reliable DWR :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069294#4069294 Reply to the

[jboss-user] [JBoss Portal] - Re: Accessing Query Parameter value in the porlet in a page

2007-07-31 Thread shanportal
Hi brown, Thanks for your response. When use the createActionURL, The method creates Action url line like one below, I could access the request parameter. http://localhost:8180/portal/portal/default/RenderPage/myPortletWindow?action=1category=Industries. I am looking for sending the request

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

2007-07-31 Thread PeterJ
I tried this. It worked for me. What I got was the preference as stored in the portlet-instances.xml file. If you like, I can post all of my files. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069296#4069296 Reply to the post :

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

2007-07-31 Thread samdoyle
[EMAIL PROTECTED] wrote : Can you please put together a deployable test case in JIRA? I'm guessing that some exception is occuring server-side but I'll need a test case from you to reproduce it. Hi, The code I pasted in this post is it. It's as trivial as it could possibly get. You could

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

2007-07-31 Thread samdoyle
I'm using this under GlassFish V2 but the rest of the Seam features work fine. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069298#4069298 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069298

[jboss-user] [JBoss Seam] - convertEntity - someone must know

2007-07-31 Thread KimLord
I have asked this before but no one has ever answered. I am trying to use s:convertEntity with a selectOneMenu but get an error that the convertEntity tag is not defined. I am using seam 1.2.1. I upgraded from seam 1.1.6. The project was created using seam generate-entities. I have spent

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

2007-07-31 Thread desropolis
Hmmm. It's working for me. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069300#4069300 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069300 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: selectManyCheckbox

2007-07-31 Thread JUnkie
This would be a safer and more generic equals() method that does not have to be changed for different entities. public boolean equals(Object o){ return (o != null (this.getClass().cast(o)).getId() == this.getId()); } Have fun. View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - JBOSS 3.2 - windows 2003 shutdown issue

2007-07-31 Thread jrwpmw
We are having problem when shutting down our Windows 2003 server the JBOSS service doesn't appear to 'die' and the shutdown process hangs leaving the machine in a state where it must be power cycled. This is our (dedicated) Production Server. We are also running Windows 2003 and the same

[jboss-user] [JBoss Seam] - Re: Page action not called

2007-07-31 Thread Sammy8306
[EMAIL PROTECTED] wrote : 1) You are using Seam 1.2(.1) but your dtd is for Seam 1.1 | Yeah, I caught that and that's already fixed. anonymous wrote : | 2) Post the structure of your build project (e.g. run ls -R on an exploded ear/war). Ok, here goes: | $ ls -1R . | |

[jboss-user] [JBoss Seam] - Re: convertEntity - someone must know

2007-07-31 Thread JUnkie
Do you use Facelets? I believe that it just works with Facelets. With JSP you need to define it in your tag library I guess. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069304#4069304 Reply to the post :

[jboss-user] [JBoss Seam] - Re: convertEntity - someone must know

2007-07-31 Thread [EMAIL PROTECTED]
Yes, I forgot the JSP tag stuff in 1.2.1.GA, this is fixed in Seam2 onwards View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069305#4069305 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069305

[jboss-user] [Installation, Configuration DEPLOYMENT] - ERROR in deployment.. urgent help required

2007-07-31 Thread riji
Hi, I have an war file, which is not getting deployed in jboss. I get the following error. Can anyone tell me why this would be.??? Thanks in advance. ---ERROR- 2007-07-31 23:06:13,139 ERROR

[jboss-user] [JBossWS] - Problem with encoding ' ยง' character ((char)167)

2007-07-31 Thread amalkovskiy
I have a simple DTO object: public class TestDTO { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } } and q simple web-service method: public String test(TestDTO t) { String string

[jboss-user] [JBoss Seam] - Re: selectManyCheckbox

2007-07-31 Thread [EMAIL PROTECTED]
Yeah, I know the exact problem, in fact, its a oft discussed topic when using hibernate. There is something on the SeamProblemsFAQ about this (but not coming from your angle, I will update). When you load the same entity twice from the same persistence context the same object is returned. If

[jboss-user] [JBoss Seam] - Re: Page action not called

2007-07-31 Thread [EMAIL PROTECTED]
Are you just deploying a war? To tomcat? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069309#4069309 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069309 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - JBoss Seam + EJB 3.0 in other App Server

2007-07-31 Thread ffranceschi
I read a article about JBoss Seam, and in this article the Author says JBoss Seam works in any Application Server. JBoss Seam works fine in ex. Weblogic 10, WebSphere (with EJB Session 3.0)? I do have any limitation? I get this note in faq http://labs.jboss.com/jbossseam/faq#j2ee Q: Can I

[jboss-user] [JBossWS] - Re: jb0ss4.2.0, JAX-WS2.0 deployment exception

2007-07-31 Thread marcelvanvelzen
I encountered the same error when I had the same webmethod in two different classes with different parameters. Renaming the webmethod names solved this problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069313#4069313 Reply to the post :

[jboss-user] [JBoss Seam] - Re: selectManyCheckbox

2007-07-31 Thread JUnkie
Thanks, that's very interesting as I thought the objects are equal although they come from different PCs, I thought they are just not identical. Two different objects having the exact same state (same property values) can be considered as equal I thought. From that perspective my objects were

[jboss-user] [JBoss jBPM] - Bypass Form Validation For Certain Operations?

2007-07-31 Thread khamburg
This seems like a pretty simple question, but I have searched and can't find the answer. I have a bunch of xhtml forms corresponding to tasks in my workflow. Some of them specify input fields that are required and must be validated. I set required=true on the input component and included a

[jboss-user] [JBoss Seam] - Little problem using seam-gen

2007-07-31 Thread limousyf
Hello, we are using seam-gen on Seam 1.2.1GA to generate our projects and I noticed a little problem on the CRUD. If I have two oneToMany relations from one table to another (for example, a document from a user to another. The document references the source, a user, and the destination,

[jboss-user] [JBoss Seam] - Re: selectManyCheckbox

2007-07-31 Thread [EMAIL PROTECTED]
Yes, there is a mismatch between expectation and reality here ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069319#4069319 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069319

[jboss-user] [JBoss Seam] - Re: JBoss Seam + EJB 3.0 in other App Server

2007-07-31 Thread smithbstl
EJB 3 was not part of the J2EE spec so that the reason for the caveat. The faq page probably needs updated for JEE 5 which does include EJB 3. As far as I know, you should be able to run on any JEE 5 app server. Check you app server's documentation. View the original post :

[jboss-user] [EJB 3.0] - JBoss and PostgreSQL 8.1

2007-07-31 Thread fermat42
Hello, I am using jboss 4.2.1 with PostgreSQL 8.1. With this I tried to bouild an Entity Bean that stores informations about some servers. One of the fields is the IP of the server. It looks like this: @Entity @IdClass(ComponentPK.class) public class Server implements Serializable { @Id

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

2007-07-31 Thread desropolis
1. Locate jboss-portal-2.6.1.GA/server/default/deploy/jboss-portal.sar/portal-admin.sar/portal-admin.war/WEB-INF/lib2/myfaces-impl.jar and jboss-portal-2.6.1.GA/server/default/deploy/jboss-portal.sar/portal-admin.sar/portal-admin.war/WEB-INF/lib2/myfaces-api.jar 2. Copy them to your tutorial

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

2007-07-31 Thread shanportal
Peter Thank you so much for your try. Could you please post all your files it would be definitely helpful. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069324#4069324 Reply to the post :

[jboss-user] [JBoss Seam] - pageContext is null in page action

2007-07-31 Thread mgrouch
pageContext is null in page action. How is this possible? My home.page.xml page xmlns=http://jboss.com/products/seam/pages; | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; | xsi:schemaLocation=http://jboss.com/products/seam/pages

[jboss-user] [JBoss Seam] - Re: Problem with manual flush mode for managed persistence c

2007-07-31 Thread nickarls
[EMAIL PROTECTED] wrote : You need to use a SMPC Aah, indeed, thanks. Would I also be getting the SMPC by using the getEntityManager() in EntityHome and the standard PC by using the getPersistenceContext() in PersistenceController? View the original post :

[jboss-user] [JBoss Seam] - Re: JBoss Seam + EJB 3.0 in other App Server

2007-07-31 Thread samdoyle
Seam 2.0.x from head branch works fine with GlassFish V2 for most stuff I have tried soo far. I would REALLY like it though if I could get the JavaScript Remoting support to work but it doesn't appear to and it is really frustrating. I don't think this is related to the app. server though.

[jboss-user] [JBoss Seam] - Conversation ID in web service response

2007-07-31 Thread shakenbrain
I'm getting started with conversations in a JBoss Seam web service. I've got a basic web service with a method called 'start' that doesn't do anything (yet): @Stateless | @Name(supportCenterService) | @WebService(name = SupportCenter, targetNamespace = http://blah.service;, serviceName =

[jboss-user] [JBoss Seam] - Re: Page action not called

2007-07-31 Thread Sammy8306
War: yes, Tomcat: no, Jetty View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069333#4069333 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069333 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Re: what happen with my entity bean , need expert help

2007-07-31 Thread ALRubinger
Well, since your EjbLocator class is not itself a Service (Stateless EJB or JMX), you can't inject into it. It's just a POJO; there's no way for the container to know that it should be scanned for dependencies or injection. So you can do one of a couple things: 1) Make your EjbLocator itself

[jboss-user] [JBoss Seam] - Calling Identity.instance() from a servlet

2007-07-31 Thread lmehret
Hi, If I call Identity.instance() from a servlet or a filter I get the following IllegalStateException. I assume I 've miss configured something... Any Ideas? | java.lang.IllegalStateException: No active session context | at org.jboss.seam.security.Identity.instance(Identity.java:106)

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

2007-07-31 Thread ALRubinger
Regarding getting the EM from JNDI, see: http://www.jboss.com/index.html?module=bbop=viewtopict=113694postdays=0postorder=ascstart=10#4069334 S, ALR View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069338#4069338 Reply to the post :

[jboss-user] [EJB 3.0] - Re:

2007-07-31 Thread prohgy
Very good, Sandello. I had this problem, I removed log4j.jar from my application on Jboss and it startup without problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069339#4069339 Reply to the post :

[jboss-user] [JBoss Seam] - Re: I'm back

2007-07-31 Thread lmehret
[EMAIL PROTECTED] wrote: anonymous wrote : If there are any issues you want me to look at, please post a link to them in this topic. I got one... http://www.jboss.com/index.html?module=bbop=viewtopict=114926 View the original post :

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

2007-07-31 Thread PeterJ
Here are the files. I used JBoss AS 4.0.2.GA and Portal 2.6.0. package com.portlet; | import java.io.*; | import javax.portlet.*; | public class PlainRenderPortlet extends GenericPortlet { | @Override | protected void doView(RenderRequest request, RenderResponse response) |

[jboss-user] [JBoss Seam] - Re: Seam Gen

2007-07-31 Thread atao
why not. IMO a better trick would be to use hibernate custom value types for the foreign keys. Then it will be easy to check these types in the template. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069349#4069349 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Little problem using seam-gen

2007-07-31 Thread atao
See http://jira.jboss.com/jira/browse/JBSEAM-994 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069351#4069351 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069351 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Seam Gen

2007-07-31 Thread mrohad
great , can u give me a tip how to implement it? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069352#4069352 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069352 ___ jboss-user

[jboss-user] [Clustering/JBoss] - Session Replication deadlock

2007-07-31 Thread stringaling
Hi, We are using Jboss 4.0.5 in a cluster. We are experiencing deadlock within the Jboss Cache, which is causing out of memory problems on the server. The Jboss Cache Version is 1.4.1SP3 (bundled Cache for jboss 4.0.5). We only expirience this issue when BUDDY replication is enabled. The

[jboss-user] [JBoss Seam] - show me the right way to access row of datatable with Seam F

2007-07-31 Thread tim_ph
I've been trying and trying but cannot do a simple thing like this: | h:dataTable var=personnel value=#{applicationHome.personnels} | h:column | f:facet name=headeraction/f:facet |s:link value=Select action=#{applicationHome.selectPersonnel}/ | /h:column |

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - portable j2ee application - how to handle persistence part

2007-07-31 Thread ajay662
I need to write a small j2ee application that I can deploy on jboss, weblogic and websphere. This application needs to run alongside customer's any other application already running on the application server. My application will have a need to persist some simple data. I am looking for

[jboss-user] [JBoss Seam] - taskInstanceListForType Size

2007-07-31 Thread harpritt
Hi everybody its me Dr Nick!.. no no no no no quick question whats the best way to display the size of this list without having to write a backing bean also, what is going here, how is the string being passes back to the component #{taskInstanceListForType['ap_approve_cr']} Cheers

[jboss-user] [JNDI/Naming/Network] - Super slow initial lookup from standalone client

2007-07-31 Thread tldtld
I have a strange problem that I cannot seem to crack. I have a stand alone client connecting up against a JBoss on a Linux Suse machine. All local traffic. he very first lookup through JNDI takes _ages_ (~2-3 mins) and afterwards it just blazes through with no issues. Been trawling the forums

[jboss-user] [JBoss Seam] - Re: Injecting @Unwrap'ed component

2007-07-31 Thread harpritt
Gavin or Pete or anyone. Just seen this thread Whats the SEAM approved way of getting the size of taskInstanceListForType['LeTaskOPeril'] in the view Ive seen some people use fn:length but i dont want to use JSTL in my lovely facelet . Cheers Gents View the original post :

[jboss-user] [JBoss Seam] - Re: Seam Gen

2007-07-31 Thread atao
in generate-entities target, add a hbmtemplate to create some hibernate-console.cfg.xml file. | hbmtemplate filepattern=hibernate-console.cfg.xml | template=hibernatetools/hibernate-console.cfg.xml.ftl |

[jboss-user] [JBoss Seam] - Re: I'm back

2007-07-31 Thread harpritt
Dude http://www.jboss.com/index.html?module=bbop=viewtopict=89940 Nice one... sorry if its noobie question View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069375#4069375 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Re: Exadel Plugins available in opensource

2007-07-31 Thread kito99
I'm glad to hear about the time line :-). Here's what I mean by templates. With Exadel Studio, I can save any project as a template. Then, I can create a New project using that template. Basically, it just copies the project's resources from a .metadata folder, but it works well for courses --

[jboss-user] [JBoss Seam] - Client-side Seam remoting calls from a static web page outsi

2007-07-31 Thread art_jones76
I'd like to embed client-side Seam remoting calls on a static web page outside of my Seam application. I have all the code for the Hello World Remoting sample application working fine. All the Seam remoting calls work properly when the page that serves it comes from within the application.

[jboss-user] [JBoss Seam] - Re: convertEntity - someone must know

2007-07-31 Thread KimLord
Yes, I am using facelets, but am getting the error I mentioned. Do I have something set up incorrectly? I thought I followed the directions on the jboss site. I think I just typed ant from the 1.2.1 GA directory and it said that it was successful. I don't know what else I was supposed to do.

[jboss-user] [JBoss Seam] - Re: Injecting @Unwrap'ed component

2007-07-31 Thread [EMAIL PROTECTED]
IIRC you can do: taskInstanceListForType['LeTaskOPeril'].size in recent (I'm not sure since when) Seam (this isn't standard in JSF) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069384#4069384 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Calling Identity.instance() from a servlet

2007-07-31 Thread [EMAIL PROTECTED]
http://docs.jboss.com/seam/2.0.0.B1/reference/en/html/configuration.html#d0e12758 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069385#4069385 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069385

[jboss-user] [JBoss Seam] - Re: convertEntity - someone must know

2007-07-31 Thread [EMAIL PROTECTED]
So, post the whole error. Btw, you won't get very far asking for help being that vague. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069386#4069386 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069386

[jboss-user] [JBoss Seam] - Re: Problem with manual flush mode for managed persistence c

2007-07-31 Thread [EMAIL PROTECTED]
No, both would return an SMPC (getPersistenceContext can also return a Seam managed hibernate session) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069389#4069389 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069389

[jboss-user] [JBoss Seam] - Re: convertEntity - someone must know

2007-07-31 Thread KimLord
This is the error: An Error Occurred: /ClassificationsEdit.xhtml @47,56 s:convertEntity Tag Library supports namespace: http://jboss.com/products/seam/taglib, but no tag was defined for name: convertEntity +- Stack Trace com.sun.facelets.tag.TagException: /ClassificationsEdit.xhtml @47,56

[jboss-user] [JBoss Messaging] - Re: Receiver got Stopped with Different JBM Version(1.0.X an

2007-07-31 Thread timfox
Craig- As already mentioned, 1.0.1.GA is *not* the latest in the 1.0 series. Also, 1.2.0.GA is *not* the latest 1.2 release (1.2.0.SP2 is). The latest GA release is 1.3.0.GA, and 1.4.0.CR2 will be out shortly followed shortly after by 1.4.0.GA. We simply do not have the time to give free

[jboss-user] [JBoss Seam] - Re: Hot deployment and HQL

2007-07-31 Thread [EMAIL PROTECTED]
Feature ;) . Model and related classes shouldn't go into dev View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069395#4069395 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069395

[jboss-user] [JBoss Seam] - Re: convertEntity - someone must know

2007-07-31 Thread [EMAIL PROTECTED]
So thats not Seam 1.2.1.GA but some older version. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069396#4069396 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069396 ___

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

2007-07-31 Thread [EMAIL PROTECTED]
s:fileUpload doesn't support the required attribute. http://jira.jboss.com/jira/browse/JBSEAM-1683 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069397#4069397 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069397

[jboss-user] [Messaging, JMS JBossMQ] - Re: Managing queues

2007-07-31 Thread arnold.maderthaner
Hi ! Thx for your reply. Will such features be implemented or are there some things planed for the future ? yours arnold View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069398#4069398 Reply to the post :

[jboss-user] [JBoss Seam] - Re: convertEntity - someone must know

2007-07-31 Thread KimLord
How do I upgrade my Seam version? I tried to follow the few directions that were on the site. Could you tell me what to do or point me in the direction of some detailed directions? I really appreciate your help. View the original post :

[jboss-user] [JBoss Seam] - Re: Component configuration with complex types

2007-07-31 Thread [EMAIL PROTECTED]
You could do this via components.xml but it would be quite verbose due to not being able to nest components. If this is a static menu, then I would ui:include a facelet. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069400#4069400 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Component configuration with complex types

2007-07-31 Thread atao
It's really a work in progress. I just checked it againt Seam 2 cvs. So, the code as it is... All the calls go through MenuManager | package org.jboss.seam.menu; | | import static org.jboss.seam.ScopeType.APPLICATION; | import static org.jboss.seam.annotations.Install.BUILT_IN; |

[jboss-user] [JBoss Portal] - Re: HUSTON WE GOT A PROBLEM. JSF, portal, jboss-container. S

2007-07-31 Thread anders3
By adding the following to my wars WEB-INF/web.xml The warning disappered context-param | param-nameorg.jboss.jbossfaces.WAR_BUNDLES_JSF_IMPL/param-name | param-valuetrue/param-value | /context-param | View the original post :

[jboss-user] [JBoss Seam] - Re: show me the right way to access row of datatable with Se

2007-07-31 Thread tim_ph
Correction: when using selectPersonnel(Personnel p) with #{applicationHome.selectPersonnel(personnel)}, it is NOT NULL. But the value is always the value of the first row of the list, no matter what row you click on. View the original post :

[jboss-user] [JBoss Seam] - Re: Injecting @Unwrap'ed component

2007-07-31 Thread harpritt
Nice one mate i shall give it a go *crosses toes* View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069404#4069404 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069404 ___

[jboss-user] [JBoss Seam] - Open PDF in new window

2007-07-31 Thread jfrankman
I am trying to stream a PDF to a new browser window. I can get this to work, but the strange thing that happens is that a new browser window gets opened, but instead of the PDF geting displayed inside the browser window, it is opened separately by Adobe Acrobat. So, the user is forced to close

[jboss-user] [JBoss Seam] - Some doubts about Seam

2007-07-31 Thread magoicochea
Hello everyone, I have just come across JBoss Seam some days ago when I heard about it in an announcement regarding Red Hat Developer Studio and it caught my attention. I sill have some doubts about it: 1.- How is persistence managed? Does it use EJB 3.0 persistence (I don't know much about

[jboss-user] [JBoss Seam] - Re: Client-side Seam remoting calls from a static web page o

2007-07-31 Thread samdoyle
Which version of Seam are you using? I wasn't able to get the remoting working with the head version of 2.0. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069408#4069408 Reply to the post :

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

2007-07-31 Thread timfox
Yes you could add your own interceptor (aspecy) on the server aop stack. Take a look at the aspects that already exist e.g. SecurityAspect for an idea of how to do this. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069409#4069409 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Some doubts about Seam

2007-07-31 Thread [EMAIL PROTECTED]
magoicochea wrote : 1.- How is persistence managed? Does it use EJB 3.0 persistence (I don't know much about EJB) or can I use hibernate? If it uses Hibernate how is it implemented? As usual with Hibernate or does it uses some kind of annotations for it? Seam provides a Seam Managed

[jboss-user] [JBoss Portal] - Re: multiple header support

2007-07-31 Thread pucky
I'm trying to do something similar and I think I'm just getting more confused. I have 2 portals and one portal needs to have the header links wrapped in divs but the other needs them to be wrapped in a table. Looking at the documentation and reading this forum makes me think that you can only

[jboss-user] [JBoss Seam] - Re: Some doubts about Seam

2007-07-31 Thread SmokingAPipe
To answer your questions: 1. Seam works with either EJB3 or Hibernate. I'm using EJB3 in my projects because EJB3 is a standard. I think that Hibernate itself is a bit more powerful in what it can do. Under the hood, JBoss EJB3 is based on Hibernate I believe. 2. Don't use Tomahawk. I

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

2007-07-31 Thread szaccaria
Thanks Diego, I appreciated your reply!!! I had already resolved the problem, but you have cleared me the thing ulteriorly. Scusa, ma sei italiano? Grazie comunque ;-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069410#4069410 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - How to I upgrade seam version?

2007-07-31 Thread KimLord
How do I upgrade my Seam version? I tried to follow the few directions that were on the jboss site but am still using the older version. Could someone tell me what to do or point me to some detailed directions? I really appreciate your help. Thanks, Kim View the original post :

[jboss-user] [JBoss Seam] - Re: Seam conversations and third party JSF components libs

2007-07-31 Thread mgrouch
I've made some progress with this issue by adding page action action=#{myBean.beginCall} page xmlns=http://jboss.com/products/seam/pages; | xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; | xsi:schemaLocation=http://jboss.com/products/seam/pages

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

2007-07-31 Thread trouby
Hey, I upgraded to CVS version and the entityManager error stopped from hapening, but I have encountered another issue, when I add a search parameter to the EntityQuery that has a s:convertEntity tag, + the parameter within the myList.page.xml file, submitting the form results a argument type

[jboss-user] [JBoss Seam] - Message bundle in an EAR is not working

2007-07-31 Thread reind
I have an ear packaged as: ear/ | a.war | /WEB-INF/faces-config.xml | a.jar | /com/example/a/Messages.properties | b.war | /WEB-INF/faces-config.xml | b.jar | /com/example/b/Messages.properties faces-config.xml in a.war has:

[jboss-user] [JBoss Seam] - Re: Some doubts about Seam

2007-07-31 Thread magoicochea
Thanks for your answers, I have another questions: 1.- When I developed applications with JSF I used a JSF/Spring/Hibernate architecure using Managed Beans/Services/DAOs, the managed beans had the presentation logic, the Services had the business logic and the DAOs had the data access logic,

[jboss-user] [JBoss Seam] - Re: Message bundle in an EAR is not working

2007-07-31 Thread atao
and what if: ear/a.war/WEB-INF/classes/Messages.properties ear/b.war/WEB-INF/classes/Messages.properties View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069429#4069429 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069429

[jboss-user] [JBoss Seam] - How do I upgrade my Seam version?

2007-07-31 Thread KimLord
How do I upgrade my Seam version? I tried to follow the few directions that were on the jboss site but am still using the older version. Could someone tell me what to do or point me to some detailed directions? I really appreciate your help. Thanks, Kim View the original post :

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

2007-07-31 Thread genman
Well, the problem is not during the message processing, but during the transaction commit. Hibernate doesn't see the context classloader used in a transaction commit, because the transaction commit happens outside the message delivery handling. Or so I'm guessing. View the original post :

[jboss-user] [JBoss Seam] - Re: Client-side Seam remoting calls from a static web page o

2007-07-31 Thread samdoyle
btw you can't make cross domain ajax requests. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069433#4069433 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069433 ___ jboss-user

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

2007-07-31 Thread samdoyle
bumping in the hopes someone knows something about this? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069434#4069434 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069434 ___

[jboss-user] [EJB 3.0] - MDB inflow; does the context classloader get set during TX c

2007-07-31 Thread genman
I posted this message in other forums, but I figure this problem is really centered around EJB3. 2007-07-25 11:14:41,313 ERROR [AbstractFlushingEventListener] Could not synchronize database state with session | org.hibernate.type.SerializationException: could not deserialize | at

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

2007-07-31 Thread genman
What I have often done with entities is create a setter, such as setUnencryptedPassword and made a getter (dummy) that is marked @Transient. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069436#4069436 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How do I upgrade my Seam version?

2007-07-31 Thread chrismalan
Just download the version you want and unpack it. Then use the jars (jboss-seam.jar, etc.) in its root directory in your application instead of your older seam version jars. If you need any of the jars in the /lib directory on your classpath, use them instead of others with the same name you

[jboss-user] [JBoss Seam] - Re: Message bundle in an EAR is not working

2007-07-31 Thread reind
That worked, thanks very much atao! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069438#4069438 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4069438 ___ jboss-user mailing list

[jboss-user] [Performance Tuning] - Re: RMI per call overhead?

2007-07-31 Thread genman
RMI is slow, hence the creation of asynchronous interfaces such as JMS. There may be certain instances you can cache, so subsequent calls can be done using the same objects. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069439#4069439 Reply to the post :

[jboss-user] [Performance Tuning] - Re: No Managed Connections Available

2007-07-31 Thread genman
From the JMX console, you can actually see where those open connections were created and, possibly, what thread created them. This should answer where you're leaking connections. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4069444#4069444 Reply to the post

[jboss-user] [JBoss Seam] - seam-ui example: s:selectItems example is broken

2007-07-31 Thread stephen.friedrich
On a fresh Seam from CVS and pristine JBossAS 4.2.1: - Deploy the seam-ui example - Select the s:selectItems topic - Select the Edit the continent/country relationship - Add some countries to Antarctica - Click on Apply - Select the s:fragment topic - Select the s:selectItems topic again (you'll

[jboss-user] [Performance Tuning] - Re: Measuring deployment time for ear on JBOSS

2007-07-31 Thread genman
If you turn on DEBUG logging, you should be able to see the time deployment started to completion based on the timestamp of the logging messages. JBoss does several things while deployment: * Unpacks .ear/.war deployments. (Use exploded jars to keep this from happening.) * Scans for various

[jboss-user] [JBoss Seam] - Re: How do I upgrade my Seam version?

2007-07-31 Thread KimLord
Yes, that is what I did so now I have a directory with the date. So now I take all the jars in that dated directory and put them in the lib directory of my project and then build my project? Thanks for helping, Kim View the original post :

<    1   2   3   4   >