I can successfully receive values from my web service so in that repect the script is working fine. However I am now trying to send data to the webservice using the \'data\' fie
jQuery takes the data argument and converts it into the appropriate type of request variables.
So you use something like:
data: { myParameterName: "myParameterValue", myParameterName2: "myParameterValue2" }
and jQuery does the rest of the work for you.
A specific example based on a comment:
data: { toSend: "test" }