load-on-startup in web.xml

2002-07-17 Thread staginfo-ar

Hi,

What's the use of the load-on-startup element in web.xml?

Thanks.

Jc


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




TOMCAT on Domino server?

2002-07-16 Thread staginfo-ar

Hi,

I want to execute servletjsp on a domino server. How can I do that?

Thanks

Jean-Christophe



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




Réf. : ISAPI Redirector for Tomcat 4

2002-07-10 Thread staginfo-ar


ISAPI redirector doesn't rely on tomcat version. You can use
isapi_redirector.dll of tomcat3.3 with tomcat 4.0.4.
The Setup of this redirector is the same as the setup for tomcat3.3.
For more explications, go to www.
members.ozemail.com.au/~lampante/howto/tomcat/iisnt/

garsJC
France


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




missing return statement error?!??!

2002-07-09 Thread staginfo-ar

Hi,
This is not a tomcat's question. I've made a class with a find method.
When I compile it with ANT, I 've a missing return statement error whereas
i've specified  return type.
Here is the code :


public String [] find(String mail) {
String system= qs44a6005;
String collectionName=JC;
String Table=T_Client;
String[] Tab=null;

// Obtenir les paramètres de la requête.
Connection connection=null;


  try{
// Chargement du driver JDBC pour AS/400.

DriverManager.registerDriver(
new com.ibm.as400.access.AS400JDBCDriver());

// Obtient une connection à la database.
connection = DriverManager.getConnection (jdbc:as400:// +
system+ / + collectionName,PCS,PCS);
Statement lireTable = connection.createStatement ();
ResultSet rs1= lireTable.executeQuery(SELECT
NOM,CODE,TEL,PORT,PASS FROM +collectionName+.+Table+ WHERE MAIL='
+mail+');
if(rs1.next()){
  // on récupére les membres du resultSet
  Tab[0]=rs1.getString(NOM);
  Tab[1]=rs1.getString(CODE);
  Tab[2]=rs1.getString(TEL);
  Tab[3]=rs1.getString(PORT);
  Tab[4]=rs1.getString(PSWD);

}

System.out.println(fin test existe);
lireTable.close();
connection.close ();
return Tab;

  }
  catch(Exception e){
System.out.println ();
System.out.println (ERROR:  + e.getMessage());
  }


}


Thanks.

garsJC


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




Réf. : Re: missing return statement error?!??!

2002-07-09 Thread staginfo-ar


Thanks everyone!
I think i need some coffee



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




use a servlet in TOMCAT on JWSDP?

2002-07-09 Thread staginfo-ar

Hi,
i'm developping a web service named first with JWSDP-1_0. I've a client
servlet which was compiled by ANT. How can I launch this servlet? How can I
launch this servlet from a html page (What way in the Action of FORM) ?

Jc


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




JAXM JAX-RPC??? help!!!!

2002-07-08 Thread staginfo-ar

I'm trying deploying web services with JWSDP in tomcat.

Is it possible to use WSDL with JAXM ? I know JAX-RPC could do that but
JAX-RPC doesn't create the SOAP message ( his runtime convert request into
SOAP but I can't edit the message ).

Could you explain me the difference into developping web services with JAXM
and JAX-RPC. What's the advantage of both solutions. And could i use these
2 solutions together in order to use messaging providerWSDL technologies?

Thanks.
Jc


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




Réf. : RE: Réf. : RE: SOAP= java.lang.NoClassDefFoundError: javax/mail/MessagingE xception

2002-07-04 Thread staginfo-ar


Thanks for your help, I've downloaded the JWSDP. It seems to be a full
tool.
I will read the doc and try to install it next.
You've said you use JAXM. But what's the role of JAXMmail.jar ???
JAX-RPC uses SOAPWSDL technologie, I think it's these API I must use to
build SOAP message.

thanks
Jean-Christophe



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




can't run tomcat from the jwsdp??

2002-07-04 Thread staginfo-ar

I've installed the JWSDP which contains a version of tomcat4. when I launch
startup.bat, it doesn't run tomcat.
I've installed tomcat from Apache before without problem. What's the
difference between JWSDP version and Apache version??

thanks
jean-christophe


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




SOAP= java.lang.NoClassDefFoundError: javax/mail/MessagingException

2002-07-03 Thread staginfo-ar

Hi,

I'm working with TOMCAT4 and SOAP on win 2000 PRO.TOMCAT works perfectly. I
can deploy SOAP but when I want to use a service, I have an error when
executing:
  java.lang.NoClassDefFoundError: javax/mail/MessagingException
  at Client.main(Client.java:9)
  Exception in thread main

I think my CLASSPATH is good ( mail.jar is including...).
I really don't know what happend! hELP

Thanks

Jean-Christophe
FRANCE


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




Réf. : RE: SOAP= java.lang.NoClassDefFoundError: javax/mail/MessagingE xception

2002-07-03 Thread staginfo-ar


I've TOMCAT 4.0, SUN XML-Pack (which includes JAXM, JAXR...) , JetSpeed and
Apache SOAP.
I think I can't use the JWSDP because TOMCAT (8080) is always installed and
I've an ISAPI redirector for IIS configured with it. I've deployed a
Client  j2se (Java Class, URL on port 8070) on APAche-SOAP-ADMIN in which i
use Call method. There is no compilation error but when I execute the
client it don't find the class.

I want to see the request/response with TcpTunnelGui but it detects
nothing.
What the role of the JavaMail API in the using of SOAP, I don't understand
that?
What precautions must I care when I install SOAP? Do you where can I found
a good tutorial for SOAP with TOMCAT?

Thanks.

Jean-Christophe FRANCE





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




Réf. : Property file for a WAR

2002-07-03 Thread staginfo-ar


You must add a Logger élément in serveur.xml in the context of your
application

Usually, war file must be in webapps under TOMCAT.

Jean-Christophe



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




DZ : SV: Réf. : Property file for a WAR

2002-07-03 Thread staginfo-ar


properties file, not log file?? sorry I can't help you.
good luck!
Jc


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




What's the name of the tomcat process in task manager???????

2002-05-30 Thread staginfo-ar

name of the process of tomcat??

thanks
jc


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




uriworkermap.properties ???

2002-05-29 Thread staginfo-ar

I have IIs and tomcat on 2 different machines and they work perfectly.
But when I add a new context in tomcat, that does not write it in the
uriworkermap.properties (which is on iis machine).
How can I do that??
Thanks
jc


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




Réf. : RE: Réf. : How to make tomcat workwith IIS?

2002-05-29 Thread staginfo-ar


You've just to replace localhost in workers.properties by the IP of tomcat
machine.
Note: on iis machine you must have isapi-redirector.dll, iis-redirect.reg,
workers  uriworkermap.properties.

Question : When a context was added on tomcat how iis (
uriworker.properties ) could know that?

Jc


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




Réf. : RE: Réf. : help: tomcat IISintegration. repeat.

2002-05-28 Thread staginfo-ar




Put the isapi_redirect.dll on IIS machine, workers.properties too.
You must have the iis_redirect.reg on IIS machine too.
Have you config and load it on IIS machine?
Have you a green arrow on Isapi Filter under IIS?


Good luck.
Jc


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




Réf. : How to make tomcat work with IIS?

2002-05-28 Thread staginfo-ar


You must use Isapi Filter in IIS named isapi_redirector.dll
For more information you can use the Tomcat-IIS howTo in Jakarta
Documentation.
You could also follow instructions on
http://members.ozemail.com.au/~lampante/howto/tomcat/iisnt/




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




IIS 5.0 Tomcat4.0.3 on different machines?? HowTo??

2002-05-17 Thread staginfo-ar

IIS  Tomcat runs good when they are on the same machine.
I can run jsp, servlets ... and IsapiRedirector is good.
But I want to pass IIs on an other computer (located on the LAN).
How can I do that??
When I install Isapi Redirect the arrow is red. When I create virtual
directories (which are pointed on tomcat machine) I have the red icon
error in front of them. I don't know why.
Where can I put isapi_redirect? on IIs machine?
Does somebody know where I can find a tutorial to do that?
Thanks

Jc



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




Réf. : How can I redirect only JSP pages to Tomcat?

2002-05-17 Thread staginfo-ar


I have the same problem.
You can try to add :forwardAll=false noRoot=false in the
IIS listener of your context in server.xml
I've seen in tomcat doc this manip permits to redirect only Jspservlets
but it doesn't work for me.
Good luck!

Jc

ps: Do you know how can I put IIs  tomcat on different machines?


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




IIS tomcat on != machines ?

2002-05-17 Thread staginfo-ar

IIS  Tomcat runs good when they are on the same machine.
I can run jsp, servlets ... and IsapiRedirector is good.
But I want to pass IIs on an other computer (located on the LAN).
How can I do that??
When I install Isapi Redirect the arrow is red. When I create virtual
directories (which are pointed on tomcat machine) I have the red icon
error in front of them. I don't know why.
Where can I put isapi_redirect? on IIs machine?
Does somebody know where I can find a tutorial to do that?
Thanks

Jc



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




Réf. : RE: TomcatIIS (on different computers)

2002-05-16 Thread staginfo-ar


Tomcat is on computer1 , workers.properties and Isapi_redirect.dll too.
IIS5.0 is computer2, I want to define a virtual directory greeting which
point on a directory located on the computer1 (but not in tomcat
directory).
Q: Where can I put the Isapi_redirector.dll ( on computer1 or 2? ). Same
question for the workers.properties
How can I define my virtual rep greeting? I think i must distribute the
directory located on computer 1, can I avoid that?


 Thanks.


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




Error when running jsp.

2002-05-15 Thread staginfo-ar

Hi,
I'm working on tomcat 4.0.3.
I can run simple jsp .
But when I run Jsp which use Dom or Sax Api,  Tomcat can't print the
result, I have always the same error :

Exception report
Internal Server Error
javax.servlet.ServletException: org/w3c/dom/range/Range

What precautions must I care?
Need some help...
Thanks
Jc







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




troubles in web.xml file ? tomcat can't find dtd.

2002-05-14 Thread staginfo-ar

Hi,
I've created new apps and add a new context in server.xml. I want to add a
new web.xml in the /WEB-INF.

I put this line at the beginning of web.xml.

!DOCTYPE web-app
PUBLIC -//Sun Microsystems, Inc.//DTD Application web 2.2//EN
http://java.sun.com/dtd/web-app_2_3.dtd;

But when I launched TOMCAT, An xml-Mapper error appears ( couldn't find
dtd ).
What can I do? I think the line isn't good, could you send me another one.
Thanks.
Jc



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




Requested ressource is not available!! File constructor

2002-05-14 Thread staginfo-ar

Hi,
I use the File class in a jsp. When I run it with Tomcat, I have this error
: http status 404: Error report.
I think I have a problem with the pathname I have put in File constructor.
What's the default directory in this constructor? can I have an example
please.
Thanks
Jc


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




TomcatIIS (on different computers )

2002-05-14 Thread staginfo-ar

Hi,
I've tested tomcat with IIS on my computer and It works fine. Now I want to
pass IIS on a different computer ( via a LAN network ). How can I config
Tomcat to do that? Where can I find a tutorial to do that?
Thanks.
Jc


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




use xml-API in a servlet???

2002-05-13 Thread staginfo-ar

Hi,
 I'm using Tomcat4.0.3 with IIS5.0.
I can run servlet without trouble on Tomcat. But,
when I run a servlet which use xml-API, Tomcat shutdown itself, And I've
this message :

Unexpected Signal : EXCEPTION_GUARD_PAGE occured at PC=0*6d33dfde
Function=JVM_DisableCompiler
Library=c:\j2sdk\jre\lib\jvm.dll

Current Java thread:
 at java.lang.Throwable.fill.
 at java.lang..
 ...

I can use Dom or Sax API in an class with a main program, but not in a
servlet. I've put .jar in common\lib
What can I do? Thanks
Jc


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




tomcat doesn't find http://java.sun.com/dtd/web-app_2_3.dtd

2002-05-13 Thread staginfo-ar

Hi,
I've created a new context for my apps. All works fine but when I add a
web.xml file in my /WEB-INF, Tomcat write an XmMapper Error (appears when I
launch Tomcat).
What the pb???
Thanks
Jc


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




servlet works good the first time, but not the second time.??!!!??

2002-05-07 Thread staginfo-ar

Hi,
Tomcat runs good when I launch a servlet for the first time. But when I
launch this servlet for the second time, Tomcat print the result of the
first ( in fact Tomcat runs the prior result page saved in IE).
Thanks
Jc


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




Réf. : RE: servlet works good the first time, but not the second time.??!!!??

2002-05-07 Thread staginfo-ar


i'm ok with you but I have to do that each time I think there is an
other way to do it from a servlet or a jsp. Like in asp with the header.
Jc


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




JDom in java-xml-pack for Sun??

2002-05-06 Thread staginfo-ar

Does anybody know when JDom API will be add to The Java-Xml-pack for SUN ??
Thanks.
Jc


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




xml in a servlet ??

2002-05-03 Thread staginfo-ar

I'm working with Tomcat 4.0.3 and I want to make XML in a servlet.
How can I use JDOM ( or SAX, Jaxp...)  in a servlet?
Where can i find a good tutorial to do this?

Thanks
Jc


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Réf. : SOAP

2002-04-25 Thread staginfo-ar



www.xmethods.com/gettingstarted/apache.html
Here is a small tutorial for beginning. Next use the apache tutorial. I
have another link but I've forgotten it, I contact a friend and send it to
you in a few days if you want.
Jc


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Réf. : Re: Réf. : SOAP

2002-04-25 Thread staginfo-ar


http://www.soapware.org/directory/4/tutorials

Try this. About 10 links to soap tutorials.
Good luck!!!

garsJC



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




xerces, Parser xml / tomcat4

2002-04-24 Thread staginfo-ar

Hi,
I want to use xerces2 in order to parse xml. How can i do that?
I 've download and unzip files from xml-apache.org but I don't know how I
can use it.
Help!!
Thanks a lot.
Jc


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Standalone meaning??

2002-04-23 Thread staginfo-ar

What does Standalone mean exactly? How can I configure this for running
solely jsp and servlets, No html ( i use IIS for it)?
Thanks.
Jc


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Réf. : AW: Standalone meaning??

2002-04-23 Thread staginfo-ar


Nevertheless, i use tomcat whith IIS ( Isapi_redirector) and when I run
TOMCAT I've a Start tomcat standalone.



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Réf. : Re: Standalone meaning??

2002-04-23 Thread staginfo-ar


What do you think when you speak about Tomcat extension for IIS? I've only
the Isapi redirector.


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




create a new web application .?

2002-04-22 Thread staginfo-ar

Hi,
I'm working with tomcat end iis.
Isapi redirector runs good. And no difficulties in running /examples from
iis.
How can I run new web application? How can i run a jsp whereas its
directory is not in /tomcat?
Thanks
jc


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Réf. : RE: How can I install Tomcat 4.0 as aplug-in of IIS 5.1?

2002-04-19 Thread staginfo-ar


Hi Luca,

I had some difficulties in running jsp's and servlets from iis with Isapi
redirector, i've discovered that with fat32 System Files IIS hadn't access
rigths to run jsp.

you must be in Ntfs Files System ( with xp it's the default file system but
you must control this, if you didn't change that in dos command).
Control access rules (rights) too.

I never had your error but try this , If you speak french  a little i can
send you my HowTo.

Good luck!!

Jc




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Réf. : ISAPI_REDIRECTOR.DLL problem: Error500

2002-04-19 Thread staginfo-ar


Hi Georges,
Are you in Ntfs Files system?
Did you follow howTo from jakarta or ozemail web sites?
Moreover, you must had a listener IISConfig for each Context path you have
to redirect.

Good luck.

Jean-Christophe
France


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Done without a match...... this message makes me crazy!!! please help!!!!

2002-04-17 Thread staginfo-ar

Hi,
I'm using tomcat 4.0.3 with iis 5.0.
When i run jsp pages with tomcat it works properly.
But jsp's from iis can't be runned. The isapi_redirect.log contents in each
jk_uri_worker_map_t::map_uri_to_worker line a done without a match . What's
the problem, perhaps it's in application  Map in iis where I defined .jsp
extension pointed for isapi_redirect.dll

Please,, !!

jc


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




iis 5.0/tomcat 4.0.3 Please Help me!!!

2002-04-16 Thread staginfo-ar

Hi,
I'm trying to run .jsp with IIS 5.0 and an isapi redirector for tomcat
4.0.3 .
Tomcat can run jsp pages correctly, the green arrow of isapi filter is
good. When i run a jsp from iis, only the html content was printed in IE (
for example with date.jsp). I've followed howTo, but in my
uriworkermap.properties i haven't the line /*.jsp=ajp13. How can i put
this?  I can't write it because this file is generated when tomcat start.

here is a copy of my iis_redirect.log :

[Tue Apr 16 08:03:32 2002]  [jk_isapi_plugin.c (555)]: HttpFilterProc
started
[Tue Apr 16 08:03:32 2002]  [jk_isapi_plugin.c (600)]: In HttpFilterProc
Virtual Host redirection of /localhost/
[Tue Apr 16 08:03:32 2002]  [jk_uri_worker_map.c (351)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Apr 16 08:03:32 2002]  [jk_uri_worker_map.c (368)]: Attempting to map
URI '/localhost/'
[Tue Apr 16 08:03:33 2002]  [jk_uri_worker_map.c (456)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Apr 16 08:03:33 2002]  [jk_isapi_plugin.c (606)]: In HttpFilterProc
test Default redirection of /
[Tue Apr 16 08:03:33 2002]  [jk_uri_worker_map.c (351)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Apr 16 08:03:33 2002]  [jk_uri_worker_map.c (368)]: Attempting to map
URI '/'
[Tue Apr 16 08:03:33 2002]  [jk_uri_worker_map.c (456)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Apr 16 08:03:33 2002]  [jk_isapi_plugin.c (638)]: HttpFilterProc [/]
is not a servlet url
[Tue Apr 16 08:03:33 2002]  [jk_isapi_plugin.c (647)]: HttpFilterProc check
if [/] is points to the web-inf directory
[Tue Apr 16 08:03:42 2002]  [jk_isapi_plugin.c (555)]: HttpFilterProc
started
[Tue Apr 16 08:03:42 2002]  [jk_isapi_plugin.c (600)]: In HttpFilterProc
Virtual Host redirection of /localhost/date.jsp
[Tue Apr 16 08:03:42 2002]  [jk_uri_worker_map.c (351)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Apr 16 08:03:42 2002]  [jk_uri_worker_map.c (368)]: Attempting to map
URI '/localhost/date.jsp'
[Tue Apr 16 08:03:42 2002]  [jk_uri_worker_map.c (456)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Apr 16 08:03:42 2002]  [jk_isapi_plugin.c (606)]: In HttpFilterProc
test Default redirection of /date.jsp
[Tue Apr 16 08:03:42 2002]  [jk_uri_worker_map.c (351)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Apr 16 08:03:42 2002]  [jk_uri_worker_map.c (368)]: Attempting to map
URI '/date.jsp'
[Tue Apr 16 08:03:42 2002]  [jk_uri_worker_map.c (456)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Apr 16 08:03:42 2002]  [jk_isapi_plugin.c (638)]: HttpFilterProc
[/date.jsp] is not a servlet url
[Tue Apr 16 08:03:42 2002]  [jk_isapi_plugin.c (647)]: HttpFilterProc check
if [/date.jsp] is points to the web-inf directory

If you have an idea, please answer me, i was trying it for 4 days.
Thanks
Jc


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




can't read jsp' from IIS 5.0 with TOMCAT 4.0.3!!

2002-04-12 Thread staginfo-ar

hi.
I have installed Tomcat 4.0.3 and IIS 5.0. The tomcat serves the servlets
and jsp pages just fine on port 8080.
When I attempt to have IIS serve the jsp pages I get a Error 404. The isapi
redirector does have a green arrow.

Any ideas on something I may have missed?

thanks a lot

Here a copy of the error:



Apache TOMCAT/4.0.3 - HTTP Status 404 -/dates/date.jsp

type:  Status report
message :   /dates/date.jsp
description : The requested resource (/dates/date.jsp) is not available.


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




IIS-Tomcat

2002-04-11 Thread staginfo-ar


hi!

I work with tomcat 3.3.1 and iis 5.0.
To test isapi filter I launch a tomcat example : date.jsp.
When i've launched iis with isapi filter to catch jsp's pages, Tomcat
return an error 500, whereas tomcat run jsp's pages without difficulties.


Error: 500
Location: /dates/date.jsp
Erreur interne de servlet:
 org.apache.jasper.JasperException: dates.JspCalendar
   [.]


What can i do to solve this trouble? Thanks;

Jean-Christophe




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




configuring IIS: Isapi filter

2002-04-11 Thread staginfo-ar

I have installed Tomcat and IIS 5.0. The tomcat serves the servlets and jsp
pages just fine on port 8080.
When I attempt to have IIS serve the jsp pages I get a Error 500. The isapi
redirector does have a green arrow.

Any ideas on something we may have missed?

thanks a lot

Here a copy of the error:

Error: 500

Location: /dates/date.jsp

Internal Servlet Error:

org.apache.jasper.JasperException: dates.JspCalendar
   at
org.apache.jasper.compiler.BeanRepository.getBeanType(BeanRepository.java:183)

   at
org.apache.jasper.compiler.GetPropertyGenerator.generate(GetPropertyGenerator.java:99)

   at
org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.generate(JspParseEventListener


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]