[JBoss-user] [EJB 3.0] - Re: crashing of jboss-4.0.4.GA+EJB3.0+jdk1.5

2006-06-29 Thread gmeroz
i get the same problem. did you find a solution?

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

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

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - load JSP file from DB

2006-04-03 Thread gmeroz
i want to be able to create a JSP file content dynamicly during runtime (by 
loading it from the DB). 
Is it possible? if so how?

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - create mail from a JSP content

2006-04-03 Thread gmeroz
i want to send an email which content is rendered by a JSP. In addition i want 
to change the  tag created by the JSP to another URL.

is it possible from a JSP to send it's result to a servlet that will convert 
the URL and send them by mail? 

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: java 5.0 features in JSP problem

2006-04-03 Thread gmeroz
The errors above says that the your JSP is compiled with a JDK version older 
than 5.0. it is a known Tomcat5.5 problem.

to solve it you need to:
1. delete 
${jboss.root}/server/default/deploy/jbossweb-tomcat55.sar/jasper-compiler-jdt.jar

2. copy ant.jar (from the latest ant release or any ant later than 1.5) to the 
jbossweb-tomcat55.sar directory

3. edit jbossweb-tomcat55.sar/conf/web.xml and add the following to the 
JspServlet entry:

  | 
  |compilerSourceVM
  |1.5
  | 
  | 
  |compilerTargetVM
  |1.5
  | 

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - how do i check if JBoss is started?

2006-03-27 Thread gmeroz
i mean completely started...

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: deploy mbean from code on runtime?

2006-03-18 Thread gmeroz
i used the following code to do this:

  | MBeanServer mbeanServer = MBeanServerLocator.locateJBoss();
  | mbeanServer.registerMBean(new MyMBeanImpl(), MyMBeanImpl.OBJECT_NAME);
  | 

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - deploy mbean from code on runtime?

2006-03-09 Thread gmeroz
is it possible?

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET] - Axis SSL java client

2006-03-06 Thread gmeroz
i use a java client to access a web service (JBoss.NET).
the following code work on JBoss 3.2.6. when i run it on JBoss 4.0.3, it fails 
(see exception stack trace).

when i access WS from IE, it work fine. any ideas?


  | Service service = new Service();
  | Callcall= (Call) service.createCall();
  | call.setUsername("application");
  | call.setPassword("BE2080");
  | call.setTargetEndpointAddress(wsURL);
  | call.setSOAPActionURI("EventAccess");
  | call.setOperationName("getEventNodeWithHistoryDataForChart");
  | call.addParameter("in0", XMLType.SOAP_LONG, ParameterMode.IN);
  | call.addParameter("in1", XMLType.SOAP_ARRAY, ParameterMode.IN);
  | call.addParameter("in2", XMLType.SOAP_ARRAY, ParameterMode.IN);
  | call.addParameter("in3", XMLType.SOAP_INT, ParameterMode.IN);
  | call.addParameter("in4", XMLType.SOAP_INT, ParameterMode.IN);
  | call.addParameter("in5", XMLType.SOAP_INT, ParameterMode.IN);
  | call.setReturnType(XMLType.SOAP_STRING);
  | call.invoke(new Object[]{671559401,new int[]{1,2,3,4,5,6,7,8,9},new 
int[]{4,0,0,0,0,0,0,0,2212},1,1,24});
  | String soapMsg = call.getResponseMessage().getSOAPPartAsString();
  | 

exception:
AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client
 faultSubcode: 
 faultString: sun.security.validator.ValidatorException: No trusted certificate 
