I did not find much help on groups regarding this error. I would
appreciate your help in figuring out what the problem is?
AdWords API Advisor
unread,
Sep 18, 2009, 2:52:55 PM9/18/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hi Diwakar,
The SOAP 1.1 specification lists SOAPAction as a required field:
http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383528. The
AdWords API servers don't validate the value of the header, but it
must have a value. The common convention is to set the value to a
pair of double quotes:
SOAPAction: ""
Your code is currently setting the value to an empty string, which
will result in:
SOAPAction:
As a general aside, rather than handling SOAP messages directly I
would recommend using a SOAP toolkit, like that provided by Visual
Studio. We also provide a .NET client library that has many other
features built in: http://code.google.com/p/google-api-adwords-dotnet/.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hi Eric,
Thanks for your response. The problem is solved now.
As our present application cannot access any external resources, we
cannot use SOAP toolkit. We need to go with only XMLHttp Object. Can
you foresee any kind of potential problem if we don't use any SOAP
toolkit in our application?
-Diwakar
On Sep 18, 11:52 pm, AdWords API Advisor
AdWords API Advisor
unread,
Sep 21, 2009, 10:28:10 AM9/21/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hi Diwakar,
I don't believe you will encounter any major problems from not using a
SOAP toolkit, but generating the SOAP messages by hand will require
you to pay extra attention to the details. For example, in v2009 when
you set the bidding strategy of a campaign, you don't assign a value
to the element but instead set it's XSI type:
<biddingStrategy xsi:type="ManualCPC" />
Some of these methodologies aren't immediately obvious, but are
handled automatically by out client libraries and various SOAP
toolkits.