In the Angular 2 documentation, they provide examples that also use HTTP for communication.
import { HTTP_PROVIDERS } from '@angular/http';
import { HeroService } from './hero.service';
@Component({
selector: 'my-toh',
template: `
<hero-list></hero-list>
`,
directives: [HeroListComponent],
providers: [
HTTP_PROVIDERS,
HeroService,
]
})