AdWords API Re: is sandbox (for v200906) up?

2010-03-12 Thread AdWords API Advisor
Hi,

The changes to the validation are listed here:

  
http://groups.google.com/group/adwords-api/browse_thread/thread/f5057acf438bc702/

In regards to the namespace prefix declarations, below is an example
of a request that will fail the new validation:

http://schemas.xmlsoap.org/soap/
envelope/" xmlns:v20="https://adwords.google.com/api/adwords/cm/
v200909" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
   
  
 ...snip...
  
   
   
  
 
ADD

   Test Campaign 1268432644328
   ACTIVE
   
  DAILY
  
 100
  
   
   

 
  
   


This request will fail because the biddingStrategy field has an
xsi:type attribute that uses the namespace prefix "v20".  Although
this prefix is already defined on the soapenv:Envelope element, it
must be re-defined on the method element (mutate in this case) to pass
the XML validation.

http://schemas.xmlsoap.org/soap/
envelope/" xmlns:v20="https://adwords.google.com/api/adwords/cm/
v200909" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
   
  
 ...snip...
  
   
   
  https://adwords.google.com/api/adwords/cm/
v200909">
 
ADD

   Test Campaign 1268433413038
   ACTIVE
   
  DAILY
  
 100
  
   
   

 
  
   


Best,
- Eric

On Mar 12, 1:47 pm, forbidder  wrote:
> Hello,
>
> Some of us can't use the prepackaged libraries from Google and rely on
> our own API libraries.  Can the expected Soap XML be posted so we can
> get our systems to generate this XML from our API's?
>
> This change comes at a very bad timing as we are performing QA on the
> conversion from Google API v13 to v2009.
>
> We're on a pretty tight deadline since v13 is sunsetting in April.
>
> Thanks!
>
> On Mar 11, 11:14 am, AdWords API Advisor
>
>
>
>  wrote:
> > Hi All,
>
> > I've found the source of the problem and pushed out a fix to SVN.
>
> >  http://code.google.com/p/google-api-adwords-php/source/detail?r=51
>
> > Please update your library with the newest version of trunk and try
> > again.  If there aren't any problems I'll release a new version of the
> > client library that has this change.
>
> > Best,
> > - Eric
>
> > On Mar 11, 11:43 am, AdWords API Advisor
>
> >  wrote:
> > > Hi,
>
> > > Thanks for this information.  I'm also seeing this error for PHP 5.2.6
> > > and below.  I'll work on a patch and update this thread when it's
> > > ready.
>
> > > Best,
> > > - Eric
>
> > > On Mar 11, 11:35 am, vlad  wrote:
>
> > > > Thanks Chris
>
> > > > On Mar 11, 10:28 am, Christian Krahn 
> > > > wrote:
>
> > > > > Confirmed. The PHP Framework works with Ubuntu 9.10 running PHP
> > > > > 5.2.10, but no longer on Ubuntu 9.04 running PHP 5.2.6.
>
> > > > > - Christian

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-12 Thread forbidder
Hello,

Some of us can't use the prepackaged libraries from Google and rely on
our own API libraries.  Can the expected Soap XML be posted so we can
get our systems to generate this XML from our API's?

This change comes at a very bad timing as we are performing QA on the
conversion from Google API v13 to v2009.

We're on a pretty tight deadline since v13 is sunsetting in April.

Thanks!

On Mar 11, 11:14 am, AdWords API Advisor
 wrote:
> Hi All,
>
> I've found the source of the problem and pushed out a fix to SVN.
>
>  http://code.google.com/p/google-api-adwords-php/source/detail?r=51
>
> Please update your library with the newest version of trunk and try
> again.  If there aren't any problems I'll release a new version of the
> client library that has this change.
>
> Best,
> - Eric
>
> On Mar 11, 11:43 am, AdWords API Advisor
>
>  wrote:
> > Hi,
>
> > Thanks for this information.  I'm also seeing this error for PHP 5.2.6
> > and below.  I'll work on a patch and update this thread when it's
> > ready.
>
> > Best,
> > - Eric
>
> > On Mar 11, 11:35 am, vlad  wrote:
>
> > > Thanks Chris
>
> > > On Mar 11, 10:28 am, Christian Krahn 
> > > wrote:
>
> > > > Confirmed. The PHP Framework works with Ubuntu 9.10 running PHP
> > > > 5.2.10, but no longer on Ubuntu 9.04 running PHP 5.2.6.
>
> > > > - Christian

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-12 Thread Christian Krahn
Hi Eric,

thanks for the quick fix, I already tested it and it works perfectly.

- Christian

