this.pollTasks = Observable.interval(15000)
.switchMap(() => this.http.get(this.apiurl + 'longpoll'+ '/' + this.lastmessage))
.map(res => {res.json();console.log(res);});
this.pollTasks.subscribe(res => {
this.Message(res);
});