[JBoss-user] [Beginners Corner] - Re: Hosting providers?

2006-03-20 Thread wiley173
Greetings, Here is a somewhat good list with ratings... http://www.servlets.com/isps/servlet/ISPViewAll You should just get a cheap dedicated server to learn on... your going to have a lot of headaches ... -w[/url] View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[JBoss-user] [Beginners Corner] - Re: Simple Web Service with JBoss

2006-03-20 Thread wiley173
Greetings, Class Not Found: Your mappings are wrong in your web.xml file. Are you writing the web.xml yourself or is Netbeans generating it somehow and you haven't imported your struts jars into the project? If you do a search for the FIBO APPLICATION tutorial you can use that example with ecl

[JBoss-user] [Beginners Corner] - Jboss Hosting Services

2005-11-28 Thread wiley173
Anybody know of a good place to host your j2ee apps. I've been to a couple of really crappy places that claim to support jboss... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3909439#3909439 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[JBoss-user] [Security & JAAS/JBoss] - Re: Form Authentication

2005-10-31 Thread wiley173
Right but now your using form authentication There is no EchoUser using BASIC authentication ... now you have to put them in the /default/conf directory for FORM authentication to work correctly ... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904509

[JBoss-user] [Security & JAAS/JBoss] - Re: Form Authentication

2005-10-31 Thread wiley173
oops I meant ... there is no EchoUser using FORM authentication View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904510#3904510 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904510 ---

[JBoss-user] [Security & JAAS/JBoss] - Re: Form Authentication

