The service appears to be correctly coded as it's the stock code Visual Studio 2010 generates by default. I run it and test it and works fine. I deploy to Godaddy, but can't seem to able to get information back.
This is the deployed service: http://kb.enmiami.info/kb/Service1.svc?wsdl
I'm trying this code.. I get no error, it just seems to spin and time out.
<html>
<body>
should get an alert
</body>
</html>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var param = 1;
$.ajax({
type: "GET",
url: "http://kb.enmiami.info/kb/Service1.svc/GetData",
data: param,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (result) {
alert(result.d);
}
});
});
</script>