[jboss-user] [Security & JAAS/JBoss] - Re: Latest JAAS Tutorial for Database communication

2007-02-05 Thread zzztimbo
why hasn't anyone replied to this post? i have a similar interest in a good tutorial on setting up JAAS in JBoss. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4011622#4011622 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[jboss-user] [Security & JAAS/JBoss] - Is there a tutorial on form-based login using JAAS on JBoss?

2007-02-09 Thread zzztimbo
I would like to secure my web application with a form based login. I do not want to use the browser pop up login box. Is there a tutorial or example out there that I can follow? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4013929#4013929 Reply to the pos

[jboss-user] [JBoss Seam] - time zone in Seam

2007-04-19 Thread zzztimbo
Is there an example I can look at where time zone information is saved with the user account in a Seam application. For instance, when a user registers, they select their time zone from a pulldown. It is saved. All time stamp information in the application then reflects this fact for this user.

[jboss-user] [JBoss Seam] - Is there an easy way to create a pulldown with all available

2007-04-20 Thread zzztimbo
I have a more specific question about how to create a pull down with all available time zones. There is localeSelector.supportedLocales that gives me available locales so that I can populate my selectItems, but is there something similar for TimeZone? View the original post : http://www.jbo

[jboss-user] [JBoss Seam] - Re: Is there an easy way to create a pulldown with all avail

2007-04-22 Thread zzztimbo
"petemuir" wrote : http://docs.jboss.com/seam/1.2.1.GA/reference/en/html/i18n.html#d0e7314 I'm sorry, but I already looked there. That one paragraph on timezone does not speak of creating a pull down of all available timezones. I'm looking for a way to display the results of TimeZone.getAvailab

[jboss-user] [JBoss Seam] - user.getRoles() - Seam Security

2007-03-05 Thread zzztimbo
I've used seam-gen to create a skeleton. I'm looking at Chapter 12. Security in the Seam documentation. It is not clear to me how I am supposed to implement the .getRoles() method in the example 12.3.2 Writing an authentication method. Any help would be greatly appreciated. View the origin

[jboss-user] [JBoss Seam] - FacesMessages in SeamSpace example

2007-03-14 Thread zzztimbo
I'm looking at the SeamSpace example and there is one line in RegisterAction.java that I have questions about. FacesMessages.instance().add("confirmPassword", "Passwords do not match"); When I purposefully input in different passwords in the registration screen, I get "confirmPassword" in

[jboss-user] [JBoss Seam] - Re: FacesMessages in SeamSpace example

2007-03-14 Thread zzztimbo
That worked perfectly! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4028188#4028188 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4028188 ___ jboss-user mailing list jboss-us

[jboss-user] [JBoss Seam] - How do I select an initial page after login chosen by user r

2007-03-15 Thread zzztimbo
I'm trying to edit my pages.xml to send a user to a specific page based on their user role. How do I do that? | | | | | | | | For instance, how do I modify the above so that users with role = 'user' will be sent to user.xhtml while users with

[jboss-user] [JBoss Seam] - Re: How do I select an initial page after login chosen by us

2007-03-15 Thread zzztimbo
what about the portion of the logic? if the user is already logged in and they try to go to the login screen, it should send them to the appropriate page: either user or poweruser. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4028629#4028629 Reply t

[jboss-user] [JBoss Seam] - Troubleshooting: seam component not found

2007-03-16 Thread zzztimbo
My application was working just fine the other day and now I am getting errors. This is happening at my login screen. I know for a fact the username and password are correct by checking the database. There doesn't seem to be a problem with connecting to the database because my import.sql execute

[jboss-user] [JBoss Seam] - Re: How do I select an initial page after login chosen by us

2007-03-19 Thread zzztimbo
"[EMAIL PROTECTED]" wrote : The best option is: | | | | No need for any special changes to Identity. What should the behavior be for this: | | | | | | | | I copied this from the pages.xml of the booking example. After I log in fr

[jboss-user] [JBoss Seam] - Re: How do I select an initial page after login chosen by us

2007-03-19 Thread zzztimbo
"[EMAIL PROTECTED]" wrote : If the users have one role only, you could write it like this: | | | | | | | | | | | | | | | | | | | | | | I'm getting an exception. | javax.faces.el.Ev

[jboss-user] [JBoss Seam] - Re: ResourceBundle in hebrew / default locale

2007-03-20 Thread zzztimbo
"trouby" wrote : | | It is required to use an editor that supports automatic encoding. | | Eclipse resourceBundleEditor from 'http://www.resourcebundleeditor' makes a perfect job here ;) | | This was a great tip for me. Thanks trouby! View the original post : http://www.jboss.c

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

