Re: Request parameters incorrect

2007-12-07 Thread Len Popp
:27 PM To: Tomcat Users List Subject: RE: Request parameters incorrect From: Bob Riaz [mailto:[EMAIL PROTECTED] Subject: Request parameters incorrect The parameters we find in this string come from 3 different pages! We're baffled!! This is pretty much always a problem with incorrect

Request parameters incorrect

2007-12-05 Thread Bob Riaz
Hello all, We're using the following: Java 5.0 Tomcat6.0 SQL Server 2000 Our webapp does the following: Get the request parameters from the request object from a page, concatenate them into a string, store the string in the db. When we retrieve the string from the db, we know what parameters to

Re: Request parameters incorrect

2007-12-05 Thread Konstantin Kolinko
Get the request parameters from the request object from a page, concatenate them into a string, store the string in the db. Do you url-encode the names and the values before concatenating them into the string? If not, there might be '', '=' symbols in the value string that break your parsing.

RE: Request parameters incorrect

2007-12-05 Thread Caldarale, Charles R
From: Bob Riaz [mailto:[EMAIL PROTECTED] Subject: Request parameters incorrect The parameters we find in this string come from 3 different pages! We're baffled!! This is pretty much always a problem with incorrect scoping or synchronization in the webapp. For example, code processing

RE: Request parameters incorrect

2007-12-05 Thread Bob Riaz
incorrect From: Bob Riaz [mailto:[EMAIL PROTECTED] Subject: Request parameters incorrect The parameters we find in this string come from 3 different pages! We're baffled!! This is pretty much always a problem with incorrect scoping or synchronization in the webapp. For example, code