não é possível iniciar o serviço a partir do AsyncTask

Eu estou tentando iniciar o serviço de AsyncTask, mas não posso ver que o seu começa. Eu também adicionei Service no arquivo manefast.

aqui o código:

protected Integer  doInBackground(Void... values) throws InterruptedException {
    //starts service number activite
    Intent serviceIntent = new Intent();
    serviceIntent.setAction("services.conServise");
    context.startService(serviceIntent);

e o arquivo de manifesto:

   <service android:name="services.conServise"></service>

  </application>

obrigado pela ajuda.

questionAnswers(2)

yourAnswerToTheQuestion