Re: Problem reading the Accept-Encoding header from a request

2007-04-14 Thread Christian Hvitved
Hi And thanks for all the quick help. It turned out to be a really rookie mistake. It was my firewall, that was changing my request. I have to try to defend myself for being so stupid. I am using a coorparate machine where I cant see the firewall in the tray, so I thought no firewall was

Re: Problem reading the Accept-Encoding header from a request

2007-04-14 Thread Christian Hvitved
Hi The firewall on my laptop pc used is norton internet security 2005. It is running on a danish windows xp. It is possible it has some customized settings controlled by the administrators. regards Christian On 4/14/07, Hassan Schroeder [EMAIL PROTECTED] wrote: On 4/14/07, Christian Hvitved

Re: manager and host manager not available problem

2007-04-14 Thread Zhenja
I also noted that file Tomcat6.0\webapps\manager\manager.xml has following contents: Context docBase=${catalina.home}/server/webapps/manager privileged=true antiResourceLocking=false antiJARLocking=false !-- Link to the user database we will get roles from -- ResourceLink name=users

Re: manager and host manager not available problem

2007-04-14 Thread Rashmi Rubdi
Look in Manager's app's web.xml there's a URL pattern /html/* , that URL is reletive to the /manager context, that's why you can access the HTML manager at /manager/html You should easily be able to find the manager app from the default Tomcat page at http://localhost:8080/ by clicking on Tomcat

Re: Stuck in SYN_RECV when binding to ip

2007-04-14 Thread robert lazarski
On 4/13/07, robert lazarski [EMAIL PROTECTED] wrote: tcp0 0 192.168.3.53:8080 xxx.xxx.118.243:8368 SYN_RECV- This turned out to be a routing issue. I had to add a second default gw , which created other problems but at least the mystery is solved. Robert

Re: Error message

2007-04-14 Thread dfarris
Thanks for responding; I am using 1.4.2 with TOMCAT 5.0.28 Dwight Quoting Martin Gainty [EMAIL PROTECTED]: Dwight- Must be too much heat because I havent seen this since IBM J2RE 1.4.2 Which JDK are you using? Which version Tomcat? M-- This email message and any files transmitted with it

Re: sending smtp mail failure

2007-04-14 Thread Mighty Tornado
Thanks for responding, there something wrong with my code? This is my code: import java.util.*; import java.io.*; import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; public class TimeTravelMailer { public void sendMessage() { String to = [EMAIL

Re: sending smtp mail failure

2007-04-14 Thread Johnny Kewl
Here is a little framework that u can play with MimeMessage msg = new MimeMessage(session); msg.setFrom(new InternetAddress(from)); msg.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); msg.setSubject(subject); msg.setSentDate(new Date());

Re: manager and host manager not available problem

2007-04-14 Thread Johnny Kewl
try http://localhost:8080/manager/html Should be able to see the links used if you http://localhost:8080/ and look at what they have use on default helper page have fun - Original Message - From: Zhenja [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 14, 2007 6:17 PM