Re: simple question on deltamanger - understanding

2005-06-09 Thread Peter Rossbach
Yes, at germany I can give you that support... Please send me your cluster config, and os, jdk and tomcat version. Peter John MccLain schrieb: My understanding is that the clustering replication DeltaManager it is called via a setAttribute if UseDirtyFlag is set to true. So does this mean

Re: Simple question on HTTP return codes

2005-05-31 Thread Frank W. Zammetti
Yep, I *should* have known that :)... The sendError() method of HttpServletRequest does it. Sorry for wasted bandwidth! -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On Tue, May 31, 2005 3:13 pm, Frank W. Zammetti said: I fear I should

Re: Simple question on HTTP return codes

2005-05-31 Thread Dakota Jack
Just a small note, Frank. You use sendError(int sc) for errors but setStatus(int sc) for codes that are not errors. On 5/31/05, Frank W. Zammetti [EMAIL PROTECTED] wrote: Yep, I *should* have known that :)... The sendError() method of HttpServletRequest does it. Sorry for wasted bandwidth!

Re: Simple question on HTTP return codes

2005-05-31 Thread Frank W. Zammetti
Cool, good to know there is a difference. Thanks! Frank Dakota Jack wrote: Just a small note, Frank. You use sendError(int sc) for errors but setStatus(int sc) for codes that are not errors. On 5/31/05, Frank W. Zammetti [EMAIL PROTECTED] wrote: Yep, I *should* have known that :)... The

RE: Simple question about JSP page

2003-09-06 Thread Shawn Zernik
you should post you tag code of the code for that page. It can either be a problem with your tag, or the connection pooling. Try stopping and restarting the app in the manager and see if that makes the updates take affect. If so, the issues is with re-use of objects and possible connection

RE: Simple question about JSP page

2003-09-06 Thread Craig Berry
Hard to tell with the information given, but my guess is that you're getting a browser-cached copy of the list all page. Add the header voodoo to suppress caching and see if that helps. -Original Message- From: engp0510 [mailto:[EMAIL PROTECTED] Sent: Fri

Re: Simple question about JSP page

2003-09-06 Thread Christopher Williams
Have you verified that the record IS getting added correctly to the DB? Have you hit the refresh button to check that your browser isn't displaying a stale page? If an old page is getting displayed you can turn off page cacheing by calling: response.setHeader(Pragma, no-cache); -

RE: Simple question about JSP page

2003-09-06 Thread Murray
Has your SQL code issued a commit after adding the extra rows? Some DBMSs require that before the application can see new rows in the database - a repeated query simply gets the original result until the rollback buffer is committed. Murray -Original Message- From: engp0510

Re: Simple question about JSP page

2003-09-06 Thread Ben Souther
1st, you shouldn't cross post to more than one list at a time. 2nd, without seeing your code, we can't help you. Have you checked the DB with another tool to verify that the record was actually added to the database? Are you catching SQL errors and doing something useful with them so you can

Re: Simple question about JSP page

2003-09-06 Thread Christopher Marsh-Bourdon
Did you commit the Add transaction prior to loading the list again? More details would be helpful prior to making any more guesses. Cheers Christopher Marsh-Bourdon Pyplia Limited On 6/9/03 3:30, engp0510 [EMAIL PROTECTED] wrote: Hi, Maybe it's a stupid question. Built jsps for

Re: simple question - mapping url

2003-07-17 Thread John Turner
What environment? What do you mean by map? Tomcat alone or Tomcat + Apache? If Tomcat + Apache, what connector? In Tomcat alone: Context path=/support docBase=/some/path/www.site.com/html/help /Context Then in /some/path/www.site.com/html/help/WEB-INF/web.xml add support1.html as a welcome

RE: simple question - mapping url

2003-07-17 Thread Shapira, Yoav
Howdy, You could just put a simple index.html under the support directory which has a meta refresh tag redirecting to /html/help/support1.html. Tomcat doesn't have a URL rewriting engine, but the above is one mechanism to accomplish what you want. There are other ways, of increasing complexity.

Re: Simple question on building mod_jk

2003-07-08 Thread John Turner
Run buildconf.sh. John On Tue, 8 Jul 2003 15:13:40 -0400 (EDT), Dumisani Nlebgwa [EMAIL PROTECTED] wrote: hey guys i am attempting to build mod)jk from source, so I just downloaded jakarta-tomcat-connectors-jk-1.2.4-src.tar.gz I just unzipped it, and I guess the next step is doing the

Re: Simple question on Unicode URL in Tomcat

2003-06-03 Thread John Z Yang
Dear all: I have a simple question regarding to the Unicode URL support in Tomcat. If I pass a Unicode URL to Tomcat, can it retrieve the targeted content? Some of our web pages are named under double byte characters. We have tried various ways but all have failed. If you have a work around,

