RE: does not include parameter

2009-04-14 Thread Martin Gainty
ire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Tue, 14 Apr 2009 16:12:59 -0600 > From: john.c.cartwri...@noaa.gov > Subject: Re: does not include parameter > To: use

Re: does not include parameter

2009-04-14 Thread John Cartwright
OK, makes perfect sense now. Thanks to both Dave and Jeroen for your prompt replies! --john Dave Newton wrote: john.c.cartwri...@noaa.gov wrote: I'm trying to understand why the following does not produce a URL w/ the requested parameter appended. Can someone please help me? var url = "nam

Re: does not include parameter

2009-04-14 Thread Dave Newton
john.c.cartwri...@noaa.gov wrote: I'm trying to understand why the following does not produce a URL w/ the requested parameter appended. Can someone please help me? var url = "namespace="/secure/json">"; //produces '/scufn/secure/json/ListFeatures.action' You probably don't have an action pr

Re: does not include parameter

2009-04-14 Thread Jeroen De Ridder
It's evaluating "ALL" as an OGNL expression, not a string literal. Use either name="status">ALL or name="status" value="'ALL'" /> (notice the extra single quotes in the second one). Hello All, I'm trying to understand why the following does not produce a URL w/ the requested parameter ap

does not include parameter

2009-04-14 Thread John . C . Cartwright
Hello All, I'm trying to understand why the following does not produce a URL w/ the requested parameter appended. Can someone please help me? var url = ""; //produces '/scufn/secure/json/ListFeatures.action' Thanks! --john