Hi all
I need to publish to webclient a message which is entered by user
I have read some example (read much in Hello World, another example so complex to follow)
I saw that in that sample, we create a server with Adapter set to an HelloWorldAdapter object
Code:
 DataProviderServer server = new DataProviderServer();
 server.Adapter = new HelloWorldAdapter();
And then when server.start() , it call Run() funtion to publish message "Hello World"
According this example, I can only modify the message from HelloWorld to another, but I implement it as input from user
Please show me another example to help or some way to finish my task