List Info

Thread: Order Confirmation




Order Confirmation
country flaguser name
United States
2007-05-29 01:08:27
Hi,

      I integrated my .net appliaction with google check out
.its
working fine. now i just want to move the same into live
before that i
would like to clarify some more doubts.
     1. In my sandbox account under profile tab for
"Public business
website:" field i given my receipt page and i am
updating my
application order details from that page(I am not sure its a
correct
method,if yes is there any way to track my order id from
here)

     2.In my sandbox account under integration tab  for
"API callback
URL: " field i given my notification page and inside
that page i coded
based on notification case (eg.
order-state-change-notification,charge-
amount-notification etc)...I know that in this page i can
track Google
internal order no ,but could you explain me how i can link
the same
with my application order no....) Shall i need to take care
about any
other settings....


Basically i need to track my order after sending payment
request to
google check out...

Thanks in advance

Suthin


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups ".NET & Google Checkout API"
group.
To post to this group, send email to
google-checkout-api-dotnetgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-dotnet-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checkout-ap
i-dotnet?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Order Confirmation
country flaguser name
United States
2007-05-29 11:16:30
Hi.  Im looking for the same thing!

With PayPal, I redirect the user to paypay, and pass through
my own
order number.  Once the payment is sucessful, paypal
redirects back to
my site.
I then update the database and display my own confirmation
page to the
user.

This is what i need with google checkout.

The way in uderstand it is the notify api is asynchronous?


Suthin,

I have found a semi work around.  Before doing a redirect, I
get the
serial number and store it against my order Id.  Later when
google
does the notify api call, I match it with stored serial
number.  This
however, does not solve my issue.  (Displaying a custom
confirmation
page)

Dim Req As CheckoutShoppingCartRequest =
GCheckoutButton1.CreateRequest

Req.AddItem("name", "description" 0.0,
1)

Dim Resp As GCheckoutResponse = Req.Send

'Get google serial number for notify api
Dim sSerialNumber As String = Resp.SerialNumber
If sSerialNumber <> String.Empty Then
     'Update database with google serial number
End If

Response.Redirect(Resp.RedirectUrl, True)

On May 29, 7:08 am, suthin <suthin.pay...gmail.com> wrote:
> Hi,
>
>       I integrated my .net appliaction with google
check out .its
> working fine. now i just want to move the same into
live before that i
> would like to clarify some more doubts.
>      1. In my sandbox account under profile tab for
"Public business
> website:" field i given my receipt page and i am
updating my
> application order details from that page(I am not sure
its a correct
> method,if yes is there any way to track my order id
from here)
>
>      2.In my sandbox account under integration tab  for
"API callback
> URL: " field i given my notification page and
inside that page i coded
> based on notification case (eg.
order-state-change-notification,charge-
> amount-notification etc)...I know that in this page i
can track Google
> internal order no ,but could you explain me how i can
link the same
> with my application order no....) Shall i need to take
care about any
> other settings....
>
> Basically i need to track my order after sending
payment request to
> google check out...
>
> Thanks in advance
>
> Suthin


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups ".NET & Google Checkout API"
group.
To post to this group, send email to
google-checkout-api-dotnetgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-dotnet-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checkout-ap
i-dotnet?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Order Confirmation
country flaguser name
United States
2007-05-29 23:37:00
All,

The API is async. You will not be able to get a response
back when you
you send the customer to Google Checkout.

What is your end goal, to determine if the user has placed
an order or
not?

Joe

On May 29, 12:16 pm, doof <l...lucascullen.com> wrote:
> Hi.  Im looking for the same thing!
>
> With PayPal, I redirect the user to paypay, and pass
through my own
> order number.  Once the payment is sucessful, paypal
redirects back to
> my site.
> I then update the database and display my own
confirmation page to the
> user.
>
> This is what i need with google checkout.
>
> The way in uderstand it is the notify api is
asynchronous?
>
> Suthin,
>
> I have found a semi work around.  Before doing a
redirect, I get the
> serial number and store it against my order Id.  Later
when google
> does the notify api call, I match it with stored serial
number.  This
> however, does not solve my issue.  (Displaying a custom
confirmation
> page)
>
> Dim Req As CheckoutShoppingCartRequest =
> GCheckoutButton1.CreateRequest
>
> Req.AddItem("name", "description"
0.0, 1)
>
> Dim Resp As GCheckoutResponse = Req.Send
>
> 'Get google serial number for notify api
> Dim sSerialNumber As String = Resp.SerialNumber
> If sSerialNumber <> String.Empty Then
>      'Update database with google serial number
> End If
>
> Response.Redirect(Resp.RedirectUrl, True)
>
> On May 29, 7:08 am, suthin <suthin.pay...gmail.com> wrote:
>
>
>
> > Hi,
>
> >       I integrated my .net appliaction with google
check out .its
> > working fine. now i just want to move the same
into live before that i
> > would like to clarify some more doubts.
> >      1. In my sandbox account under profile tab
for "Public business
> > website:" field i given my receipt page and i
am updating my
> > application order details from that page(I am not
sure its a correct
> > method,if yes is there any way to track my order
id from here)
>
> >      2.In my sandbox account under integration tab
 for "API callback
> > URL: " field i given my notification page and
inside that page i coded
> > based on notification case (eg.
order-state-change-notification,charge-
> > amount-notification etc)...I know that in this
page i can track Google
> > internal order no ,but could you explain me how i
can link the same
> > with my application order no....) Shall i need to
take care about any
> > other settings....
>
> > Basically i need to track my order after sending
payment request to
> > google check out...
>
> > Thanks in advance
>
> > Suthin- Hide quoted text -
>
> - Show quoted text -


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups ".NET & Google Checkout API"
group.
To post to this group, send email to
google-checkout-api-dotnetgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-dotnet-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checkout-ap
i-dotnet?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Order Confirmation
country flaguser name
United States
2007-05-30 01:42:04
Simple way of this problem when sending order to google
checkout in
merchant private data store ur orderid and sent to google
when google
sent u new order notification so here ur orderid in private
data match
this ur database and insert googleid against ur orderid some
u can
track ur order........

best recard

Abdul haseeb



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups ".NET & Google Checkout API"
group.
To post to this group, send email to
google-checkout-api-dotnetgooglegroups.com
To unsubscribe from this group, send email to
google-checkout-api-dotnet-unsubscribegooglegroups.com
For more options, visit this group at http://groups.google.com/group/google-checkout-ap
i-dotnet?hl=en
-~----------~----~----~----~------~----~------~--~---


[1-4]

about | contact  Other archives ( Real Estate discussion Medical topics )