Tomcat 5.0.x and IIS 5

2005-04-06 Thread SARMIENTO Claudia COGA
Hi all:
Could you help me to found a connector and the instructions to make iis and
tomcat work together?, i'm looking into the jakarta web and only found this
page:
http://jakarta.apache.org/tomcat/connectors-doc-archive/jk2/jk/iishowto.html
i don't know if there is a more recent document about this


Thanks!
Claudia

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat5 java.lang.OutOfMemoryError

2005-01-10 Thread SARMIENTO Claudia COGA
Hello all:
I have problems with memory in Tomcat, this happen when the servlet try to
forward the result jsp only if the result is too big (a set of rows in a
period date)
Th bean doesn't have problems, but the servlet yes, so i think i need to
change my configuration to set more memory at startup. (Actually is the
default)

I work in Tomcat 5.0.25 under W2000 with tomcat as a service, i read that i
have to re-install tomcat
(http://marc.theaimsgroup.com/?l=tomcat-userm=104331482014538w=2) the
notes is for tomcat 4, is the same for tomcat 5.0?

Thanks!
Claudia

PD:

This is the exactly error:

2005-01-10 11:26:42 StandardWrapperValve[invoker]: Servlet.service() para
servlet invoker lanzó excepción
java.lang.OutOfMemoryError


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat and LDAP

2004-09-22 Thread SARMIENTO Claudia COGA
Hello all:

I have a question, i'm new in JNDIRealm Configuration, actually i'm
connecting succesfully with my LDAP server with BASIC authentication, i read
that BASIC authentication is valid until user closes the browser, how i can
re-login? if i'm not using login.jsp, i only set in my web.xml this:

  security-constraint
web-resource-collection
  web-resource-nameIntranet/web-resource-name
  url-pattern/*/url-pattern
  url-pattern/servlet/*/url-pattern
  http-methodGET/http-method 
  http-methodPOST/http-method
/web-resource-collection
auth-constraint
role-nameCN/role-name
role-name*/role-name
/auth-constraint
  /security-constraint
  login-config
auth-methodBASIC/auth-method
realm-nameMy Secure Realm/realm-name
  /login-config


Best Regards
Claudia

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



JNDIRealm Problem

2004-09-15 Thread SARMIENTO Claudia COGA
Hello:
I have a problem with my JNDIRealm configuration in Tomcat 5.
I'm using the bind mode for authentication
My company have Microsoft Active Directory with two ou within ou=People
I configured the server.xml to connect to my ldap sucessfully but only to
one OU, i tried to put only ou=People in UserBase to search in both sub OU
but i can't connect
This i how i have server.xml:
In this case i can connect if the user is in ou=TGP, if the user is in
ou=COGA i can't

  Realm className=org.apache.catalina.realm.JNDIRealm debug=99
 connectionURL=ldap://10.158.1.4:389;
 
userPattern=cn={0},ou=TGP,ou=People,ou=Public,dc=reltsa,dc=coga,dc=com
 userSubtree= true
 digest=MD5
 roleBase=ou=People,ou=Public,dc=reltsa,dc=coga,dc=com
 roleName=cn
 roleSubtree=true
 roleSearch=(uniqueMember={0})/


So i tried this:
  Realm className=org.apache.catalina.realm.JNDIRealm debug=99
 connectionURL=ldap://10.158.1.4:389;
 userBase=ou=People,ou=Public,dc=reltsa,dc=coga,dc=com
 userSearch=(uid={0})
 userSubtree= true
 digest=MD5
 roleBase=ou=People,ou=Public,dc=reltsa,dc=coga,dc=com
 roleName=cn
 roleSubtree=true
 roleSearch=(uniqueMember={0})/
but don't work
Any ideas?

Thanks a lot
Claudia

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]