[Zope] Passing parameters via URL

Thomas Guettler zopestoller@thomas-guettler.de
Thu, 25 Apr 2002 15:06:40 +0200


Raj NS wrote:

> hi group.
> 
> I'm in small problem ( i guess ). I have made a
> product , and inside which everytime i call something
> like http://localhost:8080/something?foo=bar 
> i get a ZOPE error saying unable to send a variable
> foo .. check url .. try again ..and blah blah ...
> 
> frankly, i tried this on netscape 4.77 and again later
> i tried it on IE it was working fine . Now someone
> told me netscape 4.7x is buggy u need some
> urldecoders/encodes ... 
> 
> here goes the codes 
> ############ 
> ...
> print '</form>'
> print '<form
> action='+container.absolute_url()+'/conversion?tex_url='+tex_url+'&tex_id='+tex_id+'method="POST">'
> print '<input type="submit" value="Convert"
> name="Convert"></a></p>'
> print '</form>'
> ...
> 
> ############


Maybe it is because you are using POST (<input...>and GET (?foo=bar)
at the same time.
You could use hidden <input> fields instead.

But that's just a guess.

  thomas