[jboss-user] [JBoss Tools (users)] - problem with css and visual view

2009-01-22 Thread shasho
Hello Adding the following line to my css #url { width: 50%; } caused the visual/source view to come with an error Visual Editor View Update has encounter a problem Error Its enough to have only this item in the css View the original post :

[jboss-user] [JBoss Seam] - Deployment of seam application in the real world

2007-10-29 Thread shasho
Ok, the moment has come, my seam application is ready and I want to deploy in a real world. Can some one direct me to best practices about how to integrate my JBoss application (dynamic content) with a web Server (static content) 1. Should I use Apaches web server as a front and redirect

[jboss-user] [JBoss Seam] - s:hasRole get java.lang.NullPointerException in 2.0.0CR2

2007-10-08 Thread shasho
Hi Just upgraded to 2.0.0CR2 and s:hasRole get java.lang.NullPointerException. return to CR1 and it works fine. Here is the trace | com.sun.facelets.tag.TagAttributeException: /dialer/admin.xhtml @17,38 test=#{s:hasRole('admin')} /dialer/admin.xhtml @17,38 test=#{s:hasRole('admin')}:

[jboss-user] [JBoss Seam] - Re: Problems with seam and icefaces (sending emails)

2007-07-11 Thread shasho
The only thing that I changed in the application I downloaded from www.mimuw.edu.pl/~barter/exampleear.zip is the definition of mail:mail-session... in WEB-INF/components.xml. Now, I suspect that I need also to change some configuration in the Jboss itself. The seam references mention

[jboss-user] [JBoss Seam] - Re: Problems with seam and icefaces (sending emails)

2007-07-11 Thread shasho
We have different problems . He got java.lang.NullPointerException... I got No Factories configured for this Application.. Looking at previous posts in this forum I suspect that my problem is Jboss configuration problem His example is taken from the seam examples. The only different is

[jboss-user] [JBoss Seam] - Re: Problems with seam and icefaces (sending emails)

2007-07-10 Thread shasho
Hi, I have related quesion. Running the same code in my Jboss 4.05 I get the No Factories configured for this Application.. at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:90) ..error. What do I need to do beside deploying the application in Jboss? Do I need to change

[jboss-user] [JBoss Seam] - Re: Problems with seam and icefaces (sending emails)

2007-07-10 Thread shasho
I took the ZIP file from www.mimuw.edu.pl/~barter/exampleear.zip and deployed the EAR in my Jboss 4.05 Ice 1.6 Seam 1.2.1 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4062789#4062789 Reply to the post :

[jboss-user] [JBoss Seam] - Re: accessing EntityManager in java action constructor

2007-04-06 Thread shasho
Many thanks its working but there is a problem with ICEFACE integration I have a java action bean with the following | @Stateful | @Scope(SESSION) | @Name(productsGrid) | public class ProductsGridAction implements ProductsGrid{ | | @PersistenceContext |private

[jboss-user] [JBoss Seam] - accessing EntityManager in java action constructor

2007-04-05 Thread shasho
I want to populate a selectOneMenu from the database once a page is loaded The page (XHTML) is associated with an action bean (Java) I can not access the database in the java class constructor because there the EntityManager is null Everything is working fine when I am calling some load

[jboss-user] [JBoss Seam] - problem with 1.1.6GA ? duplicate factory for: actor

2007-02-14 Thread shasho
Hi When replacing the seam jar files from version 1.1.1GA with the ones of 1.1.6GA I get the following error | 18:57:26,234 ERROR [[/buysell]] Exception sending context initialized event to listener instance of class org.jboss.seam.servlet.SeamListener | java.lang.IllegalStateException:

[jboss-user] [JBoss Seam] - Re: problem with 1.1.6GA ? duplicate factory for: actor

2007-02-14 Thread shasho
Searching the project for @Factory( actor ) yield nothing. It is worth mentioning that I use icefaces in my project Here is my component.xml | !DOCTYPE components PUBLIC | -//JBoss/Seam Component Configuration DTD 1.1//EN | http://jboss.com/products/seam/components-1.1.dtd; | |

[jboss-user] [JBoss Seam] - Re: Extending with the same Table in 1.1.0GA

2007-01-11 Thread shasho
Thanks, you were right I did have two components with the same name View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4000415#4000415 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4000415

[jboss-user] [JBoss Seam] - Extending with the same Table in 1.1.0GA

2007-01-10 Thread shasho
Hello I have a running project that when I replace the files : jboss-seam.jar,jboss-seam-ui.jar of version 1.0.1GA with the one that come with version 1.1.0GA I get the error Illegal use of @Table in a subclass of a SINGLE_TABLE hierarchy: name of class B In my project Class B extends

[jboss-user] [JBoss Seam] - Re: Partial page rendering

2006-08-31 Thread shasho
I really don?t have a specific technical question but rather looking for the ?right? approach. My requirement is to build a screen composed of several different parts and be able to update each screen part separately ..For example, a screen composed of an upper banner and a login box. When the

[jboss-user] [JBoss Seam] - Re: Partial page rendering

2006-08-31 Thread shasho
I am using Facelete thus the template with frames need to look something like that (file name templateTest.xhtml) | !DOCTYPE html PUBLIC | -//W3C//DTD XHTML 1.0 Frameset//EN | http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd; | html | head | link rel=stylesheet

[jboss-user] [JBoss Seam] - Partial page rendering

2006-08-30 Thread shasho
I was wondering if there is an easy way to implement a partial page rendering using Seam. I have a page that is composed of several parts and want each part to be updated separately (when you log in there is no need to reload the upper banner ?). One possible way is to use frames but I

[jboss-user] [JBoss Seam] - Re: How to redirect flow between two beans?

2006-07-13 Thread shasho
I want to call specific function in hotelsearch - find and not just load it I want to know how to direct to a specific fucntion inside hotelsearch which is a Java bean View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3957672#3957672 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to redirect flow between two beans?

2006-07-11 Thread shasho
Following seam booking demo program Let?s say that after a successful login we want to perform an automated search that shows all the available hotels In the file LoginAction.java under the login function in case of successful login ?.. user = results.get(0); |