Deep-linking offers you the option to enable linking directly into a business process within your Websydian Express site.
Deep-linking comes in two variants:
In order to enable deep-linking for one or more site elements within the site structure you need to perform the following in the Websydian Express administration interface
Then open your browser and enter one of the following URL's depending on with or without context
Deep-linking with context
http://[websydianexpressurl]?WSLOAD=[alias]&WSCONTEXT=Y
e.g. http://www.websydian.com/express20/site/demosite?WSLOAD=CUSTREG&WSCONTEXT=Y
Without context
http://[websydianexpressurl]?WSLOAD=[alias]
e.g. http://www.websydian.com/express20/site/demosite?WSLOAD=CUSTREG
Please note that it is not possible to link to an URL site element when using deep-link without context.
Using deep linking you also have the option to parse parameters to the business process being linked.
This is done by appending the required parameters for the business process to the URL.
e.g. http://www.websydian.com/express20/site/demosite?WSLOAD=CUSTREG&WSCONTEXT=Y&myparm1=value1&myparm2=value2&WSPARMLIST=myparm1%26myparm2
Besides adding the parameters to the URL you must also add the parameter WSPARMLIST that contains a list of the parameter names separated by %26 (ampersand).
The business process you are calling must process the parameters provided or they might as well not have been sent.
This means that if you are going to implement the business process, you need to know how to access the parameters.
For Plex/Websydian, this is described in this document: Process Parameters.