This program demonstrate WebSocket usage with THttpServer Custom ws.htm page is loaded and regularly sends messages to server.
#include <cstdio>
public:
TString GetDefaultPageContent()
override {
return "file:ws.htm"; }
{
return fWSId == 0;
}
printf(
"Client connected %d\n", fWSId);
}
fWSId = 0;
printf(
"Client disconnected\n");
}
printf(
"Client msg: %s\n", str.Data());
}
}
{
}
};
void ws()
{
serv->Register(
"/folder1", handler);
const char *
addr =
"http://localhost:8090/folder1/name1/";
printf(
"Starting browser with URL address %s\n",
addr);
printf(
"In browser content of ws.htm file should be loaded\n");
printf(
"Please be sure that ws.htm is provided in current directory\n");
else
}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
R__EXTERN TSystem * gSystem
This class stores the date and time with a precision of one second in an unsigned 32 bit word (950130...
Contains arguments for single HTTP call.
UInt_t GetWSId() const
get web-socket id
const void * GetPostData() const
return pointer on posted with request data
Long_t GetPostDataLength() const
return length of posted with request data
Bool_t IsMethod(const char *name) const
returns kTRUE if post method is used
Online http server for arbitrary ROOT application.
Class for user-side handling of websocket with THttpServer.
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
TString & Append(const char *cs)
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
virtual Int_t Exec(const char *shellcmd)
Execute a command.
Handles synchronous and a-synchronous timer events.
- Author
- Sergey Linev
Definition in file ws.C.