Re: Simple question on Unicode URL in Tomcat

2003-06-02 Thread Shawn
Hiho, try something like: String s = URLEncoder.encode(s, enc); s is your URL and enc is the java encoding such as Shift_JIS. See URLEncoder for more info. Will work from java 1.4 I believe. Had the same problem and this seems to solve it just fine. -- Shawn Happily using M2, Opera's

RE: Simple Question

2003-03-10 Thread Shapira, Yoav
Howdy, None of your assumptions are wrong. Check/post your logs, as I bet they contain some errors... Yoav Shapira Millennium ChemInformatics -Original Message- From: Vy Ho [mailto:[EMAIL PROTECTED] Sent: Saturday, March 08, 2003 10:00 AM To: Tomcat Users List Subject: Re: Simple

Re: Simple Question

2003-03-08 Thread Vy Ho
I tried to stop and start and reload. All say successful, but none of them work. What happen is that I have a parameter in the web.xml file. Each time the Tomcat start up, my application read this parameter. The problem is that if I change the parameter value in the web.xml file, and

RE: Simple Question

2003-03-05 Thread Craig R. McClanahan
On Mon, 3 Mar 2003, Mike Jackson wrote: Date: Mon, 3 Mar 2003 08:58:44 -0800 From: Mike Jackson [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: Simple Question The web.xml is only read when the server is restarted

Re: Simple Question

2003-03-05 Thread Vy Ho
Thank you all for helping me out. I still don't know what the problem is yet. However, your advices let me know what is the outcome I should expect when using the manager to restart the server. My web.xml seems to be good (since stop and restart the tomcat server manually, that is not using

Re: Simple Question

2003-03-03 Thread Swapneel Dange
even if u dont restart the SERVER again, the moment u open the new browser the web.xml should be read again. But at time if this doens work then its better to RESTART the server. After that the new web.xml will be read for sure. Are u sure that ur mapping for the servlets and all that stuff is

RE: Simple Question

2003-03-03 Thread Mike Jackson
: Simple Question even if u dont restart the SERVER again, the moment u open the new browser the web.xml should be read again. But at time if this doens work then its better to RESTART the server. After that the new web.xml will be read for sure. Are u sure that ur mapping for the servlets

RE: Simple Question

2003-03-03 Thread Shapira, Yoav
Howdy, even if u dont restart the SERVER again, the moment u open the new browser the web.xml should be read again. Not true. The deployment descriptor is re-read only on application restart. One can restart the application via the manager webapp, or by restarting the server itself. Are u

RE: Simple Question

2003-03-03 Thread Mike Jackson
I have a very simple question, and if you are a bit experienced in tomcat, you probably would know. I would really appreciate any links, hints, tips or advices. The question is this, if I change an application deployment file (web.xml), and then use the tomcat manager to restart the

RE: Simple Question - HTTP Status 404 error

2003-02-14 Thread Turner, John
You also need to map your servlet to a URL in your web.xml file. Check the examples web.xml file to see how. John -Original Message- From: Sanjeevkumar Cherengotil [mailto:[EMAIL PROTECTED]] Sent: Friday, February 14, 2003 1:47 AM To: Tomcat Users List Subject: Simple Question - HTTP

Re: : Simple Question on (Tomcat+JBoss) and Apache

2002-09-19 Thread Manoj Kithany
Thanks Stefan, My /jboss/server/default/deploy directory has following files: counter-service.xml ejb-management.jar hsqldb-service.xml jboss-local-jdbc.rar jboss-xa.rar jbossmq-destinations-service.xml jbossmq-service.xml jca-service.xml jms-ra.rar jms-service.xml jmx-ejb-adaptor.jar

Re: Simple Question (I hope...)

2002-04-08 Thread Erwin Ambrosch
I think your docBase should be webapps/test Context path=/test docBase=test  debug=0 reloadable=true / Erwin Am Freitag, 5. April 2002 18:29 schrieben Sie: Hi there, I'm new to Tomcat and to this list, so apologies if this question has already been asked (I've checked the

Re: Simple Question (I hope...)

2002-04-05 Thread Jeff Larsen
Could be several things. Since some details about your setup are, missing, please don't take offense if I state the obvious. Are you using Tomcat standalone or with Apache? Have you successfully gotten the Tomcat examples to work? If your homepage.class has a 'package' directive in the source,

Re: Simple Question (I hope...)

2002-04-05 Thread hatem zanaty
either remove the application test from the manager application and it will run .I does not work to create application by the server.xml and the manager application at the same time Sefton, Adam [EMAIL PROTECTED] wrote: Hi there, I'm new to Tomcat and to this list, so apologies if this

Re: Simple Question

2002-03-26 Thread Toru Watanabe
Hi López, Please note form Java2 SDK v1.4, Java starts to support IPv6. If you use Tomcat with j2sdk v1.4, then it might work. But it is very danger because there are only few (or no) achievement. Regards, Watanabe. In the message Simple Question [EMAIL PROTECTED] Gabriel López

RE: Simple question

2001-06-04 Thread Skidmore, Walt
Title: RE: Simple question I know it's not Tomcat, but I was working with WebLogic, and it didn't have the capability to disable directory browsing. So, I put in a redirect page (index.html) into each directory and that took care of it. Kinda tedious, but necessary at times. -Original

Re: simple question

2001-04-23 Thread Martin Mauri
No, just the parent. I mean, the one you've listed in the server.xml file (docBase entry). regards. m- Hi, Im new to using to tomcat. My query is if I have a directory in TOMCAT_HOME/webapps/ called games can I have other directories in the games directory (for each different)

Re: simple question

2001-04-23 Thread time out
i have found that tomcat will serve JSPs below the docbase as well...when i use iis and isapi_redirect.dll At 12:24 04/23/2001 -0300, you wrote: No, just the parent. I mean, the one you've listed in the server.xml file (docBase entry). regards. m- Hi, Im new to using to tomcat. My query

RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Benoît Jacquemont
Please look at the answers after posting a question. I have already answered to your question yesterday: Hi, You just have to declare a context like this: Context path="" docBase="/path/to/myapp" debug="0" reloadable="false" /Context in your TOMCAT_HOME/conf/server.xml. You

RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Brett Knights
What I have to do (in the configuration files) when I want to start my servlets with the URL: http://localhost/servlet/TestServlet and not with a WEPAPP-Directory like http://localhost/example/servlet/TestServlet Which settings I have to do in the configuration-files and in which

Re: simple question for servlet-configuration of tomcat

2001-04-06 Thread Mandar Joshi
You simply need to put your stuff uner ROOT context. - Original Message - From: "TOPO graphics GmbH" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 06, 2001 7:19 AM Subject: simple question for servlet-configuration of tomcat Hello, since several weeks I am testing

Servlet auto-reloading under ROOT context (was RE: simple question for servlet-configuration of tomcat)

2001-04-06 Thread Joel Parramore
Regards, Joel Parramore -Original Message- From: Mandar Joshi [mailto:[EMAIL PROTECTED]] Sent: Friday, April 06, 2001 2:51 PM To: [EMAIL PROTECTED] Subject: Re: simple question for servlet-configuration of tomcat You simply need to put your stuff uner ROOT context. - Origina

Re: Servlet auto-reloading under ROOT context (was RE: simple question for servlet-configuration of tomcat)

2001-04-06 Thread Tony LaPaso
is completely broke in T4 b2/3. - Original Message - From: "Joel Parramore" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 06, 2001 2:28 PM Subject: Servlet auto-reloading under ROOT context (was RE: simple question for servlet-configuration of tomcat) On

RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Brett Knights
\uriworkermap.properties-auto HTH BTW In my example below it looks like Tomcat is serving my static content. :-( -Original Message- From: Brett Knights [mailto:[EMAIL PROTECTED]] Sent: Friday, April 06, 2001 10:16 AM To: '[EMAIL PROTECTED]' Subject: RE: simple question for servlet-configuration

Re: Simple Question

2001-03-20 Thread Kenneth Westelinck
Amir, Yes, unless you configure it in the hosts file: - on unix: /etc/hosts - on Windoze: c:\winnt\system32\drivers\etc\hosts regards, Kenneth Westelinck From: "Amir Nuri" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: "Tomcat-User" [EMAIL PROTECTED] Subject: Simple Question Date: Tue, 20

Re: Simple Question

2001-03-20 Thread Valeriy Molyakov
No, but then all your users should have appropriate records in files hosts - Original Message - From: "Amir Nuri" [EMAIL PROTECTED] To: "Tomcat-User" [EMAIL PROTECTED] Sent: Tuesday, March 20, 2001 1:06 PM Subject: Simple Question Do i need DNS in order to use Virtul Hosts ?

RE: Simple Question

2001-03-20 Thread Darrell Porter
In a multiuser environment, it is much easier to implement DNS (utilizing BIND) than managing hosts files. -Original Message- From: Amir Nuri [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 20, 2001 3:07 AM To: Tomcat-User Subject: Simple Question Do i need DNS in order to use Virtul

Re: simple question about servlet development

2001-02-05 Thread Robuschi \(Delfi\)
I developed some servlets and I didn't restarted Tomcat each time. I thing you can simply put the new servlets over the oldest ones and then try them. Hope this helps. Robuschi Roberto Delfi srl P.za Ravenet 1/b - 43100 PARMA Tel. 0521/932474 Fax 0521/989045 [EMAIL