[OT] RE: IE causes an ORA-00936 error, but not Firefox?

2008-03-28 Thread Peter Crowther
[Marked off-topic as this is almost certainly an application, not Tomcat, issue] From: Brian Munroe [mailto:[EMAIL PROTECTED] I don't have access to the JSPs at the moment (I believe it is a model I application - JSP only) so I can't look at the code - just functional testing for now. But

Re: IE causes an ORA-00936 error, but not Firefox?

2008-03-28 Thread Brian Munroe
On Fri, Mar 28, 2008 at 10:27 AM, Frank W. Zammetti [EMAIL PROTECTED] wrote: My first guess (and that's all it is, a guess!) is that you're trying to insert something coming from the client into a SQL query and for whatever reason it's being transmitted differently from IE than FF and is

Re: IE causes an ORA-00936 error, but not Firefox?

2008-03-28 Thread Frank W. Zammetti
It *might* be enough, if you at least know what parameters are being used, to look in Firebug or some similar tool to see what's being transmitted across the wire... if you're lucky it's something obvious and visible there and you won't have to hunt it down further back on the server. -- Frank

RE: IE causes an ORA-00936 error, but not Firefox?

2008-03-28 Thread Propes, Barry L
is javascript within the JSP anywhere altering the missing expression? -Original Message- From: Brian Munroe [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2008 12:15 PM To: Tomcat Users List Subject: IE causes an ORA-00936 error, but not Firefox? Ok, here is a weird one. I don't

RE: [OT] RE: IE causes an ORA-00936 error, but not Firefox?

2008-03-28 Thread Propes, Barry L
see if you can do an out.print from within the JSP of the results sets. -Original Message- From: Peter Crowther [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2008 12:28 PM To: 'Tomcat Users List' Subject: [OT] RE: IE causes an ORA-00936 error, but not Firefox? [Marked off-topic

Re: [OT] RE: IE causes an ORA-00936 error, but not Firefox?

2008-03-28 Thread Brian Munroe
[snip very helpful suggestions] Holy crap guys! This is awesome, I've never had this much response from the users@ (and be it an off-topic too!) Once I get the code in hand, that's when the fun will begin! thanks everyone -- brian

Re: [OT] RE: IE causes an ORA-00936 error, but not Firefox?

2008-03-28 Thread Nicholas Sushkin
Here's another thought: ORA-00936: missing expression means that your Oracle SQL is malformed. If invalid browser input can cause a malformed SQL, you're potentially exposing yourself to a SQL injection attack (http://en.wikipedia.org/wiki/SQL_injection). Try to make sure that your SQL is