How to get response from ajax method with jsonp?

How to get response from ajax method with jsonp?

Hi dears,

I'm using this code to call ASP.net web service on remote server:
  1. $.ajax({
  2.     type: "GET",
  3.     url: 'http://url',
  4.     data: "parameter=hello",
  5.     dataType: "jsonp",
  6.     contentType: "text/xml",
  7.     success: function (data, textStatus, jqXHR) {
  8.         alert(data.length);
  9.     },
  10.     complete: function (jqXHR, textStatus) {
  11.         alert('complete');
  12.     },
  13.     error: function (jqXHR, textStatus, errorThrow) {
  14.         alert('error function');
  15.     }
  16. });
But no alert and I got error:
  1. SyntaxError: syntax error
And the response from FireBug is:
  1. <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://tempuri.org/">Hello Aidy</string>
Appreciate your feedback.

Thank you.