|
List Info
Thread: Google checkout Notification
|
|
| Google checkout Notification |

|
2007-12-19 23:24:19 |
Hello
I'm new to this forum, however i've been reading this forum
for quite
a while. I'm trying to implement google checkout on my site
but
unfortunately got stuck on a couple of issues.
So far what i've achieved is: i'm able to click on the
google checkout
button, it takes me to the google checkout page, and able to
complete
the order. when i log into my merchant account it shows the
order etc.
Now, i'm implementing the notifications, for that i've set
the
callback url and saved it.
Now, issues here are:
1) i'm using notification sender application to send the
notification,
so that i can debug into my website and see the order
notification
etc,
i'm running both notification sender app and my website on
the local
machine, i've a notification page in my website where i
expect to get
the notifications, i've a breakpoint on the page load of
Notification.aspx page and stepping into it. I've a select
case as
follows:
Select Case (EncodeHelper.GetTopElement(RequestXml))
Case "new-order-nofication"
Dim N1 As NewOrderNotification =
CTypeEncodeHelper.Deserialize(RequestXml),
NewOrderNotification)
.
.
Case "risk-information-notification"
Dim N2 As RiskInformationNotification =
CType(EncodeHelper.Deserialize(RequestXml),
RiskInformationNotification)
Dim OrderNumber2 As String =
N2.googleordernumber
But it is not going inside either of the case statement, so
when i
check the value of EncodeHelper.GetTopElement(Requestxml),
it says:
EncodeHelper.GetTopElement is not declared or the module
containing it
is not loaded
2) In the sandbox environment, i've set the callback url to
the
notification page in my site, but after i complete the
order, i get
the following error message in the Integration console.
We encountered an error trying to access your server at
http://
www.callbabycall.com/Notification.aspx -- the error we
got is:
Send failed with code: 401. Response body was: <!DOCTYPE
HTML PUBLIC
"-//W3C//DTD HTML 4.01//EN" "http:
//www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>You are not authorized
to view this page</TITLE>
<META HTTP-EQUIV="Content-Type"
Content="text/html;
charset=Windows-1252"> <STYLE
type="text/css"> BODY { font: 8pt/12pt
verdana } H1 { font: 13pt/15pt verdana } H2 { font: 8pt/12pt
verdana }
A:link { color: red } A:visited { color: maroon }
</STYLE> </
HEAD><BODY><TABLE width=500 border=0
cellspacing=10><TR><TD> <h1>You
are not authorized to view this page</h1> You do not
have permission
to view this directory or page using the credentials that
you
supplied. <hr> <p>Please try the
following:</p> <ul> <li>Contact the
Web site administrator if you believe you should be able to
view this
directory or page.</li> <li>Click the <a
href="javascript:location.reload()">Refresh<
/a> button to try again
with different credentials.</li> </ul>
<h2>HTTP Error 401.1 -
Unauthorized: Access is denied due to invalid
credentials.<br>Internet
Information Services (IIS)</h2> <hr>
<p>Technical Information (for
support personnel)</p> <ul> <li>Go to
<a href="http://go.microsoft.com/
fwlink/?linkid=8180">Microsoft Product Support
Services</a> and
perform a title search for the words <b>HTTP</b>
and <b>401</b>.</li>
<li>Open <b>IIS Help</b>, which is
accessible in IIS Manager
(inetmgr), and search for topics titled
<b>Authentication</b>,
<b>Access Control</b>, and <b>About Custom
Error Messages</b>.</li> </
ul>
</TD></TR></TABLE></BODY></HTML&g
t;
Please give me some idea what is going on? In the previous
thread, it
has been suggested, either i've to create the username and
password or
change the Basic authentication to Anonymous in the IIS.
When i talked
to my hosting company, they are reluctant to change the IIS
Setting,
so i've to go for the first option to create username and
password.
How and where do i create username and password? Please give
me some
ideas.
Thanks in advance!!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Google checkout Notification |

|
2007-12-20 09:56:18 |
you should send this email to the classic-asp or .net lists
since
they'll be able to better help you with IIS and with your
programming
questions, unfortunately i've never messed around with asp
or IIS
the emails are:
google-checkout-api-classicasp googlegroups.com
google-checkout-api-dotnet googlegroups.com
cheers,
On Dec 20, 2007 2:24 AM, Raj <Chris1772 gmail.com> wrote:
>
> Hello
> I'm new to this forum, however i've been reading this
forum for quite
> a while. I'm trying to implement google checkout on my
site but
> unfortunately got stuck on a couple of issues.
>
> So far what i've achieved is: i'm able to click on the
google checkout
> button, it takes me to the google checkout page, and
able to complete
> the order. when i log into my merchant account it shows
the order etc.
> Now, i'm implementing the notifications, for that i've
set the
> callback url and saved it.
>
> Now, issues here are:
>
> 1) i'm using notification sender application to send
the notification,
> so that i can debug into my website and see the order
notification
> etc,
> i'm running both notification sender app and my website
on the local
> machine, i've a notification page in my website where i
expect to get
> the notifications, i've a breakpoint on the page load
of
> Notification.aspx page and stepping into it. I've a
select case as
> follows:
>
> Select Case (EncodeHelper.GetTopElement(RequestXml))
> Case "new-order-nofication"
> Dim N1 As NewOrderNotification =
> CTypeEncodeHelper.Deserialize(RequestXml),
NewOrderNotification)
> .
> .
> Case "risk-information-notification"
> Dim N2 As RiskInformationNotification
=
> CType(EncodeHelper.Deserialize(RequestXml),
> RiskInformationNotification)
> Dim OrderNumber2 As String =
N2.googleordernumber
>
> But it is not going inside either of the case
statement, so when i
> check the value of
EncodeHelper.GetTopElement(Requestxml), it says:
> EncodeHelper.GetTopElement is not declared or the
module containing it
> is not loaded
>
>
> 2) In the sandbox environment, i've set the callback
url to the
> notification page in my site, but after i complete the
order, i get
> the following error message in the Integration
console.
>
> We encountered an error trying to access your server
at
> http://
www.callbabycall.com/Notification.aspx -- the error we
got is:
> Send failed with code: 401. Response body was:
<!DOCTYPE HTML PUBLIC
> "-//W3C//DTD HTML 4.01//EN" "http:
//www.w3.org/TR/html4/strict.dtd">
> <HTML><HEAD><TITLE>You are not
authorized to view this page</TITLE>
> <META HTTP-EQUIV="Content-Type"
Content="text/html;
> charset=Windows-1252"> <STYLE
type="text/css"> BODY { font: 8pt/12pt
> verdana } H1 { font: 13pt/15pt verdana } H2 { font:
8pt/12pt verdana }
> A:link { color: red } A:visited { color: maroon }
</STYLE> </
> HEAD><BODY><TABLE width=500 border=0
cellspacing=10><TR><TD> <h1>You
> are not authorized to view this page</h1> You do
not have permission
> to view this directory or page using the credentials
that you
> supplied. <hr> <p>Please try the
following:</p> <ul> <li>Contact the
> Web site administrator if you believe you should be
able to view this
> directory or page.</li> <li>Click the
<a
>
href="javascript:location.reload()">Refresh<
/a> button to try again
> with different credentials.</li> </ul>
<h2>HTTP Error 401.1 -
> Unauthorized: Access is denied due to invalid
credentials.<br>Internet
> Information Services (IIS)</h2> <hr>
<p>Technical Information (for
> support personnel)</p> <ul> <li>Go to
<a href="http://go.microsoft.com/
> fwlink/?linkid=8180">Microsoft Product Support
Services</a> and
> perform a title search for the words
<b>HTTP</b> and
<b>401</b>.</li>
> <li>Open <b>IIS Help</b>, which is
accessible in IIS Manager
> (inetmgr), and search for topics titled
<b>Authentication</b>,
> <b>Access Control</b>, and <b>About
Custom Error Messages</b>.</li> </
> ul>
</TD></TR></TABLE></BODY></HTML&g
t;
>
>
> Please give me some idea what is going on? In the
previous thread, it
> has been suggested, either i've to create the username
and password or
> change the Basic authentication to Anonymous in the
IIS. When i talked
> to my hosting company, they are reluctant to change
the IIS Setting,
> so i've to go for the first option to create username
and password.
> How and where do i create username and password? Please
give me some
> ideas.
>
> Thanks in advance!!
> >
>
--
pablof
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Google checkout Notification |

|
2007-12-20 10:57:07 |
I had the same problem. You (or your ISP) need to create a
user
account in windows with merchandid and merchandkey as
username and
password and map that account to your google checkout
folder. That
will take care of the 401 error.
franz
On Dec 20, 12:24 am, Raj <Chris1... gmail.com> wrote:
> Hello
> I'm new to this forum, however i've been reading this
forum for quite
> a while. I'm trying to implement google checkout on my
site but
> unfortunately got stuck on a couple of issues.
>
> So far what i've achieved is: i'm able to click on the
google checkout
> button, it takes me to the google checkout page, and
able to complete
> the order. when i log into my merchant account it shows
the order etc.
> Now, i'm implementing the notifications, for that i've
set the
> callback url and saved it.
>
> Now, issues here are:
>
> 1) i'm using notification sender application to send
the notification,
> so that i can debug into my website and see the order
notification
> etc,
> i'm running both notification sender app and my website
on the local
> machine, i've a notification page in my website where i
expect to get
> the notifications, i've a breakpoint on the page load
of
> Notification.aspx page and stepping into it. I've a
select case as
> follows:
>
> Select Case (EncodeHelper.GetTopElement(RequestXml))
> Case "new-order-nofication"
> Dim N1 As NewOrderNotification =
> CTypeEncodeHelper.Deserialize(RequestXml),
NewOrderNotification)
> .
> .
> Case "risk-information-notification"
> Dim N2 As RiskInformationNotification
=
> CType(EncodeHelper.Deserialize(RequestXml),
> RiskInformationNotification)
> Dim OrderNumber2 As String =
N2.googleordernumber
>
> But it is not going inside either of the case
statement, so when i
> check the value of
EncodeHelper.GetTopElement(Requestxml), it says:
> EncodeHelper.GetTopElement is not declared or the
module containing it
> is not loaded
>
> 2) In the sandbox environment, i've set the callback
url to the
> notification page in my site, but after i complete the
order, i get
> the following error message in the Integration
console.
>
> We encountered an error trying to access your server
athttp:
//www.callbabycall.com/Notification.aspx-- the error we
got is:
> Send failed with code: 401. Response body was:
<!DOCTYPE HTML PUBLIC
> "-//W3C//DTD HTML 4.01//EN" "http:
//www.w3.org/TR/html4/strict.dtd">
> <HTML><HEAD><TITLE>You are not
authorized to view this page</TITLE>
> <META HTTP-EQUIV="Content-Type"
Content="text/html;
> charset=Windows-1252"> <STYLE
type="text/css"> BODY { font: 8pt/12pt
> verdana } H1 { font: 13pt/15pt verdana } H2 { font:
8pt/12pt verdana }
> A:link { color: red } A:visited { color: maroon }
</STYLE> </
> HEAD><BODY><TABLE width=500 border=0
cellspacing=10><TR><TD> <h1>You
> are not authorized to view this page</h1> You do
not have permission
> to view this directory or page using the credentials
that you
> supplied. <hr> <p>Please try the
following:</p> <ul> <li>Contact the
> Web site administrator if you believe you should be
able to view this
> directory or page.</li> <li>Click the
<a
>
href="javascript:location.reload()">Refresh<
/a> button to try again
> with different credentials.</li> </ul>
<h2>HTTP Error 401.1 -
> Unauthorized: Access is denied due to invalid
credentials.<br>Internet
> Information Services (IIS)</h2> <hr>
<p>Technical Information (for
> support personnel)</p> <ul> <li>Go to
<a href="http://go.microsoft.com/
> fwlink/?linkid=8180">Microsoft Product Support
Services</a> and
> perform a title search for the words
<b>HTTP</b> and
<b>401</b>.</li>
> <li>Open <b>IIS Help</b>, which is
accessible in IIS Manager
> (inetmgr), and search for topics titled
<b>Authentication</b>,
> <b>Access Control</b>, and <b>About
Custom Error Messages</b>.</li> </
> ul>
</TD></TR></TABLE></BODY></HTML&g
t;
>
> Please give me some idea what is going on? In the
previous thread, it
> has been suggested, either i've to create the username
and password or
> change the Basic authentication to Anonymous in the
IIS. When i talked
> to my hosting company, they are reluctant to change
the IIS Setting,
> so i've to go for the first option to create username
and password.
> How and where do i create username and password? Please
give me some
> ideas.
>
> Thanks in advance!!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Google checkout Notification |

|
2007-12-21 01:38:53 |
Thanks for the reply and info. I will send it there.
On Dec 20, 10:56 am, pablof <pab... gmail.com> wrote:
> you should send this email to the classic-asp or .net
lists since
> they'll be able to better help you with IIS and with
your programming
> questions, unfortunately i've never messed around with
asp or IIS
>
> the emails are:
> google-checkout-api-classicasp googlegroups.com
> google-checkout-api-dotnet googlegroups.com
>
> cheers,
>
> On Dec 20, 2007 2:24 AM, Raj <Chris1... gmail.com> wrote:
>
>
>
>
>
> > Hello
> > I'm new to this forum, however i've been reading
this forum for quite
> > a while. I'm trying to implement google checkout
on my site but
> > unfortunately got stuck on a couple of issues.
>
> > So far what i've achieved is: i'm able to click on
the google checkout
> > button, it takes me to the google checkout page,
and able to complete
> > the order. when i log into my merchant account it
shows the order etc.
> > Now, i'm implementing the notifications, for that
i've set the
> > callback url and saved it.
>
> > Now, issues here are:
>
> > 1) i'm using notification sender application to
send the notification,
> > so that i can debug into my website and see the
order notification
> > etc,
> > i'm running both notification sender app and my
website on the local
> > machine, i've a notification page in my website
where i expect to get
> > the notifications, i've a breakpoint on the page
load of
> > Notification.aspx page and stepping into it. I've
a select case as
> > follows:
>
> > Select Case
(EncodeHelper.GetTopElement(RequestXml))
> > Case "new-order-nofication"
> > Dim N1 As NewOrderNotification =
> > CTypeEncodeHelper.Deserialize(RequestXml),
NewOrderNotification)
> > .
> > .
> > Case "risk-information-notification"
> > Dim N2 As
RiskInformationNotification =
> > CType(EncodeHelper.Deserialize(RequestXml),
> > RiskInformationNotification)
> > Dim OrderNumber2 As String =
N2.googleordernumber
>
> > But it is not going inside either of the case
statement, so when i
> > check the value of
EncodeHelper.GetTopElement(Requestxml), it says:
> > EncodeHelper.GetTopElement is not declared or the
module containing it
> > is not loaded
>
> > 2) In the sandbox environment, i've set the
callback url to the
> > notification page in my site, but after i complete
the order, i get
> > the following error message in the Integration
console.
>
> > We encountered an error trying to access your
server at
> >http:
//www.callbabycall.com/Notification.aspx-- the error we
got is:
> > Send failed with code: 401. Response body was:
<!DOCTYPE HTML PUBLIC
> > "-//W3C//DTD HTML 4.01//EN" "http:
//www.w3.org/TR/html4/strict.dtd">
> > <HTML><HEAD><TITLE>You are not
authorized to view this page</TITLE>
> > <META HTTP-EQUIV="Content-Type"
Content="text/html;
> > charset=Windows-1252"> <STYLE
type="text/css"> BODY { font: 8pt/12pt
> > verdana } H1 { font: 13pt/15pt verdana } H2 {
font: 8pt/12pt verdana }
> > A:link { color: red } A:visited { color: maroon }
</STYLE> </
> > HEAD><BODY><TABLE width=500 border=0
cellspacing=10><TR><TD> <h1>You
> > are not authorized to view this page</h1>
You do not have permission
> > to view this directory or page using the
credentials that you
> > supplied. <hr> <p>Please try the
following:</p> <ul> <li>Contact the
> > Web site administrator if you believe you should
be able to view this
> > directory or page.</li> <li>Click the
<a
> >
href="javascript:location.reload()">Refresh<
/a> button to try again
> > with different credentials.</li> </ul>
<h2>HTTP Error 401.1 -
> > Unauthorized: Access is denied due to invalid
credentials.<br>Internet
> > Information Services (IIS)</h2> <hr>
<p>Technical Information (for
> > support personnel)</p> <ul>
<li>Go to <a href="http://go.microsoft.com/
> > fwlink/?linkid=8180">Microsoft Product
Support Services</a> and
> > perform a title search for the words
<b>HTTP</b> and
<b>401</b>.</li>
> > <li>Open <b>IIS Help</b>, which
is accessible in IIS Manager
> > (inetmgr), and search for topics titled
<b>Authentication</b>,
> > <b>Access Control</b>, and
<b>About Custom Error Messages</b>.</li>
</
> > ul>
</TD></TR></TABLE></BODY></HTML&g
t;
>
> > Please give me some idea what is going on? In the
previous thread, it
> > has been suggested, either i've to create the
username and password or
> > change the Basic authentication to Anonymous in
the IIS. When i talked
> > to my hosting company, they are reluctant to
change the IIS Setting,
> > so i've to go for the first option to create
username and password.
> > How and where do i create username and password?
Please give me some
> > ideas.
>
> > Thanks in advance!!
>
> --
> pablof
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Google checkout Notification |

|
2007-12-21 01:44:37 |
franz,
thanks for the reply. I still didn't understand your point.
where the
account should be created? do u mean on the server where
i've hosted
my website? would u please give some detail info ?
thanks!
On Dec 20, 11:57 am, no nickname <franz.feeling... gmail.com> wrote:
> I had the same problem. You (or your ISP) need to
create a user
> account in windows with merchandid and merchandkey as
username and
> password and map that account to your google checkout
folder. That
> will take care of the 401 error.
>
> franz
>
> On Dec 20, 12:24 am, Raj <Chris1... gmail.com> wrote:
>
> > Hello
> > I'm new to this forum, however i've been reading
this forum for quite
> > a while. I'm trying to implement google checkout
on my site but
> > unfortunately got stuck on a couple of issues.
>
> > So far what i've achieved is: i'm able to click on
the google checkout
> > button, it takes me to the google checkout page,
and able to complete
> > the order. when i log into my merchant account it
shows the order etc.
> > Now, i'm implementing the notifications, for that
i've set the
> > callback url and saved it.
>
> > Now, issues here are:
>
> > 1) i'm using notification sender application to
send the notification,
> > so that i can debug into my website and see the
order notification
> > etc,
> > i'm running both notification sender app and my
website on the local
> > machine, i've a notification page in my website
where i expect to get
> > the notifications, i've a breakpoint on the page
load of
> > Notification.aspx page and stepping into it. I've
a select case as
> > follows:
>
> > Select Case
(EncodeHelper.GetTopElement(RequestXml))
> > Case "new-order-nofication"
> > Dim N1 As NewOrderNotification =
> > CTypeEncodeHelper.Deserialize(RequestXml),
NewOrderNotification)
> > .
> > .
> > Case "risk-information-notification"
> > Dim N2 As
RiskInformationNotification =
> > CType(EncodeHelper.Deserialize(RequestXml),
> > RiskInformationNotification)
> > Dim OrderNumber2 As String =
N2.googleordernumber
>
> > But it is not going inside either of the case
statement, so when i
> > check the value of
EncodeHelper.GetTopElement(Requestxml), it says:
> > EncodeHelper.GetTopElement is not declared or the
module containing it
> > is not loaded
>
> > 2) In the sandbox environment, i've set the
callback url to the
> > notification page in my site, but after i complete
the order, i get
> > the following error message in the Integration
console.
>
> > We encountered an error trying to access your
server atht
tp://www.callbabycall.com/Notification.aspx--the error
we got is:
> > Send failed with code: 401. Response body was:
<!DOCTYPE HTML PUBLIC
> > "-//W3C//DTD HTML 4.01//EN" "http:
//www.w3.org/TR/html4/strict.dtd">
> > <HTML><HEAD><TITLE>You are not
authorized to view this page</TITLE>
> > <META HTTP-EQUIV="Content-Type"
Content="text/html;
> > charset=Windows-1252"> <STYLE
type="text/css"> BODY { font: 8pt/12pt
> > verdana } H1 { font: 13pt/15pt verdana } H2 {
font: 8pt/12pt verdana }
> > A:link { color: red } A:visited { color: maroon }
</STYLE> </
> > HEAD><BODY><TABLE width=500 border=0
cellspacing=10><TR><TD> <h1>You
> > are not authorized to view this page</h1>
You do not have permission
> > to view this directory or page using the
credentials that you
> > supplied. <hr> <p>Please try the
following:</p> <ul> <li>Contact the
> > Web site administrator if you believe you should
be able to view this
> > directory or page.</li> <li>Click the
<a
> >
href="javascript:location.reload()">Refresh<
/a> button to try again
> > with different credentials.</li> </ul>
<h2>HTTP Error 401.1 -
> > Unauthorized: Access is denied due to invalid
credentials.<br>Internet
> > Information Services (IIS)</h2> <hr>
<p>Technical Information (for
> > support personnel)</p> <ul>
<li>Go to <a href="http://go.microsoft.com/
> > fwlink/?linkid=8180">Microsoft Product
Support Services</a> and
> > perform a title search for the words
<b>HTTP</b> and
<b>401</b>.</li>
> > <li>Open <b>IIS Help</b>, which
is accessible in IIS Manager
> > (inetmgr), and search for topics titled
<b>Authentication</b>,
> > <b>Access Control</b>, and
<b>About Custom Error Messages</b>.</li>
</
> > ul>
</TD></TR></TABLE></BODY></HTML&g
t;
>
> > Please give me some idea what is going on? In the
previous thread, it
> > has been suggested, either i've to create the
username and password or
> > change the Basic authentication to Anonymous in
the IIS. When i talked
> > to my hosting company, they are reluctant to
change the IIS Setting,
> > so i've to go for the first option to create
username and password.
> > How and where do i create username and password?
Please give me some
> > ideas.
>
> > Thanks in advance!!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
| Re: Google checkout Notification |

|
2007-12-26 06:43:04 |
You need to create a user account on your windows server.
Maybe you
have to ask your isp.
user name and password are your merchand-id and
merchant-key.
On Dec 21, 2:44 am, Raj <Chris1... gmail.com> wrote:
> franz,
> thanks for the reply. I still didn't understand your
point. where the
> account should be created? do u mean on the server
where i've hosted
> my website? would u please give some detail info ?
>
> thanks!
>
> On Dec 20, 11:57 am, no nickname
<franz.feeling... gmail.com> wrote:
>
> > I had the same problem. You (or your ISP) need to
create a user
> > account in windows with merchandid and merchandkey
as username and
> > password and map that account to your google
checkout folder. That
> > will take care of the 401 error.
>
> > franz
>
> > On Dec 20, 12:24 am, Raj <Chris1... gmail.com> wrote:
>
> > > Hello
> > > I'm new to this forum, however i've been
reading this forum for quite
> > > a while. I'm trying to implement google
checkout on my site but
> > > unfortunately got stuck on a couple of
issues.
>
> > > So far what i've achieved is: i'm able to
click on the google checkout
> > > button, it takes me to the google checkout
page, and able to complete
> > > the order. when i log into my merchant
account it shows the order etc.
> > > Now, i'm implementing the notifications, for
that i've set the
> > > callback url and saved it.
>
> > > Now, issues here are:
>
> > > 1) i'm using notification sender application
to send the notification,
> > > so that i can debug into my website and see
the order notification
> > > etc,
> > > i'm running both notification sender app and
my website on the local
> > > machine, i've a notification page in my
website where i expect to get
> > > the notifications, i've a breakpoint on the
page load of
> > > Notification.aspx page and stepping into it.
I've a select case as
> > > follows:
>
> > > Select Case
(EncodeHelper.GetTopElement(RequestXml))
> > > Case
"new-order-nofication"
> > > Dim N1 As
NewOrderNotification =
> > > CTypeEncodeHelper.Deserialize(RequestXml),
NewOrderNotification)
> > > .
> > > .
> > > Case
"risk-information-notification"
> > > Dim N2 As
RiskInformationNotification =
> > > CType(EncodeHelper.Deserialize(RequestXml),
> > > RiskInformationNotification)
> > > Dim OrderNumber2 As String =
N2.googleordernumber
>
> > > But it is not going inside either of the case
statement, so when i
> > > check the value of
EncodeHelper.GetTopElement(Requestxml), it says:
> > > EncodeHelper.GetTopElement is not declared or
the module containing it
> > > is not loaded
>
> > > 2) In the sandbox environment, i've set the
callback url to the
> > > notification page in my site, but after i
complete the order, i get
> > > the following error message in the
Integration console.
>
> > > We encountered an error trying to access your
server athttp://www.callbabycall.com/Notification.aspx--theerror
a> we got is:
> > > Send failed with code: 401. Response body
was: <!DOCTYPE HTML PUBLIC
> > > "-//W3C//DTD HTML 4.01//EN"
"http:
//www.w3.org/TR/html4/strict.dtd">
> > > <HTML><HEAD><TITLE>You are
not authorized to view this page</TITLE>
> > > <META HTTP-EQUIV="Content-Type"
Content="text/html;
> > > charset=Windows-1252"> <STYLE
type="text/css"> BODY { font: 8pt/12pt
> > > verdana } H1 { font: 13pt/15pt verdana } H2 {
font: 8pt/12pt verdana }
> > > A:link { color: red } A:visited { color:
maroon } </STYLE> </
> > > HEAD><BODY><TABLE width=500
border=0 cellspacing=10><TR><TD>
<h1>You
> > > are not authorized to view this
page</h1> You do not have permission
> > > to view this directory or page using the
credentials that you
> > > supplied. <hr> <p>Please try the
following:</p> <ul> <li>Contact the
> > > Web site administrator if you believe you
should be able to view this
> > > directory or page.</li> <li>Click
the <a
> > >
href="javascript:location.reload()">Refresh<
/a> button to try again
> > > with different credentials.</li>
</ul> <h2>HTTP Error 401.1 -
> > > Unauthorized: Access is denied due to invalid
credentials.<br>Internet
> > > Information Services (IIS)</h2>
<hr> <p>Technical Information (for
> > > support personnel)</p> <ul>
<li>Go to <a href="http://go.microsoft.com/
> > > fwlink/?linkid=8180">Microsoft
Product Support Services</a> and
> > > perform a title search for the words
<b>HTTP</b> and
<b>401</b>.</li>
> > > <li>Open <b>IIS Help</b>,
which is accessible in IIS Manager
> > > (inetmgr), and search for topics titled
<b>Authentication</b>,
> > > <b>Access Control</b>, and
<b>About Custom Error Messages</b>.</li>
</
> > > ul>
</TD></TR></TABLE></BODY></HTML&g
t;
>
> > > Please give me some idea what is going on? In
the previous thread, it
> > > has been suggested, either i've to create the
username and password or
> > > change the Basic authentication to Anonymous
in the IIS. When i talked
> > > to my hosting company, they are reluctant to
change the IIS Setting,
> > > so i've to go for the first option to create
username and password.
> > > How and where do i create username and
password? Please give me some
> > > ideas.
>
> > > Thanks in advance!!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "API Integration Basics" group.
To post to this group, send email to
google-checkout-api-integration googlegroups.com
To unsubscribe from this group, send email to
google-checkout-api-integration-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com/group/google-checko
ut-api-integration?hl=en
-~----------~----~----~----~------~----~------~--~---
|
|
[1-6]
|
|