On 11 Mrz., 20:14, AdWords API Advisor 
wrote:
> Hi All,
>
> I've found the source of the problem and pushed out a fix to SVN.
>
>  http://code.google.com/p/google-api-adwords-php/source/detail?r=51
>
> Please update your library with the newest version of trunk and try
> again.  If there aren't any problems I'll release a new version of the
> client library that has this change.
>
> Best,
> - Eric
>
> On Mar 11, 11:43 am, AdWords API Advisor
>
>  wrote:
> > Hi,
>
> > Thanks for this information.  I'm also seeing this error for PHP 5.2.6
> > and below.  I'll work on a patch and update this thread when it's
> > ready.
>
> > Best,
> > - Eric
>
> > On Mar 11, 11:35 am, vlad  wrote:
>
> > > Thanks Chris
>
> > > On Mar 11, 10:28 am, Christian Krahn 
> > > wrote:
>
> > > > Confirmed. The PHP Framework works with Ubuntu 9.10 running PHP
> > > > 5.2.10, but no longer on Ubuntu 9.04 running PHP 5.2.6.
>
> > > > - Christian

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread AdWords API Advisor
Hi All,

I've found the source of the problem and pushed out a fix to SVN.

  http://code.google.com/p/google-api-adwords-php/source/detail?r=51

Please update your library with the newest version of trunk and try
again.  If there aren't any problems I'll release a new version of the
client library that has this change.

Best,
- Eric

On Mar 11, 11:43 am, AdWords API Advisor
 wrote:
> Hi,
>
> Thanks for this information.  I'm also seeing this error for PHP 5.2.6
> and below.  I'll work on a patch and update this thread when it's
> ready.
>
> Best,
> - Eric
>
> On Mar 11, 11:35 am, vlad  wrote:
>
>
>
> > Thanks Chris
>
> > On Mar 11, 10:28 am, Christian Krahn 
> > wrote:
>
> > > Confirmed. The PHP Framework works with Ubuntu 9.10 running PHP
> > > 5.2.10, but no longer on Ubuntu 9.04 running PHP 5.2.6.
>
> > > - Christian

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread AdWords API Advisor
Hi,

Thanks for this information.  I'm also seeing this error for PHP 5.2.6
and below.  I'll work on a patch and update this thread when it's
ready.

Best,
- Eric

On Mar 11, 11:35 am, vlad  wrote:
> Thanks Chris
>
> On Mar 11, 10:28 am, Christian Krahn 
> wrote:
>
>
>
> > Confirmed. The PHP Framework works with Ubuntu 9.10 running PHP
> > 5.2.10, but no longer on Ubuntu 9.04 running PHP 5.2.6.
>
> > - Christian

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread vlad
Thanks Chris

On Mar 11, 10:28 am, Christian Krahn 
wrote:
> Confirmed. The PHP Framework works with Ubuntu 9.10 running PHP
> 5.2.10, but no longer on Ubuntu 9.04 running PHP 5.2.6.
>
> - Christian

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread Christian Krahn
Confirmed. The PHP Framework works with Ubuntu 9.10 running PHP
5.2.10, but no longer on Ubuntu 9.04 running PHP 5.2.6.

- Christian

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread Christian Krahn
Hi Eric,

I am using the latest version since it has been released and it worked
fine, till today when the XML Validation got activated.
So sorry to tell you, but... no, it doesnt include a fix for it.

Using PHP Version 5.2.6-3ubuntu4.5 (Ubuntu 9.04)

Update: it seems to work on a co-worker's local machine who is using
Ubuntu 9.10 (should be PHP 5.2.10, will verify soon).

Regards,

- Christian

On 11 Mrz., 17:13, AdWords API Advisor 
wrote:
> Hi,
>
> The most recent version of the AdWords API PHP client library includes
> a fix for this problem.
>
>  http://code.google.com/p/google-api-adwords-php/
>
> The PHP SoapClient class wasn't adding the namespace to the method
> element (get or mutate) which lead to this error.  If you update your
> library the errors should be resolved.
>
> Best,
> - Eric
>
> On Mar 11, 10:27 am, vlad  wrote:
>
> > What version of PHP do you use, 5.2 or 5.3?
> > Can anybody try to run an example on 5.3, please?
>
> > On Mar 11, 9:18 am, Christian Krahn  wrote:
>
> > > Same problem here with the AdWords API PHP Framework, every job is
> > > failing including getAllCampaigns:
>
> > > Request:
>
> > >   
> > >     
> > >       https://adwords.google.com/api/adwords/
> > > cm/v200909" xsi:type="ns1:CampaignSelector"/>
> > >     
> > >   
>
> > > Response:
>
> > > http://schemas.xmlsoap.org/soap/envelope/";>
> > >   
> > >     
> > >       soap:Server
> > >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > > 'get' to a type definition for element 'ns1:get'. 
> > >     
> > >   
> > > 
>
> > > On 11 Mrz., 16:13, vlad  wrote:
>
> > > > Can you run an example (like GetAllCampaigns.php) of the last
> > > > aw_api_php_lib_2.0.0?
> > > > It's only one operation - get and the server can't understand it:
> > > > Can't resolve get to type for element 'ns1:get'.
> > > > Namespace is wrong?
>
> > > > On Mar 11, 8:17 am, AdWords API Advisor 
> > > > wrote:
>
> > > > > Hi All,
>
> > > > > These new Unmarshalling errors are due to a change in how XML
> > > > > validation is done.  More information is available here:
>
> > > > >  http://groups.google.com/group/adwords-api/browse_thread/thread/f5057...
>
> > > > > Best,
> > > > > - Eric Koleda, AdWords API Team
>
> > > > > On Mar 11, 9:07 am, Christian Krahn  wrote:
>
> > > > > > Similar problem here:
>
> > > > > > 
> > > > > >  > > > > > xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
> > > > > >   
> > > > > >     
> > > > > >       soap:Server
> > > > > >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > > > > > 'mutate' to a type definition for element 'ns1:mutate'. 
> > > > > > 
> > > > > >     
> > > > > >   
> > > > > > 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread Ivo.bathke
sure?
i have the trunk: http://google-api-adwords-php.googlecode.com/svn/trunk
as an externals included in my project and did an update
but i still get the error: Cannot resolve 'get' to a type definition
for element 'ns1:get'.

cheers

On 11 Mrz., 17:13, AdWords API Advisor 
wrote:
> Hi,
>
> The most recent version of the AdWords API PHP client library includes
> a fix for this problem.
>
>  http://code.google.com/p/google-api-adwords-php/
>
> The PHP SoapClient class wasn't adding the namespace to the method
> element (get or mutate) which lead to this error.  If you update your
> library the errors should be resolved.
>
> Best,
> - Eric
>
> On Mar 11, 10:27 am, vlad  wrote:
>
>
>
> > What version of PHP do you use, 5.2 or 5.3?
> > Can anybody try to run an example on 5.3, please?
>
> > On Mar 11, 9:18 am, Christian Krahn  wrote:
>
> > > Same problem here with the AdWords API PHP Framework, every job is
> > > failing including getAllCampaigns:
>
> > > Request:
>
> > >   
> > >     
> > >       https://adwords.google.com/api/adwords/
> > > cm/v200909" xsi:type="ns1:CampaignSelector"/>
> > >     
> > >   
>
> > > Response:
>
> > > http://schemas.xmlsoap.org/soap/envelope/";>
> > >   
> > >     
> > >       soap:Server
> > >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > > 'get' to a type definition for element 'ns1:get'. 
> > >     
> > >   
> > > 
>
> > > On 11 Mrz., 16:13, vlad  wrote:
>
> > > > Can you run an example (like GetAllCampaigns.php) of the last
> > > > aw_api_php_lib_2.0.0?
> > > > It's only one operation - get and the server can't understand it:
> > > > Can't resolve get to type for element 'ns1:get'.
> > > > Namespace is wrong?
>
> > > > On Mar 11, 8:17 am, AdWords API Advisor 
> > > > wrote:
>
> > > > > Hi All,
>
> > > > > These new Unmarshalling errors are due to a change in how XML
> > > > > validation is done.  More information is available here:
>
> > > > >  http://groups.google.com/group/adwords-api/browse_thread/thread/f5057...
>
> > > > > Best,
> > > > > - Eric Koleda, AdWords API Team
>
> > > > > On Mar 11, 9:07 am, Christian Krahn  wrote:
>
> > > > > > Similar problem here:
>
> > > > > > 
> > > > > >  > > > > > xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
> > > > > >   
> > > > > >     
> > > > > >       soap:Server
> > > > > >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > > > > > 'mutate' to a type definition for element 'ns1:mutate'. 
> > > > > > 
> > > > > >     
> > > > > >   
> > > > > > 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread AdWords API Advisor
Hi,

The most recent version of the AdWords API PHP client library includes
a fix for this problem.

  http://code.google.com/p/google-api-adwords-php/

The PHP SoapClient class wasn't adding the namespace to the method
element (get or mutate) which lead to this error.  If you update your
library the errors should be resolved.

Best,
- Eric

On Mar 11, 10:27 am, vlad  wrote:
> What version of PHP do you use, 5.2 or 5.3?
> Can anybody try to run an example on 5.3, please?
>
> On Mar 11, 9:18 am, Christian Krahn  wrote:
>
>
>
> > Same problem here with the AdWords API PHP Framework, every job is
> > failing including getAllCampaigns:
>
> > Request:
>
> >   
> >     
> >       https://adwords.google.com/api/adwords/
> > cm/v200909" xsi:type="ns1:CampaignSelector"/>
> >     
> >   
>
> > Response:
>
> > http://schemas.xmlsoap.org/soap/envelope/";>
> >   
> >     
> >       soap:Server
> >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > 'get' to a type definition for element 'ns1:get'. 
> >     
> >   
> > 
>
> > On 11 Mrz., 16:13, vlad  wrote:
>
> > > Can you run an example (like GetAllCampaigns.php) of the last
> > > aw_api_php_lib_2.0.0?
> > > It's only one operation - get and the server can't understand it:
> > > Can't resolve get to type for element 'ns1:get'.
> > > Namespace is wrong?
>
> > > On Mar 11, 8:17 am, AdWords API Advisor 
> > > wrote:
>
> > > > Hi All,
>
> > > > These new Unmarshalling errors are due to a change in how XML
> > > > validation is done.  More information is available here:
>
> > > >  http://groups.google.com/group/adwords-api/browse_thread/thread/f5057...
>
> > > > Best,
> > > > - Eric Koleda, AdWords API Team
>
> > > > On Mar 11, 9:07 am, Christian Krahn  wrote:
>
> > > > > Similar problem here:
>
> > > > > 
> > > > > http://schemas.xmlsoap.org/soap/envelope/";>
> > > > >   
> > > > >     
> > > > >       soap:Server
> > > > >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > > > > 'mutate' to a type definition for element 'ns1:mutate'. 
> > > > >     
> > > > >   
> > > > > 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread vlad
What version of PHP do you use, 5.2 or 5.3?
Can anybody try to run an example on 5.3, please?

On Mar 11, 9:18 am, Christian Krahn  wrote:
> Same problem here with the AdWords API PHP Framework, every job is
> failing including getAllCampaigns:
>
> Request:
>
>   
>     
>       https://adwords.google.com/api/adwords/
> cm/v200909" xsi:type="ns1:CampaignSelector"/>
>     
>   
>
> Response:
>
> http://schemas.xmlsoap.org/soap/envelope/";>
>   
>     
>       soap:Server
>       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> 'get' to a type definition for element 'ns1:get'. 
>     
>   
> 
>
> On 11 Mrz., 16:13, vlad  wrote:
>
> > Can you run an example (like GetAllCampaigns.php) of the last
> > aw_api_php_lib_2.0.0?
> > It's only one operation - get and the server can't understand it:
> > Can't resolve get to type for element 'ns1:get'.
> > Namespace is wrong?
>
> > On Mar 11, 8:17 am, AdWords API Advisor 
> > wrote:
>
> > > Hi All,
>
> > > These new Unmarshalling errors are due to a change in how XML
> > > validation is done.  More information is available here:
>
> > >  http://groups.google.com/group/adwords-api/browse_thread/thread/f5057...
>
> > > Best,
> > > - Eric Koleda, AdWords API Team
>
> > > On Mar 11, 9:07 am, Christian Krahn  wrote:
>
> > > > Similar problem here:
>
> > > > 
> > > > http://schemas.xmlsoap.org/soap/envelope/";>
> > > >   
> > > >     
> > > >       soap:Server
> > > >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > > > 'mutate' to a type definition for element 'ns1:mutate'. 
> > > >     
> > > >   
> > > > 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread Christian Krahn
Same problem here with the AdWords API PHP Framework, every job is
failing including getAllCampaigns:

Request:

  

  https://adwords.google.com/api/adwords/
cm/v200909" xsi:type="ns1:CampaignSelector"/>

  

Response:

http://schemas.xmlsoap.org/soap/envelope/";>
  

  soap:Server
  Unmarshalling Error: cvc-elt.4.2: Cannot resolve
'get' to a type definition for element 'ns1:get'. 

  