found
 faultActor: 
 faultNode: 
 faultDetail: 
{http://xml.apache.org/axis/}stackTrace: 
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: 
No trusted certificate found
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:150)
at 
com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1476)
at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:174)
at com.sun.net.ssl.internal.ssl.Handshaker.fatalSE(Handshaker.java:168)
at 
com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:847)
at 
com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:106)
at 
com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:495)
at 
com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:433)
at 
com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:815)
at 
com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1025)
at 
com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1038)
at 
org.jboss.axis.components.net.JSSESocketFactory.create(JSSESocketFactory.java:247)
at 
org.jboss.axis.transport.http.HTTPSender.getSocket(HTTPSender.java:166)
at org.jboss.axis.transport.http.HTTPSender.invoke(HTTPSender.java:122)
at 
org.jboss.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:73)
at org.jboss.axis.SimpleChain.doVisiting(SimpleChain.java:160)
at org.jboss.axis.SimpleChain.invoke(SimpleChain.java:123)
at org.jboss.axis.client.AxisClient.invoke(AxisClient.java:190)
at org.jboss.axis.client.Call.invokeEngine(Call.java:3079)
at org.jboss.axis.client.Call.invoke(Call.java:3064)
at org.jboss.axis.client.Call.invoke(Call.java:2652)
at org.jboss.axis.client.Call.invoke(Call.java:2561)
at org.jboss.axis.client.Call.invokeInternal(Call.java:1982)
at org.jboss.axis.client.Call.invoke(Call.java:1920)
at com.bevents.infra.SSLTestClient.main(SSLTestClient.java:52)

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: jboss gives NoClassDefError for jdom/Text when accessed

2006-03-02 Thread gmeroz
did you add jdom.jar to your war/ear which you deploy on jboss?

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - upgrading to Axis 1.3 on Jboss 3.2.6?

2006-01-08 Thread gmeroz
is it possible to upgrade to Axis 1.3 on Jboss 3.2.6?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET] - integrating axis 1.3 into jboss 3.2.6

2006-01-03 Thread gmeroz
anyone made it yet?

i tried to replace the jars in server\all\deploy\jboss-net.sar, but i'm getting 
response with wrong characters

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - MBeanServerConnection - cann't invoke operation

2005-12-18 Thread gmeroz
Hi,
i'm trying to use the RMIAdapter for invoking mbeans operation from a java 
client.

i can not invoke the operation "showAll" of SystemPropertiesService.

i did manage to get the list of operation from this mbean.

this is the code i use:

  | Hashtable props = new Hashtable();
  | props.put(InitialContext.PROVIDER_URL, "jnp://localhost:1099");
  | props.put(InitialContext.INITIAL_CONTEXT_FACTORY, 
"org.jnp.interfaces.NamingContextFactory");
  | MBeanServerConnection mBeanConnection (MBeanServerConnection)new 
InitialContext(props).lookup("jmx/invoker/RMIAdaptor");
  | 
  | mBeanConnection.invoke(new 
ObjectName("jboss:name=SystemProperties,type=Service"),"showAll",new 
Object[0],new String[0])
  | 

what's wrong here?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - using user login password in a session bean

2005-07-05 Thread gmeroz
is it possible to get the user login password in a session bean?
i'm using basic authentication...

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: passing password to LDAP server

2005-07-04 Thread gmeroz
i need it in a session bean - there's no HTTP header...

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

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


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - checking login method (isUsingLDAP() method)

2005-04-17 Thread gmeroz
i want to be able to run my application in 2 modes:
1. production - using LDAP.
2. presentations/development using the UsersRolesLoginModule.

is there a way to know from a servlet/session bean which one is used?

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: LDAP & JBoss outside the domain

2005-04-17 Thread gmeroz

   true
   com.sun.jndi.ldap.LdapCtxFactor
   ldap://ldaphost.bevents.local:389/
   simple
   false
   @bevents.local
   sAMAccountName
   memberOf
   true
   name
   ou=App_Users,dc=bevents,dc=local

   

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: JBoss + Active Directory

