Hi,
is it possible to direct call an adapter-method via StartCISPage-Servlet.
Example:
http://://servlet/StartCIPage?PAGEURL=//.html&METHOD=doSomething
Thanks
Hi,
is it possible to direct call an adapter-method via StartCISPage-Servlet.
Example:
http://://servlet/StartCIPage?PAGEURL=//.html&METHOD=doSomething
Thanks
As I know you can just call setter methods of your adapter class via url.
http://<host>:<port>/CIServer/StartCIPage?PAGEURL=/appxyz/customerdetail.html&customerID=4711
public class CustomerDetailAdapter extends Adapter
{
...
public void setCustomerId(String value)
{
...
}
...
}