On 11 Mrz., 16:13, vlad  wrote:
> Can you run an example (like GetAllCampaigns.php) of the last
> aw_api_php_lib_2.0.0?
> It's only one operation - get and the server can't understand it:
> Can't resolve get to type for element 'ns1:get'.
> Namespace is wrong?
>
> On Mar 11, 8:17 am, AdWords API Advisor 
> wrote:
>
> > Hi All,
>
> > These new Unmarshalling errors are due to a change in how XML
> > validation is done.  More information is available here:
>
> >  http://groups.google.com/group/adwords-api/browse_thread/thread/f5057...
>
> > Best,
> > - Eric Koleda, AdWords API Team
>
> > On Mar 11, 9:07 am, Christian Krahn  wrote:
>
> > > Similar problem here:
>
> > > 
> > > http://schemas.xmlsoap.org/soap/envelope/";>
> > >   
> > >     
> > >       soap:Server
> > >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > > 'mutate' to a type definition for element 'ns1:mutate'. 
> > >     
> > >   
> > > 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread vlad
Can you run an example (like GetAllCampaigns.php) of the last
aw_api_php_lib_2.0.0?
It's only one operation - get and the server can't understand it:
Can't resolve get to type for element 'ns1:get'.
Namespace is wrong?



On Mar 11, 8:17 am, AdWords API Advisor 
wrote:
> Hi All,
>
> These new Unmarshalling errors are due to a change in how XML
> validation is done.  More information is available here:
>
>  http://groups.google.com/group/adwords-api/browse_thread/thread/f5057...
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Mar 11, 9:07 am, Christian Krahn  wrote:
>
> > Similar problem here:
>
> > 
> > http://schemas.xmlsoap.org/soap/envelope/";>
> >   
> >     
> >       soap:Server
> >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > 'mutate' to a type definition for element 'ns1:mutate'. 
> >     
> >   
> > 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread Ivo.bathke
ah ok
thanx for the info

i am using the AdWords API PHP Client Library

shouldnt this lib handle the changes?
is there an update about to come?

sorry, its just to avoid double work for me.

On 11 Mrz., 15:17, AdWords API Advisor 
wrote:
> Hi All,
>
> These new Unmarshalling errors are due to a change in how XML
> validation is done.  More information is available here:
>
>  http://groups.google.com/group/adwords-api/browse_thread/thread/f5057...
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Mar 11, 9:07 am, Christian Krahn  wrote:
>
>
>
> > Similar problem here:
>
> > 
> > http://schemas.xmlsoap.org/soap/envelope/";>
> >   
> >     
> >       soap:Server
> >       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> > 'mutate' to a type definition for element 'ns1:mutate'. 
> >     
> >   
> > 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread AdWords API Advisor
Hi All,

These new Unmarshalling errors are due to a change in how XML
validation is done.  More information is available here:

  
http://groups.google.com/group/adwords-api/browse_thread/thread/f5057acf438bc702

Best,
- Eric Koleda, AdWords API Team

On Mar 11, 9:07 am, Christian Krahn  wrote:
> Similar problem here:
>
> 
> http://schemas.xmlsoap.org/soap/envelope/";>
>   
>     
>       soap:Server
>       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> 'mutate' to a type definition for element 'ns1:mutate'. 
>     
>   
> 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-11 Thread Christian Krahn
Similar problem here:


http://schemas.xmlsoap.org/soap/envelope/";>
  

  soap:Server
  Unmarshalling Error: cvc-elt.4.2: Cannot resolve
'mutate' to a type definition for element 'ns1:mutate'. 

  


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en


AdWords API Re: is sandbox (for v200906) up?

2010-03-10 Thread vlad
It's v200909



On Mar 10, 4:04 pm, vlad  wrote:
> Why does this error happen?
>
> 
> http://schemas.xmlsoap.org/soap/
> envelope/" xmlns:ns1="https://adwords.google.com/api/adwords/cm/
> v200909" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
>   
>     
>       012345678912345678912 ns1:applicationToken>
>       *
>       
>       PHP v5.2.6-3ubuntu4.2 - AdWords API PHP Client
> Library - v1.2.2 - 
>     
>   
>   
>     
>       https://adwords.google.com/api/adwords/
> cm/v200909" xsi:type="ns1:CampaignSelector"/>
>     
>   
> 
>
> HTTP/1.1 500 Internal Server Error
> Content-Type: text/xml; charset=UTF-8
> Date: Wed, 10 Mar 2010 21:59:04 GMT
> Expires: Wed, 10 Mar 2010 21:59:04 GMT
> Cache-Control: private, max-age=0
> X-Content-Type-Options: nosniff
> X-Frame-Options: SAMEORIGIN
> Server: GSE
> X-XSS-Protection: 0
> Transfer-Encoding: chunked
>
> 
> http://schemas.xmlsoap.org/soap/envelope/";>
>   
>     
>       soap:Server
>       Unmarshalling Error: cvc-elt.4.2: Cannot resolve
> 'get' to a type definition for element 'ns1:get'. 
>     
>   
> 
>
> vlad

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en