I need to use a socket.io connection to enable my ionic2 app.
I installed ``socket.io-client via npm so i can use it like this.
import * as io from 'socket.io-client'
.....
....
...
this.socket = io(this.conf.connectionServer);
this.socket.on('connect', () =>{
......
.....})
I does work when i’m using ionic serve in chrome or when running ionic run -l
but when i just build everything with ionic run it won’t work.
i was able to log the error messsge on the screen of my device: Error: Failed to execute: open: on :XMLHttpRequest:: REfused to connect to : http://file/socket.io/?EIO.....: because it violates the documents Content Security Policy.....
Hi Mike,
I think i tried everything. With no Sucess so far.
Removing the CSP-Meta-Tag does not resolve anything.
Removing the whitlist plugin: Even normal http-request are blocked with 404
I Came to the unterstanding that the problem might be realted to me store the src of socket.io-client in the node_modules
I will try to put them on the same server, when i have acess to it (this is a collaborative Research-Project)
but probably the issue may still remain, as i’m goning to connect to multiple servers in the near future.
@lichillo17
no… they are not the same
you have to add http:// as protocol.
I think the probelm relates to the change of context when on a mobile device. But it’s way odd.
why don’t you move the socket.io-parts to an injectable service?
I you do it like this:
import {IonicApp} from ‘ionic-angular’
import {Injectable} from ‘angular2/core’;
import {Observable} from ‘rxjs/Observable’;
import ‘rxjs/add/operator/share’
import * as io from ‘socket.io-client’
//services
import {Config} from ‘…/config/config’
@Injectable()
export class ConnectionService {
conf : Config;
info : string;
nav$ : Observable<{}>;
_navObserver : any;
app;
private _isConnected: boolean;