Help needed

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Help needed

Mariano Wahlmann-2
Hi,
I'm currently developing an AVL (Automatic vehicle location) application
consisting of a seaside server and google earth as gui.
I want those kml (google earth's files, that are xmls) to be self
refreshed and so i should use a parameter <href>url</href> inside the
kml file.
how can i use seaside with urls like:
http://myserver/component?mobileId=1 ?????

--
Mariano Wahlmann
Procesamiento de Datos
GEOAGRIS S.R.L
tel/fax: (54-11) 5353-0007
www.geoagris.com

_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Help needed

Patrick Collison
On 31/07/07, Mariano Wahlmann <[hidden email]> wrote:
> how can i use seaside with urls like:
> http://myserver/component?mobileId=1 ?????

Try self session fieldsAt: 'mobileId'
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Help needed

Patrick Collison
On 31/07/07, Patrick Collison <[hidden email]> wrote:
> Try self session fieldsAt: 'mobileId'

Replying to my own message; that snippet doesn't really make sense as
is. You're better off doing either:

 self fieldsAt: 'mobileId'

from within a subclass of WAPresenter (e.g. a component), or perhaps:

 WACurrentSession value fieldsAt: 'mobileId'

if the caller doesn't have the current session in lexical scope.
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside