Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Been working on this for a while and just can't get google to accept that I've done what they want so they keep sending me notifications for the same order. The documentation on this is available here:

Google Notification Acknowledgement Documentation

Here is my code on the page which recieves google notifcations:

 string serial = Request["serial-number"];

 // do my stuff

 StringBuilder responseXml = new StringBuilder();
 responseXml.Append("<?xml version='1.0' encoding='UTF-8'?>");
 responseXml.Append("<notifiation-acknowledgment xmlns=\"http://checkout.google.com/schema/2/\" serial-number=\"");
 responseXml.Append(Request["serial-number"]);
 responseXml.Append("\" />");

 HttpResponse response = HttpContext.Current.Response;
 response.StatusCode = 200;
 response.ContentType = "text/xml";
 response.Write(responseXml.ToString());
share|improve this question
You should really XML-escape the serial number as you append it. But I can't see anything wrong - maybe try ending with an AppendLine for a line feed? Or omitting the <?xml, or making sure there's a line break between that and the notification too? – Rup May 17 '11 at 22:33
Have you tried just using the GCheckout api for this? It encapsulates the google checkout calls into a library. code.google.com/apis/checkout/samples/… – briercan May 17 '11 at 23:12
'Note: The .NET sample code distribution does not include classes or methods to process notifications or to send notification acknowledgments.' – nextgenneo May 18 '11 at 1:09
I am using it just yeah, like I said above no examples for notifications and can't find any code to post the correct response. – nextgenneo May 18 '11 at 1:09
Are you doing response.clear() and response.headers.clear() before this code? If not, this could cause problems if in a Page because of the default HTML generated. Also, try using response.end() after the last line to ensure your response stream is flushed to output. – NightOwl888 May 18 '11 at 8:01

1 Answer

You have misspelt "notification-acknowledgment" as "notifiation-acknowledgment".

I would also suggest using GCheckout as briercan said in the comments. If you use that, then all you would have to do is:

var ack = new GCheckout.AutoGen.NotificationAcknowledgment();
ack.serialnumber = serial;
Response.BinaryWrite(GCheckout.Util.EncodeHelper.Serialize(ack));
Response.StatusCode = 200;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.