When I generate the Hyperledger Composer REST server (see https://hyperledger.github.io/composer/latest/integrating/getting-started-rest-api), I have the option to specify whether I want to enable event publication over WebSockets (Yes/No).
Using the command
yo hyperledger-composer
I generated an angular app using the generated rest server.
What I expected was the following:
If I did NOT enable event publication over WebSockets for the composer-rest-server, then the angular app (generated for this composer-rest-server) would use normal http requests to contact the composer-rest-server.
This expectation was met. The (automatically generated) file data.service.ts within the angular app uses normal http requests to contact the server. Here's an excerpt from the file:
public getAll(ns: string): Observable<Type[]> {
console.log('GetAll ' + ns + ' to ' + this.actionUrl + ns);
return this.http.get(`${this.actionUrl}${ns}`)
.map(this.extractData)
.catch(this.handleError);
}
public getSingle(ns: string, id: string): Observable<Type> {
console.log('GetSingle ' + ns);
return this.http.get(this.actionUrl + ns + '/' + id + this.resolveSuffix)
.map(this.extractData)
.catch(this.handleError);
}
public add(ns: string, asset: Type): Observable<Type> {
console.log('Entered DataService add');
console.log('Add ' + ns);
console.log('asset', asset);
return this.http.post(this.actionUrl + ns, asset)
.map(this.extractData)
.catch(this.handleError);
}
The other expectation I had was this:
If I DID enable event publication over WebSockets for the composer-rest-server, then the angular app (generated for this composer-rest-server) would use websockets to contact the composer-rest-server.
This expectation was NOT met. The (automatically generated) file data.service.ts within the angular app, looks exactly the same (independent of whether the angular app was generated for a composer-rest-server with web sockets enabled or disabled). That is, normal http requests were used to contact the server.
Why is that? Do I have to change the code in the file "data.service.ts" manually, if I want to use web sockets (substituting "ws" for "http") or am I missing something here?