Web Broadcast Web Service Documentation
Using the Web Broadcasting Web Service you can create your own news reader for your web site. To access this web service
use the following address:
http://<EVISIONSERVERNAME>/evisionservices/WebBroadcasting.asmx
<EVISIONSERVERNAME> is the name of your evision platform.
Below is the API documentation for the web service.
Web Broadcast Web Service Data Structures
WebBroadcast
{
int WebBroadcastID - Internal ID of this web broadcast
string Title - Title of the web broadcast
datetime BroadcastedOn - The date and time the broadcast was sent
string Content - The content of the web broadcast
}
Web Broadcast Web Service Methods
string RetrieveCertificate (string username, string password)
string username - The username for this web service
string password - The password for this web service
This method must be called before any other. It returns a certificate which must be passed into subsequent
calls to the web service. User username should be 'admin' and the password should be 'acis' (not include single quotes).
WebBroadcast[] GetWebBroadcasts (string certificate, int FRConfigID, int startindex, int amount)
string certificate - The certificate returned from the RetrieveCertificate method
int FRConfigID - The ID of the FirstResponder that is web broadcasting.
int startindex - Index of the first broadcast to return.
int amount - Number of broadcasts to return.
Returns an array of WebBroadcast data structures that represent the web broadcasts. The return is a subset of all the
web broadcasts on the system starting with the broadcast at startindex and returning amount of them. (i.e.
startindex = 10 and amount = 5 would return five broadcasts start with the tenth one.)
If the startindex is higher than the max number of broadcasts on the system then an empty array is returned. If the
startindex + amount is higher than the max number of broadcasts on the system then broadcasts are returned starting
at startindex and ending with the last broadcast available.
WebBroadcast GetWebBroadcastByID (string certificate, int WebBroadcastID)
string certificate - The certificate returned from the RetrieveCertificate method
int WebBroadcastID - The ID for the web broadcast to return
Returns a single WebBroadcast struct representing the web broadcast with the ID passed into the method.
int GetWebBroadcastTotal (string certificate, int FRConfigID)
string certificate - The certificate returned from the RetrieveCertificate method
int FRConfigID - The ID of the FirstResponder that is web broadcasting.
Returns the total number of available web broadcasts.
Back to Examples