2005-04-07 Thread gmeroz
update login-config.xml with the following:


   
   com.sun.jndi.ldap.LdapCtxFactor
   ldap://107.12.42.12.test.com:389/
   simple

   simple
   false
   @test.com
   sAMAccountName
   memberOf
   true
   name
   ou=QA_Users,dc=test,dc=com

   


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: LDAP & JBoss outside the domain

2005-04-07 Thread gmeroz
i forgot to say i'm using ActiveDirectory

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - LDAP & JBoss outside the domain

2005-04-07 Thread gmeroz
Hi,
i installed JBoss with the same configuration on 2 computers (both in the same 
network one of them is outside the domain) And i'm using LDAP for 
authentication.

from some reason, i can not login into the applicaiton on the machine which is 
not in the domain.

does anyone know how to fix it?


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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - passing password to LDAP server

2005-02-22 Thread gmeroz
In my application, i'm creating a module for user management where i need to 
add/update/getAll users in the LDAP server.

i'm using the same LDAP for authentication as well.

when i connect the LDAP for these operations, i want to use the same 
username/password which were used for login. (i'll enable access to this module 
only to users that have the right role...)

i'm using basic authentication.

the problem is that in my application i can not get the user's password. i get 
only the principal.

is there a way to pass on the same password used for login?

regards
Gil

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - update LDAP users through JBoss

2005-02-17 Thread gmeroz
Hi,
i need to create a web page for my application administrators so they could 
add/update users. i'm using LDAP for security.

how do i aproach this issue?

regards,
Gil

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - securing servlets & webservices

2005-02-03 Thread gmeroz
Hi,
i have an application with secured webservice. (using BASIC authentication)

i want to add a servlet which should also be secured. 

i defined the webservices security constraints in the 
jboss-3.2.6\server\be-1\deploy\jboss-net.sar\jboss-net.war\WEB-INF\web.xml.

if i do the same in my application's web.xml i'll get the login popup twice. 

is there a way to share the security constraints between both?

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: problem connecting to active directory

2005-02-02 Thread gmeroz
great! it worked. 
thanks a lot.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: problem connecting to active directory

2005-02-02 Thread gmeroz
great! it worked. 
thanks for the help.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: problem connecting to active directory

2005-02-02 Thread gmeroz
If i have users only defined in the People ou (i'm ignoring the Users ou for 
now) and roles are defined in the Roles ou:

i'll define the "rolesCtxDN" as the ou for users ('People'). But how do i 
define that the ou for the roles is 'Roles'?



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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: problem connecting to active directory

2005-02-01 Thread gmeroz
thank you, this was the problem.

i defined roles and i manage to connect to the LDAP, but only as long as the 
users and the roles (groups) are in the same ou (with the same login-config 
above).

if i change it to 
ou=Roles,dc=bevents,dc=local

it's not working. i didn't find any documentation on how to define it to use 
roles.

i want to have 2 organization units: Users & Roles. 





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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: problem connecting to active directory

2005-02-01 Thread gmeroz
i didn't define any security roles in web.xml & jboss.xml...

my login-config entry is:
ldap://pdcsrv01.bevents.local:389/
simple
false
@bevents.local
sAMAccountName
memberOf
true
name
ou=Users,dc=bevents,dc=local


i also tried to login with administrator and failed.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: problem connecting to active directory

2005-02-01 Thread gmeroz
thanks,
i tried this configuration and i get error-403 when i try to login.

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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - problem connecting to active directory

2005-01-31 Thread gmeroz
Hi,
i'm trying to use LDAP on active directory from JBoss3.2.6.

can anyone send me a working login-config.xml entry.

i'm using ActiveDirectory on Win 2000 with the following schema:

myDomain (domain)
  |
  |-People (organization unit)
  ||
  ||-user1 (User)
  |
  |-Roles
  |...|
  |...|-RegularUsers (Group)
  |.|-user1 (member)
  |.|-tester (member)
  |
  |-Users
  ||
  ||-tester (User)

i could not succedd connecting with or with roles

please help
Gil


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

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


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user