2007-08-22 Thread zzztimbo
I followed the instructions in the link mentioned by Pete. "[EMAIL PROTECTED]" wrote : http://docs.jboss.com/seam/2.0.0.B1/reference/en/html/configuration.html#d0e12758 I still am receiving the same error of No active session context. I basically modified the components.xml file and copy paste

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

2007-08-23 Thread zzztimbo
"matt.drees" wrote : Is your servlet mapped to a url that would be matched by "/media/*" ? I already addressed that by using View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077462#4077462 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[jboss-user] [JBoss Seam] - How do I log in to my Seam application using a servlet?

2007-08-23 Thread zzztimbo
How do I log in to my Seam application without having to be confronted with a login page (without using a JSF page to log in). My current approach is to pass the username and password to a servlet in Seam. This is currently working. Then I would like to be able to use Identity.instance().setU

[jboss-user] [JBoss Seam] - Re: How do I log in to my Seam application using a servlet?

2007-08-23 Thread zzztimbo
What does the following mean? anonymous wrote : The context filter expects to find the conversation id of any conversation context in a request parameter named conversationId. You are responsible for ensuring that it gets sent in the request. | | You are also responsible for ensuring propag

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Localhost/IP Address issue

2007-12-13 Thread zzztimbo
You are missing an equals sign: | --host= | "sathish.gopal" wrote : Hi all, | | I solved this problem by starting the server with the parameter --host . | | The parameter jboss.bind.address will be set to the IP Address | View the original post : http://www.jboss.com/index.ht

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Localhost/IP Address issue

2007-12-13 Thread zzztimbo
How do I modify the run.conf file so that I do not have to start jboss with this parameter? I would just like to issue my usual run.sh. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112758#4112758 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Localhost/IP Address issue

2007-12-13 Thread zzztimbo
I'm having the same issue and finally tried this solution. It did not work for me. I would like to access the default jboss page by going to http:// instead of http://localhost (which seems to be the only way to access it). What might be my problem? View the original post : http://www.jboss.com

[jboss-user] [JBoss Seam] - Re: Issues regarding integration testing using seam-gen

2007-10-17 Thread zzztimbo
Can anyone help me with this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4096323#4096323 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4096323 ___ jboss-user mailing list j

[jboss-user] [JBoss Seam] - Re: Issues regarding integration testing using seam-gen

2007-11-09 Thread zzztimbo
Here at the things I have done. I downloaded Seam 2.0.0.GA. I ran seam-gen to create a project. I created a simple test that extends SeamTest. I created a textng xml file. I receive the following error when I run ant test. |[testng] FAILED CONFIGURATION: @BeforeClass init |[testn

[jboss-user] [JBoss Seam] - Re: Issues regarding integration testing using seam-gen

2007-11-12 Thread zzztimbo
Here is my output from "ant -debug": [testng] The ' characters around the executable and arguments are |[testng] not part of the command. | Execute:Java13CommandLauncher: Executing '/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/java' with arguments: | '-ea'

[jboss-user] [JBoss Seam] - Re: Issues regarding integration testing using seam-gen

2007-11-15 Thread zzztimbo
I moved jar files from the test directory up one level to the lib directory. This is my classpath now: [testng] The ' characters around the executable and arguments are |[testng] not part of the command. | Execute:Java13CommandLauncher: Executing '/System/Library/Frameworks/JavaVM.framew

[jboss-user] [JBoss Seam] - Re: Issues regarding integration testing using seam-gen

2007-11-16 Thread zzztimbo
I hope this isn't a stupid question... how do I control classpath order in my ant build script? "tynor" wrote : The microcontainer jars need to be at the front of the classpath. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4105525#4105525 Reply to the p

[jboss-user] [JBoss Seam] - Re: Issues regarding integration testing using seam-gen

2007-11-17 Thread zzztimbo
Dear Pete, thank you so much for your help! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4105789#4105789 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4105789 ___ jboss-user

[jboss-user] [JBoss Seam] - Issues regarding integration testing using seam-gen

2007-10-12 Thread zzztimbo
I used seam-gen to create my Eclipse project. Here is my single test: | package com.mcc.test; | | | import org.jboss.seam.mock.SeamTest; | import org.testng.annotations.Test; | | | public class TestTest extends SeamTest { | | @Test | public void testNothing()

[jboss-user] [JBoss Seam] - Re: Issues regarding integration testing using seam-gen

2007-10-14 Thread zzztimbo
I'm using Seam 2.0.0 CR2. I'm new to testng as well as Seam. I had first looked at the examples to create my testng.xml file. It just took me a little bit of time to figure out that the seam-gen created project was expecting a *Test.xml file. View the original post : http://www.jboss.com/ind