Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A Visual LANSA web URL is formatted like this:

http://[domain]:[port]/[configuration]/[partition

...

]/[webpage].html?[parm1]=[value]&[parm2=value]

...

The URL for the current page is published as the URL property of SYS_WEB.

...

This could return something like:

http://localhost:2014/tipvcs/ide/xvlwebtst.html?lang=eng&developer=yes&debug=yes,lansa14:51234

...

To process any parameters associated with the URL requires processing name/value pairs. The query string, that is any portion of the URL following the "?" (which by the way is optional), is parsed and made available as a collection of items, each with Name and Value properties. Each Name and Value is separated by a "&". If the query string is corrupt in any way, only those parameters before the corruption will be available.

...