2005-10-31 Thread wiley173
I'm not an expert here either but are your users.properties and roles.properties files in the /default/conf directory ? And is EchoUser in them ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904474#3904474 Reply to the post : http://www.jboss.com/index.ht

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-28 Thread wiley173
Howdy , thanks for the reply. After my latest post a lightbulb went off on what I really need to do to get this working , or at least my next learning experience ... Basically it's a really simple content management system where there are /admins and /members based on the "budget" I only

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-28 Thread wiley173
When I use my little security system I connect to the DefaultDS ... then in my login.class I ... | try{ | Class.forName("com.mysql.jdbc.Driver").newInstance(); | con = DriverManager.getConnection( | "jdbc:mysql://localhost/" + dat

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-28 Thread wiley173
Greetings, That's what I'm using and what I've been working with. I've got my own athentication system but I think the correct way is to use yours but I can't figure out how to dynamically connect to a jndi name based on the login name. I don't want 5 apps running with 5 databases, I'd rather ha

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-26 Thread wiley173
could someone please help me out here on what class in the source is taking in a "?" so maybe I can figure this dumb question out ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3903693#3903693 Reply to the post : http://www.jboss.com/index.html?module=b

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-26 Thread wiley173
Object tmp = options.get("principalsQuery"); in regards to this code in the initialize method of the DataBaseLogin class is Object tmp recieving "select Password from Principals where PrincipalID=?" or "select Password from Principals where PrincipalID=myLoginIentered" ? View the origina

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-26 Thread wiley173
I guess a better way to put would be when I pass over something like this ... ? the ? is just a "?" and not my login name ... I'm just trying to figure out how it's getting the login name to add to the sql statements ... View the original post : http://www.jboss.com/index.html?module=bb&op=v

[JBoss-user] [Security & JAAS/JBoss] - quick question on module-options

2005-10-26 Thread wiley173
Greetings, Can I pass over my username to my Login module using this syntax in my login-conf.xml? ? Isn't that how it's getting the username ? It doesn't seem to be working for me I'm sure someone here knows why ... please help me out in understanding how this process is working... thank-yo

[JBoss-user] [Security & JAAS/JBoss] - Re: Pass another Variable besides j_username j_password

2005-10-25 Thread wiley173
okay bad idea ... I'll just do this ... | | something like select where username = ? | | I think I need to read up on how j_security_check actually works ... adios ~ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3903351#3903351 Reply t

[JBoss-user] [Security & JAAS/JBoss] - Pass another Variable besides j_username j_password

2005-10-25 Thread wiley173
Howdy, Is it possible to pass another variable from your login form besides j_username and password. So in the login-conf.xml I'd have | ? | and in my extended custom login class I'd have in the initialize method .. | newVar = (String)options.get("otherVar"); | Is this possible, i

[JBoss-user] [Security & JAAS/JBoss] - Re: simple example help ?

2005-10-23 Thread wiley173
My simple example makes total sense now I just had to make sure users.properties and roles.properties were in the default/conf directory use.. /*.jsp and set the welcome file to my secure content which is automatically redirected to the login.html ... if I use /* it authenticates ev

[JBoss-user] [Security & JAAS/JBoss] - url-pattern tag in web.xml security constraint

2005-10-22 Thread wiley173
Okay, Now I've finally got the login.html file coming up in the app root with the following in my web.xml I took a look at the jmx-console.war and how that was setup and ... | | |members |The Members Application |/* |GET |POST

[JBoss-user] [Security & JAAS/JBoss] - Re: simple example help ?

2005-10-22 Thread wiley173
Hello, thanks for the info I used your example but I'm not understanding why you don't have the realm here... "members" in my case and I put this in the login-config ... but I don't see how it can see it with this its still looking for a properties file when I'm using a database ? |

[JBoss-user] [Security & JAAS/JBoss] - simple example help ?

2005-10-21 Thread wiley173
Hello ~ I'm using Jboss 3-2-6 ... I've been through the "Integrate security infrastructures with JBossSX" and forums and websites ... JAAS on sun I've got this in my login-config.xml | | | | java:/DefaultDS | | se

[JBoss-user] [Installation, Configuration & Deployment] - Re: log4j help required

2005-10-18 Thread wiley173
I learned this from the Orielly Developer Notebook very helpfull by the way in the log4j I made an entry for my app ... | | | | | | | | | | | | | | | | | |

[JBoss-user] [Beginners Corner] - Re: Securing Jboss - Class Loading in jboss-service.xml

2005-10-18 Thread wiley173
by the way I didn't mean you had a dumb idea I just thought I screwed up something again ... -adios View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3901923#3901923 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3901

[JBoss-user] [Beginners Corner] - Re: Securing Jboss - Class Loading in jboss-service.xml

2005-10-18 Thread wiley173
You are correct of course ... and thanks for the book and the response. That worked beautifully and I was able to comment out the entire class loader and still deploy my ejb. I removed the dependency as you suggested. Still learning thanks again ! View the original post : http://www.j

[JBoss-user] [Beginners Corner] - Developer Notebook Orielly

2005-10-18 Thread wiley173
Okay, dumb Idea. As soon as you disable the class download service or ejb deployer your ejb's stop working. page 143 Chapter 9: so how do I stop external clients from accessing http://:8083/login-config.xml or worse yet http::8083/props/jmx-console-users.properties without disabling the corre

[JBoss-user] [Beginners Corner] - Re: Securing Jboss - Class Loading in jboss-service.xml

2005-10-18 Thread wiley173
I got rid of the Fibo.ear to stop any confusion in my question this is the error with nothing deployed ... | 12:43:10,953 ERROR [URLDeploymentScanner] (main) Incomplete Deployment listing: | MBeans waiting for other MBeans: | ObjectName: jboss.ejb:service=EJBDeployer | state: CONF

[JBoss-user] [Beginners Corner] - Securing Jboss - Class Loading in jboss-service.xml

2005-10-18 Thread wiley173
Hello, I'm using jboss-3.2.6 ~ I commented out the portion for class loading to tighten up the security of the server in the /server/default/conf/jboss-service.xml - I don't need this service ... | | | | My question is how can I stop this from being called when I s

[JBoss-user] [Beginners Corner] - Re: The requested resource not available. Please help!

2005-10-18 Thread wiley173
hello, I haven't done the pet store thing but I usually get those kinds of errors when my web.xml or jboss-web.xml files are misconfigured some how in the project. ~ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3901825#3901825 Reply to the post : http://

[JBoss-user] [Beginners Corner] - Re: Problem with JSP, import package

2005-09-19 Thread wiley173
you have to have a reference to the lib in your descriptor also View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3895704#3895704 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3895704 -

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Problem with JSP import

2005-09-19 Thread wiley173
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=69461 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3895702#3895702 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3895702 --

[JBoss-user] [Beginners Corner] - I wish I had this book when I started.

2005-09-17 Thread wiley173
I recommend this book to anyone just starting out with jboss. JBOSS A Developers Notebook by Norman Richards & Sam Griffith, Jr. O'REILLY View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3895317#3895317 Reply to the post : http://www.jboss.com/index.html?mo

[JBoss-user] [Beginners Corner] - Re: Problem with JSP, import package

2005-09-17 Thread wiley173
I'm not a total expert here but I'd start with this first. ~ package org.apache.commons.io does not exist View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3895316#3895316 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[JBoss-user] [Beginners Corner] - Re: Beginner in the Corner - Custom Login Module 3.2.6

2005-06-13 Thread wiley173
it's in the jbosssx.jar. :O} thanks ! No problem... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3881314#3881314 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3881314 --

[JBoss-user] [Beginners Corner] - Beginner in the Corner - Custom Login Module 3.2.6

2005-06-13 Thread wiley173
Hello, Where exactly is the org.jboss.security.auth.spi.DatabaseServerLoginModule ? I'm trying to create a custom login module in my webapp using eclipse and when I extend or import the ( D S L M ) of course it can't find it okay. So I tried to find it ??? I can't find it anywhere, I'm sure thi

[JBoss-user] [Beginners Corner] - Re: import a class into jsp error - quick question ...

2005-04-07 Thread wiley173
Well, my xdoclet and packaging were really screwed up to say the least. I went back into the JBOSS IDE Quick Start Guide and modeled my app after the tutoria and found my error. After figuring that out it works beautifully. I still can't figure out why I don't have to add anything to the configu

[JBoss-user] [Beginners Corner] - Re: import a class into jsp error - quick question ...

2005-04-07 Thread wiley173
Let me just say I'm trying to understand the file system on jboss coming from tomcat. I have this simple application working great on tomcat but when I pack it up into an ear file it has a problem with ONLY import com.** . What am I not getting, I haven't put in any ejb's yet I'm just trying to

[JBoss-user] [Beginners Corner] - import a class into jsp error - quick question ...

2005-04-07 Thread wiley173
I can import org.gjt.mm.mysql.* into my jsp page but I always get "error package not found" when I try and import com.mypackage.* ... They are both setup the same way ? Will jboss only understand org.** thanks... in advance View the original post : http://www.jboss.org/index.html?module=bb&op

[JBoss-user] [HTTPD, Servlets & JSP] - import statement in .jsp fails --jboss-3.2.6 -- Eclipse 3.0.

2005-04-04 Thread wiley173
Hello I trying to import a class via ... | <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.* ,com.mypackage.*, java.util.ArrayList" %> | from a jsp file. com.mypackage.* gives me a "package does not exist error". I have other packages like another.

[JBoss-user] [HTTPD, Servlets & JSP] - Re: lost session attributes

2005-01-12 Thread wiley173
Hello, Have you tried just response redirect instead of the dispatcher? I had some simliliar issues when I tried to keep two applications talking to each other on the same session ... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861821#3861821 Reply to th

[JBoss-user] [Beginners Corner] - Re: How Debug an error?

2005-01-12 Thread wiley173
I'm a newbie too and it looks like this is what you need to focus on... | 15:16:44,691 ERROR [EntityContainer] Starting failed jboss.j2ee:jndiName=ejb/Cabin,service=EJB | java.lang.ClassCastException: org.jnp.interfaces.NamingContext | | MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:

[JBoss-user] [HTTPD, Servlets & JSP] - Re: another servlet Error 404 question

2005-01-07 Thread wiley173
Okee Dokee, I just put this ... JkUriSet worker ajp13:localhost:8009 Order Deny,Allow #Deny from all Allow from all In my virtual host tag ... DOH! thanks ... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&

[JBoss-user] [HTTPD, Servlets & JSP] - another servlet Error 404 question

2005-01-07 Thread wiley173
Hello, I'm sure this question has been asked alot but here goes ... I can't seem to find the answer. When I go here http://www.mysite.xyz:8080/shoppingCart/Cart Everything is great. When I go here http://www.mysite.xyz/shoppingCart/Cart 404 Error not found The thing is http://www.mysite.xyz/

[JBoss-user] [HTTPD, Servlets & JSP] - Re: virtual hosts / jboss-web.xml

2005-01-04 Thread wiley173
That did the trick. Thank you View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860697#3860697 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3860697 --- The SF.Net ema

[JBoss-user] [HTTPD, Servlets & JSP] - virtual hosts / jboss-web.xml

2004-12-29 Thread wiley173
I asked this question in the beginner corner, no luck I think I had it in the wrong place so please forgive me... I still can't seem to figure out how to get myste.com AND www.mysite.com to work??? This is my jboss-web.xml ... | | | | www.mysite. | mysite. | |

[JBoss-user] [Beginners Corner] - Re: jboss-web.xml and virtual-hosts

2004-12-28 Thread wiley173
This is what my jboss-web.xml looks like... www.mysite.tld mysite.tld I've also tried www.mysite.tld mysite.tld I can't seem to get anything to work, maybe I should use mod-rewrite... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860045#3860045

[JBoss-user] [Beginners Corner] - Re: jboss-web.xml and virtual-hosts

2004-12-28 Thread wiley173
Hello, thanks for the help. I tried that but it does not work. Does it work for you? thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860043#3860043 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3860043 --

[JBoss-user] [Beginners Corner] - jboss-web.xml and virtual-hosts

2004-12-26 Thread wiley173
This works great www.mysite.com But I can't get jboss to see justmysite.com... I've set an alias in server.xml mysite.com I tried adding another vhost entry in jboss-web.xml and also an alias and that doesn't work either ??? Can anyone give me a clue please ? xx Newbi

[JBoss-user] [Beginners Corner] - Re: Can you change the root context of ROOT.war ?

2004-12-26 Thread wiley173
I think I found something out. You don't want to do this. Maybe when I've graduated from the beginners corner. When you make an application the "/" it over-rides the root context of the ROOT.war when you are using name based vhosts like I am - "so it seems". If I'm wrong about that I'm wrong but

[JBoss-user] [Beginners Corner] - Can you change the root context of ROOT.war ?

2004-12-25 Thread wiley173
Hello, Where can I change the "ctxPath" of the ROOT.war from / to /somethingElse/ or can I ? The reason I am asking is this. I finally figured out how to get this working... http://www.mysite.com/APP/ to http://www.mysite.com By adding the jboss-web.xml with context-root parmater but when I

[JBoss-user] [Beginners Corner] - Re: Symlinks in the deploy directory?

2004-12-24 Thread wiley173
Yeah, I found that one out after starting jboss and watching the output for an hour -thanks happy christmas ! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859866#3859866 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p

[JBoss-user] [Beginners Corner] - Re: Symlinks in the deploy directory?

2004-12-23 Thread wiley173
I moved the .war outside of my "jboss" user directory wiley173 and it went away ... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859802#3859802 Reply to the post : http://www.jboss.org/index.html?module=bb&op=postin

[JBoss-user] [Beginners Corner] - spurious error

2004-12-23 Thread wiley173
So this error should just be ignored, is there a way to get rid of it ? I edited the jboss-service.xml instead of symlinks... | | deploy/, | file:/home/wiley173/ | | my hellowWorld.war seems to work fine but this error ??? | 13:12:32,386 WARN

[JBoss-user] [Beginners Corner] - Re: JBoss 3.2.6 / MySQL / redhat question

2004-12-21 Thread wiley173
ootstrap Environment JBOSS_HOME: /home/wiley173/jboss-3.2.6 JAVA: /usr/java/jdk/bin/java JAVA_OPTS: -server -Dprogram.name=run.sh CLASSPATH: /home/wiley173/jboss-3.2.6/bin/run.jar:/usr/java/jdk/lib/tools.jar =

[JBoss-user] [Beginners Corner] - Re: JBoss 3.2.6 / MySQL / redhat question

2004-12-21 Thread wiley173
I failed to mention I put the j connector in /server/default/lib where it should be View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859521#3859521 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3859521

[JBoss-user] [Beginners Corner] - JBoss 3.2.6 / MySQL / redhat question

2004-12-21 Thread wiley173
password user root and my jboss user wiley173 have access to the test db then I move mysql-jdbc2-service.xml from the /docs/examples/jms directory to /server/default/deploy/jms It looks like this... jboss.j

[JBoss-user] [Beginners Corner] - securing the tomcat status servlet

2004-12-20 Thread wiley173
Just in case any other newbie wants to know. I commented out tomcat status in the html of the default page and renamed the status servlet in the web.xml of the ROOT.war to something only I know. I couldn't delete the ROOT.war becuase I want to use it and I couldn't secure it because I basically

[JBoss-user] [Beginners Corner] - Re: Please help with ZEN of Jboss for dedicated newbie/stude

2004-12-19 Thread wiley173
Yeah, I read that. Merry Christmas and thanks so much for the help View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859214#3859214 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3859214 --

[JBoss-user] [Beginners Corner] - Re: Please help with ZEN of Jboss for dedicated newbie/stude

2004-12-19 Thread wiley173
Why don't you wake up and read my last post. "Where do I begin to find information on securing this. I've been on google for hours "secure status servlet" "status secure jboss"??? Do I have to secure it myself from scratch? Or is there something already there to help like in the case of th

[JBoss-user] [Beginners Corner] - Re: Please help with ZEN of Jboss for dedicated newbie/stude

2004-12-19 Thread wiley173
I can't remove the .sar because I'm using tomcat. How do I secure it? Where do I begin to find information on securing this. I've been on google for hours "secure status servlet" "status secure jboss"??? Do I have to secure it myself from scratch? Or is there something already there to help

[JBoss-user] [Beginners Corner] - Please help with ZEN of Jboss for dedicated newbie/student

2004-12-17 Thread wiley173
Hello sir/madam, I'm getting there with my default install of jboss 3.2.6 . So far my posts have gone unasnwered and this has actually helped me figure out for myself the problems therefore making me stronger in knowledge but I cannot seem to figure one thing now and have hit a brick wall. I'v

[JBoss-user] [Installation & Configuration] - JBOSS vs. Resin and Apache2

2004-12-16 Thread wiley173
Hello, I just want to make sure I am correct in this obsveration and would really appreciate any feedback. When you set up .jsp pages or servlets and use resin as your container you can put your .jps pages and servlets ANYWHERE on the server, just have apache send the requests to resin and set

[JBoss-user] [Beginners Corner] - JAVA_HOME is now found but JAVA_HOME is set correctly ???

2004-12-12 Thread wiley173
not a JRE. = JBoss Bootstrap Environment JBOSS_HOME: /home/wiley173/jboss-3.2.6 JAVA: $/usr/java/jdk/bin/java JAVA_OPTS: -Dprogram.name=run.sh CLASSPATH: /home/wiley173/jboss-3.2.6/bin/run.jar:$/usr/java/jdk/lib

[JBoss-user] [Beginners Corner] - error when starting jboss on redhat linux

2004-12-08 Thread wiley173
Everything seems to go just peachy until this error when I startup jboss. The jboss-service.xml file is there but it can't find it for some reason? Do you think it is a permission problem? thanks in advace 15:42:04,611 INFO [Server] Core system initialized 15:42:04,722 ERROR [MainDeployer] Cou