[JBoss-user] [Security & JAAS/JBoss] - Re: FORM BASED LOGIN MODULE FROM DATABASE HELP NEEDED

2005-07-09 Thread ralluri
I've also successsfully implemented form based login using database. However, 
I'm trying to find a way to log the user out so that the session is invalid and 
other user can login. Can someone please suggest a way to do it ?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884282#3884282

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884282


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal and MS SQL Server

2005-07-09 Thread jayant123
Thanks. I will get back to you after I try what you have suggested.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884281#3884281

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884281


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Remote Access to java:comp/env/security

2005-07-09 Thread uwejanner
I use an external Tomcat instance (because this eases development of the web 
tier alot) to call into ejb's in jboss. authentication within tomcat has to be 
done with the JBossSecurityMgrRealm, but this needs access to the jboss 
security context (under java:comp/env/security); but java:comp is not visible 
for remote clients ("NameNotFoundException: comp not bound");

i found the following post from scott stark from 2001:
"The default bundled JBossSecurityMgrRealm integrates based on a special JNDI 
context(java:comp/env/security). This could be remote enabled so that an 
external Tomcat instance could use the JBossSecurityMgrRealm..." 
but HOW can i 'remote enable' this entry?

thanks in advance for any help, uwe.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884279#3884279

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884279


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - EJB3Trail -- More detailed please!!

2005-07-09 Thread jbossChecker
@JBoss-Group/ JBoss-Forum-Admins and all other folks!

Thank Jboss-EJB3Trail we now have a great tutorial for EJB 3.0, but sometimes 
the tutorials are not detailed enough!

For example, you can learn, how to create and deploy stateless session beans in 
the hike under EJB3Trail/serviceobjects/slsb/index.html ... but there is only 
explained how the axample of the tutorial is built on.

To me, myself, I would rather know how I can create a simple stateless session 
bean on jboss 4.0.3 with just one bean class plus its interface, just one 
little jsp file to invoke that bean and the build.xml (for ANT) to make the ear 
file of the whole stuff.

The problem of the EJB3Trail tutorial is, that it only explains the whole stuff 
of the tutorial, but the tutorial is already too complex to be able to see the 
small steps taken to come so far! (for example to make just  a little slsb and 
the jsp client)

I would be glad to, if the jboss experts would make the tutorials a little bit 
more detailed, as explained above.

Anyways, could someone please give me an example for building and deploying a 
small ejb 3.0 (.ear) with just one slsb(pojo)+interface(poji)+ build.xml+ jsp 
client?

Thanks in advance!

 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884278#3884278

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884278


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal and MS SQL Server

2005-07-09 Thread bcarothers
I count 5 exceptions in that stack trace.  

I believe that the first 2 ("java.sql.SQLException: Table already exists: ...") 
are benign and a side effect of JBoss AS trying to auto-configure your database 
over and over.  I get the same exceptions every time that I start JBoss.

The third exception ("org.apache.slide.structure.ObjectNotFoundException: ...") 
is something related to JBoss CMS, but I don't use that, so I can't help you.  
I've taken to using Magnolia, but I find myself mostly invoking JackRabbit 
directly.

The fourth exception ("java.lang.NullPointerException ") is the only one that 
might be related to your choice of database.  Looking at the Hibernate source 
code, it looks like your Hibernate dialect isn't getting set correctly.  I'm 
not 100% sure what the right way to fix this is (they added some coolio install 
functionality in one of the last few releases), but 
jboss-portal.sar/conf/hibernate/hibernate.cfg.xml should contain this line:

org.hibernate.dialect.SQLServerDialect

If it does not, please edit this line.  If you find that future builds somehow 
overwrite this or you already have this line set, let me know and we'll figure 
out a Plan B.  

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884277#3884277

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884277


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Wiki

2005-07-09 Thread [EMAIL PROTECTED]
On JBoss Labs, we use an integrated version of JSPWiki.

You can see it in action at http://labs.jboss.com .

Also, you can check out the source for it at our source repository via 
Subversion.  The wiki implementation is under portal-extensions/forge-jspwiki.  

Cheers,

Damon
---
[EMAIL PROTECTED]

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884274#3884274

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884274


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Wiki

2005-07-09 Thread frapas
Hi,
i'm interested in JBP but I will need an integrated WIKI.


What's about the Wiki feature ?
It will be included in JBP or not ?

What is the Wiki engine actually used by wiki.jboss.org ?
Is it integrated with JBP or in other JBOSS products ?

thanks
Francesco Pasqualini

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884269#3884269

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884269


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Using ${jboss.server.home.dir} in my application's log4j con

2005-07-09 Thread nickpiper
I am trying to adjust the configuration of a closed source application to allow 
it to run inside several copies of JBoss on the same machine.

This means the logging has to go to different places for each copy.



Seems like a good way to do this, only it doesn't work for me :-( No log is 
created, and I can't find an error message anywhere too. To check the property 
can be replaced, I tried this:



and set the File to just /tmp/mcs.log.

The log entries show that the bind.address is replaced with 0.0.0.0 as 
expected, and home.dir is replaced with /opt/jboss-4.0.1sp1/server/caps as 
expected.

Maybe the File param doesn't go through the substitution for some reason? So I 
tried putting jboss.bind.address in the filename of the log, and the log saved 
does contain 0.0.0.0 in the filename.

I saw jboss.server.home.dir used in the JBoss global log4j configuration, so I 
know it *should* work. This has me very confused!

Permissions are ok, when I use:



Which is what the first version should be expanded to, it works fine.

I'd be greatful for any suggestions!

Thanks,

 Nick

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884267#3884267

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884267


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Advanced Documentation] - Re: EAR that has SAR, EJB.jar, common.jar and WAR

2005-07-09 Thread jthomasrose
TYPO in previous post, I meant: EAR/SAR/META-INF/MANIFEST.MF of course.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884266#3884266

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884266


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Advanced Documentation] - Re: EAR that has SAR, EJB.jar, common.jar and WAR

2005-07-09 Thread jthomasrose
I have a similar issue in 4.0.2, however, my EAR/SAR can see the libs if the 
class-path  referecne is in EAR/SAR/META_INF/MANIFEST.MF  I referenceed them 
./.jar where .jar is in the root of the EAR.  

I cannot get this work for WAR, even with the class-path in the the MANIFEST 
for the WAR.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884265#3884265

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884265


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Advanced Documentation] - Re: class loader problem: can't find class in APP-INF/lib

2005-07-09 Thread jthomasrose
I have the same problem. I could not even get the war/WEB-INF/MANIFEST.MF 
class-path entries to find the jars in the parent EAR.  

The WIKI suggest this is suppose to work, however I have had no luck at all. 
http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration. After 
ensuring the suggested service configuration for isolated classloader is 
correct, still no luck with it.  If you solved the problem I would be 
interested in what  you did.

I have tried 4.0.2, and 4.0.3RC1 with the same results.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884264#3884264

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884264


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation & Configuration] - Re: server.log gets deleted every time jboss server starts u

2005-07-09 Thread darranl
Logging is configured using Log4j, the configuration file is located in 
{jboss.home}/server/default/conf (Assuming you are using default configuration).

Within the file you should see that the FILE appender has the 'Append' 
parameter set to false, you need to change this to true.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884263#3884263

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884263


---
This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening
July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual
core and dual graphics technology at this free one hour event hosted by HP,
AMD, and NVIDIA.  To register visit http://www.hp.com/go/dualwebinar
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user