Unfortunately, there is no Starting Guide for HTMLConnector for the moment.
Besides, unfortunately once again, it is not possible for the moment to change the value of variables automatically sent to the service: the handlers (you could have used the onTransactionStarted() for instance) are "applied too late"...
So up to now, you can only push variables from your C-EMS request (transaction) to the targeted service without any modification.
To do so, let's say we have an input variable called "myvar" in our transaction. We must declare a new variable object in the transaction.
We called this variable "myvar".
If we want to use GET or POST method, we must set the 'HTTP Verb' transaction property and the 'HTTP Verb' variable's property to the same verb (GET or POST).
And we must not forget to give an 'HTTP name' to the "myvar" variable object: edit the 'HTTP name' property of the variable object and set it to any name (compliant with HTTP, obviously!), e.g. "myvar".
Then we will see that C-EMS will automatically push the myvar transaction parameter to the service (in GET or POST, accordingly to our objects) as "myvar" HTTP parameter.
For instance in GET method case:
If we request to C-EMS:
localhost:18080/convertigo/projects/TestHTTP/.xml?myvar=test
C-EMS will request to the service:
www.service.com/myservice?myvar=test