Re: Problem to using Google Adwords API

2010-08-09 Thread AdWords API Advisor
Hi Mukut,

I've responded to your question in the other thread.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Aug 7, 4:58 pm, Mukut muk143kan...@gmail.com wrote:
 Dear sir,

 I am using your adwords sandbox api integrate with dot net and c#.
 There are using google-api-adwords-dotnet dll. Atfirst my default page
 showing keyword ideas list for a given keyword using create AdwordUser
 and service use  TargetingIdea Service. The code is running well in
 local machine and I get sandbox test result. But when I am upload in
 my client server the error occurred in server side that is Request for
 the

 permission of type 'System.Security.Permissions.SecurityPermission,
 mscorlib, Version=2.0.0.0, Culture=neutral,
 PublicKeyToken=b77a5c561934e089' failed.

 I can't understand what to do.Please help me ASAP. It is urgent.

 Thanks  Regards,
 Mukut Kandar

 On Aug 2, 4:26 pm, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:



  HiMukut,

  The AdWords API Sandbox will return only test data when making calls
  to TargetingIdeaService. To get actual data, you need to get a
  production developer token as Eric mentioned earlier and then use it
  to make calls to the AdWords production server.

  Cheers,
  Anash P. Oommen,
  AdWords API Advisor.

  On Jul 31, 7:20 pm,Mukutmuk143kan...@gmail.com wrote:

   Dear Sir,

   I am testing with keyword value sony camera and onida tv but
   response are same. Is this for using Sandbox or any error. because I
   have no result through this in my web page. But in Log folder's
   soap_log.txt file have an response as below

   soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
     soap:Header
       ns2:ResponseHeader xmlns:ns2=https://adwords.google.com/api/
   adwords/o/v200909 xmlns=https://adwords.google.com/api/adwords/cm/
   v200909
         requestIda85f3b31a5b3453853ce2e7d2c5243d1/requestId
         operations20/operations
         responseTime174/responseTime
         units20/units
       /ns2:ResponseHeader
     /soap:Header
     soap:Body
       ns2:getResponse xmlns=https://adwords.google.com/api/adwords/cm/
   v200909 xmlns:ns2=https://adwords.google.com/api/adwords/o/v200909;
         ns2:rval
           ns2:totalNumEntries300/ns2:totalNumEntries
           ns2:entries
             ns2:data
               ns2:keyKEYWORD/ns2:key
               ns2:value xmlns:xsi=http://www.w3.org/2001/XMLSchema-
   instance xsi:type=ns2:KeywordAttribute
                 ns2:Attribute.TypeKeywordAttribute/
   ns2:Attribute.Type
                 ns2:value
                   Criterion.TypeKeyword/Criterion.Type
                   textsample keyword 1102684909 0/text
                   matchTypeEXACT/matchType
                 /ns2:value
               /ns2:value
             /ns2:data
             ns2:data
               ns2:keyIDEA_TYPE/ns2:key
               ns2:value xmlns:xsi=http://www.w3.org/2001/XMLSchema-
   instance xsi:type=ns2:IdeaTypeAttribute
                 ns2:Attribute.TypeIdeaTypeAttribute/
   ns2:Attribute.Type
                 ns2:valueKEYWORD/ns2:value
               /ns2:value
             /ns2:data
           /ns2:entries
           ns2:entries
           this loop 20 times repeated 
      ...
      /ns2:entries
         /ns2:rval
       /ns2:getResponse
     /soap:Body
   /soap:Envelope

   Sir how can I get the original result. Please provide instruction.

   Thanks  Regards,
  MukutKandar
   On Jul 31, 6:15 pm,Mukutmuk143kan...@gmail.com wrote:

My code is as below

 AdWordsUser user = new AdWordsUser();
             //Get the TargetingIdeaService.
            TargetingIdeaService targetingIdeaService =
(TargetingIdeaService)user.GetService(AdWordsService.v200909.TargetingIdeaS
 ervice);
            Keyword keyword = new Keyword();
            keyword.text = urlTW;
            keyword.matchTypeSpecified = false;
            keyword.matchType = KeywordMatchType.EXACT;

            RelatedToKeywordSearchParameter searchParameter = new
RelatedToKeywordSearchParameter();
            searchParameter.keywords = new Keyword[]
{ keyword };

            TargetingIdeaSelector selector = new
TargetingIdeaSelector();
            selector.searchParameters = new SearchParameter[]
{ searchParameter };
            selector.ideaTypeSpecified = true;
            selector.ideaType = IdeaType.KEYWORD;
            selector.requestTypeSpecified = true;
            selector.requestType = RequestType.IDEAS;

            Paging paging = new Paging();
            paging.startIndex = 0;
            paging.startIndexSpecified = true;
            paging.numberResults = 20;
            paging.numberResultsSpecified = true;

            selector.paging = paging;

            try
            {
                TargetingIdeaPage page =
targetingIdeaService.get(selector);

                if (page != null  

Re: Problem to using Google Adwords API

2010-08-07 Thread Mukut


Dear sir,

I am using your adwords sandbox api integrate with dot net and c#.
There are using google-api-adwords-dotnet dll. Atfirst my default page
showing keyword ideas list for a given keyword using create AdwordUser
and service use  TargetingIdea Service. The code is running well in
local machine and I get sandbox test result. But when I am upload in
my client server the error occurred in server side that is Request for
the

permission of type 'System.Security.Permissions.SecurityPermission,
mscorlib, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089' failed.

I can't understand what to do.Please help me ASAP. It is urgent.


Thanks  Regards,
Mukut Kandar





On Aug 2, 4:26 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 HiMukut,

 The AdWords API Sandbox will return only test data when making calls
 to TargetingIdeaService. To get actual data, you need to get a
 production developer token as Eric mentioned earlier and then use it
 to make calls to the AdWords production server.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Jul 31, 7:20 pm,Mukutmuk143kan...@gmail.com wrote:



  Dear Sir,

  I am testing with keyword value sony camera and onida tv but
  response are same. Is this for using Sandbox or any error. because I
  have no result through this in my web page. But in Log folder's
  soap_log.txt file have an response as below

  soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
    soap:Header
      ns2:ResponseHeader xmlns:ns2=https://adwords.google.com/api/
  adwords/o/v200909 xmlns=https://adwords.google.com/api/adwords/cm/
  v200909
        requestIda85f3b31a5b3453853ce2e7d2c5243d1/requestId
        operations20/operations
        responseTime174/responseTime
        units20/units
      /ns2:ResponseHeader
    /soap:Header
    soap:Body
      ns2:getResponse xmlns=https://adwords.google.com/api/adwords/cm/
  v200909 xmlns:ns2=https://adwords.google.com/api/adwords/o/v200909;
        ns2:rval
          ns2:totalNumEntries300/ns2:totalNumEntries
          ns2:entries
            ns2:data
              ns2:keyKEYWORD/ns2:key
              ns2:value xmlns:xsi=http://www.w3.org/2001/XMLSchema-
  instance xsi:type=ns2:KeywordAttribute
                ns2:Attribute.TypeKeywordAttribute/
  ns2:Attribute.Type
                ns2:value
                  Criterion.TypeKeyword/Criterion.Type
                  textsample keyword 1102684909 0/text
                  matchTypeEXACT/matchType
                /ns2:value
              /ns2:value
            /ns2:data
            ns2:data
              ns2:keyIDEA_TYPE/ns2:key
              ns2:value xmlns:xsi=http://www.w3.org/2001/XMLSchema-
  instance xsi:type=ns2:IdeaTypeAttribute
                ns2:Attribute.TypeIdeaTypeAttribute/
  ns2:Attribute.Type
                ns2:valueKEYWORD/ns2:value
              /ns2:value
            /ns2:data
          /ns2:entries
          ns2:entries
          this loop 20 times repeated 
     ...
     /ns2:entries
        /ns2:rval
      /ns2:getResponse
    /soap:Body
  /soap:Envelope

  Sir how can I get the original result. Please provide instruction.

  Thanks  Regards,
 MukutKandar
  On Jul 31, 6:15 pm,Mukutmuk143kan...@gmail.com wrote:

   My code is as below

    AdWordsUser user = new AdWordsUser();
                //Get the TargetingIdeaService.
               TargetingIdeaService targetingIdeaService =
   (TargetingIdeaService)user.GetService(AdWordsService.v200909.TargetingIdeaS
ervice);
               Keyword keyword = new Keyword();
               keyword.text = urlTW;
               keyword.matchTypeSpecified = false;
               keyword.matchType = KeywordMatchType.EXACT;

               RelatedToKeywordSearchParameter searchParameter = new
   RelatedToKeywordSearchParameter();
               searchParameter.keywords = new Keyword[]
   { keyword };

               TargetingIdeaSelector selector = new
   TargetingIdeaSelector();
               selector.searchParameters = new SearchParameter[]
   { searchParameter };
               selector.ideaTypeSpecified = true;
               selector.ideaType = IdeaType.KEYWORD;
               selector.requestTypeSpecified = true;
               selector.requestType = RequestType.IDEAS;

               Paging paging = new Paging();
               paging.startIndex = 0;
               paging.startIndexSpecified = true;
               paging.numberResults = 20;
               paging.numberResultsSpecified = true;

               selector.paging = paging;

               try
               {
                   TargetingIdeaPage page =
   targetingIdeaService.get(selector);

                   if (page != null  page.entries != null)
                   {
                       Console.WriteLine(There are a total of {0}
   keywords related to '{1}'. The first {2} +
                          entries are displayed below: \n,
   page.totalNumEntries, urlTW,
                         

Re: Problem to using Google Adwords API

2010-08-02 Thread AdWords API Advisor
Hi Mukut,

You need to provide a matchtype, as shown in
http://code.google.com/p/google-api-adwords-dotnet/source/browse/trunk/Examples/v200909/GetRelatedKeywords.cs#52
to fix this issue.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jul 31, 6:15 pm, Mukut muk143kan...@gmail.com wrote:
 My code is as below

  AdWordsUser user = new AdWordsUser();
              //Get the TargetingIdeaService.
             TargetingIdeaService targetingIdeaService =
 (TargetingIdeaService)user.GetService(AdWordsService.v200909.TargetingIdeaS 
 ervice);
             Keyword keyword = new Keyword();
             keyword.text = urlTW;
             keyword.matchTypeSpecified = false;
             keyword.matchType = KeywordMatchType.EXACT;

             RelatedToKeywordSearchParameter searchParameter = new
 RelatedToKeywordSearchParameter();
             searchParameter.keywords = new Keyword[]
 { keyword };

             TargetingIdeaSelector selector = new
 TargetingIdeaSelector();
             selector.searchParameters = new SearchParameter[]
 { searchParameter };
             selector.ideaTypeSpecified = true;
             selector.ideaType = IdeaType.KEYWORD;
             selector.requestTypeSpecified = true;
             selector.requestType = RequestType.IDEAS;

             Paging paging = new Paging();
             paging.startIndex = 0;
             paging.startIndexSpecified = true;
             paging.numberResults = 20;
             paging.numberResultsSpecified = true;

             selector.paging = paging;

             try
             {
                 TargetingIdeaPage page =
 targetingIdeaService.get(selector);

                 if (page != null  page.entries != null)
                 {
                     Console.WriteLine(There are a total of {0}
 keywords related to '{1}'. The first {2} +
                        entries are displayed below: \n,
 page.totalNumEntries, urlTW,
                       page.entries.Length);

                     foreach (TargetingIdea idea in page.entries)
                     {
                         foreach (Type_AttributeMapEntry entry in
 idea.data)
                         {
                             if (entry.key == AttributeType.KEYWORD)
                             {
                                 KeywordAttribute kwdAttribute =
 entry.value as KeywordAttribute;
                                 Console.WriteLine(Related keyword
 with text = '{0}' and match type = '{1}' +
                                    was found.,
 kwdAttribute.value.text, kwdAttribute.value.matchType);
                             }
                         }
                     }
                 }
                 else
                 {
                     Console.WriteLine(No related keywords were found
 for your keyword.);
                 }
             }
             catch (Exception ex)
             {
                 Console.WriteLine(Failed to retrieve related
 keywords. Exception says \{0}\,
                     ex.Message);
             }

 And request with response is above reply. Please check it and guide
 for solve the error.

 On Jul 31, 5:11 pm, Mukut muk143kan...@gmail.com wrote:



  Dear Sir,

  I am sending my total details of my web application and can't found
  the problem. Please verify these steps with spending some time to
  relief me from this problem.

  I am configure in my web.config for getting list on keyword  ideas
  using Google sandbox api as below and after running the code write a
  request and response in a Log file also

  as below. An error is returned in this application. But can't
  understand what to do.

  My application's is using ASP.NET 2008 and C# and goal to result like
  this url but just getting keywords

     https://adwords.google.com/o/Targeting/Explorer?__u=4468366968__c=25...

  Web services present in my web application are

     KeywordToolService.wsdl,
     TargettingIdeaService.wsdl and
     AdGroupCriterionService.wsdl.

  Service is used as your suggestion TargettingIdeaService and code is
  use awapi_dotnet_lib_9.0.0\Examples\v200909\GetRelatedKeywords.cs.

  Web.config file as below

       configSections
                  section name=AdWordsApi
  type=com.google.api.adwords.lib.ApplicationConfiguration,google-api-
  adwords-dotnet/
       /configSections
       AdWordsApi
                  !-- Change the appropriate flags to turn on SOAP logging. 
  --
                  add key=LogPath value=D:\mywebsitename\Log\/
                  add key=LogToConsole value=false/
                  add key=LogToFile value=true/
                  add key=MaskCredentials value=false/
                  !-- Fill the following values if you plan to use a proxy 
  server.--
                  add key=ProxyServer value=/
                  add key=ProxyUser value=/
                  add key=ProxyPassword value=/
                  add key=ProxyDomain value=/
                  !-- Uncomment this key if you want to disable gzip 
  compression in

Re: Problem to using Google Adwords API

2010-08-02 Thread AdWords API Advisor
Hi Mukut,

The AdWords API Sandbox will return only test data when making calls
to TargetingIdeaService. To get actual data, you need to get a
production developer token as Eric mentioned earlier and then use it
to make calls to the AdWords production server.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jul 31, 7:20 pm, Mukut muk143kan...@gmail.com wrote:
 Dear Sir,

 I am testing with keyword value sony camera and onida tv but
 response are same. Is this for using Sandbox or any error. because I
 have no result through this in my web page. But in Log folder's
 soap_log.txt file have an response as below

 soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
   soap:Header
     ns2:ResponseHeader xmlns:ns2=https://adwords.google.com/api/
 adwords/o/v200909 xmlns=https://adwords.google.com/api/adwords/cm/
 v200909
       requestIda85f3b31a5b3453853ce2e7d2c5243d1/requestId
       operations20/operations
       responseTime174/responseTime
       units20/units
     /ns2:ResponseHeader
   /soap:Header
   soap:Body
     ns2:getResponse xmlns=https://adwords.google.com/api/adwords/cm/
 v200909 xmlns:ns2=https://adwords.google.com/api/adwords/o/v200909;
       ns2:rval
         ns2:totalNumEntries300/ns2:totalNumEntries
         ns2:entries
           ns2:data
             ns2:keyKEYWORD/ns2:key
             ns2:value xmlns:xsi=http://www.w3.org/2001/XMLSchema-
 instance xsi:type=ns2:KeywordAttribute
               ns2:Attribute.TypeKeywordAttribute/
 ns2:Attribute.Type
               ns2:value
                 Criterion.TypeKeyword/Criterion.Type
                 textsample keyword 1102684909 0/text
                 matchTypeEXACT/matchType
               /ns2:value
             /ns2:value
           /ns2:data
           ns2:data
             ns2:keyIDEA_TYPE/ns2:key
             ns2:value xmlns:xsi=http://www.w3.org/2001/XMLSchema-
 instance xsi:type=ns2:IdeaTypeAttribute
               ns2:Attribute.TypeIdeaTypeAttribute/
 ns2:Attribute.Type
               ns2:valueKEYWORD/ns2:value
             /ns2:value
           /ns2:data
         /ns2:entries
         ns2:entries
         this loop 20 times repeated 
    ...
    /ns2:entries
       /ns2:rval
     /ns2:getResponse
   /soap:Body
 /soap:Envelope

 Sir how can I get the original result. Please provide instruction.

 Thanks  Regards,
 Mukut Kandar
 On Jul 31, 6:15 pm, Mukut muk143kan...@gmail.com wrote:



  My code is as below

   AdWordsUser user = new AdWordsUser();
               //Get the TargetingIdeaService.
              TargetingIdeaService targetingIdeaService =
  (TargetingIdeaService)user.GetService(AdWordsService.v200909.TargetingIdeaS 
  ervice);
              Keyword keyword = new Keyword();
              keyword.text = urlTW;
              keyword.matchTypeSpecified = false;
              keyword.matchType = KeywordMatchType.EXACT;

              RelatedToKeywordSearchParameter searchParameter = new
  RelatedToKeywordSearchParameter();
              searchParameter.keywords = new Keyword[]
  { keyword };

              TargetingIdeaSelector selector = new
  TargetingIdeaSelector();
              selector.searchParameters = new SearchParameter[]
  { searchParameter };
              selector.ideaTypeSpecified = true;
              selector.ideaType = IdeaType.KEYWORD;
              selector.requestTypeSpecified = true;
              selector.requestType = RequestType.IDEAS;

              Paging paging = new Paging();
              paging.startIndex = 0;
              paging.startIndexSpecified = true;
              paging.numberResults = 20;
              paging.numberResultsSpecified = true;

              selector.paging = paging;

              try
              {
                  TargetingIdeaPage page =
  targetingIdeaService.get(selector);

                  if (page != null  page.entries != null)
                  {
                      Console.WriteLine(There are a total of {0}
  keywords related to '{1}'. The first {2} +
                         entries are displayed below: \n,
  page.totalNumEntries, urlTW,
                        page.entries.Length);

                      foreach (TargetingIdea idea in page.entries)
                      {
                          foreach (Type_AttributeMapEntry entry in
  idea.data)
                          {
                              if (entry.key == AttributeType.KEYWORD)
                              {
                                  KeywordAttribute kwdAttribute =
  entry.value as KeywordAttribute;
                                  Console.WriteLine(Related keyword
  with text = '{0}' and match type = '{1}' +
                                     was found.,
  kwdAttribute.value.text, kwdAttribute.value.matchType);
                              }
                          }
                      }
                  }
                  else
                  {
                      Console.WriteLine(No related keywords were found
  for your 

Re: Problem to using Google Adwords API

2010-07-31 Thread Mukut
 Sir,

After looking your suggestion I want to use Sandbox environment. You
give a video link in you tube. But the instruction is not clear to me.
Because I have to implement the service TargetingIdeaService for get
keyword suggestion on a giving website url using Sandbox environment.
But there are no code on TargetingIdeaService Service class for
Login authentication details are provided to the sandbox google api.
Sir please an instruction or example to implement it with example on
Sandbox how to authenticate through sandbox and get result into my web
application.

Advance Thanks for helping.

Thanks  Regards,

Mukut Kandar


On Jul 30, 8:26 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Mukut,

 To use the API you need a developer token, which is obtained by
 registering your MCC account for API access.  Information on how to
 register is available here:

  https://adwords.google.com/support/aw/adwordsapi/bin/answer.py?answer...

 Please be aware that this process may take up to two weeks.  In the
 meantime you can use the sandbox environment, which doesn't require an
 approved developer token:

  http://www.youtube.com/watch?v=cqVtUdB975M

 Best,
 - Eric

 On Jul 30, 10:45 am, Mukut muk143kan...@gmail.com wrote:



  Dear Sir,

  I am implement this Code but no result are given. What will be the
  setting. Can you provide me an user interface to proper
  implementation. I can not set the developer token. Is it important
  then how can I create it. Please send me instruction.
  Thanks  Regards,
  Mukut Kandar.

  On Jul 30, 7:24 pm, AdWords API Advisor adwordsapiadvi...@google.com
  wrote:

   Hi Mukut,

   My apologies, I had misunderstood your question.  The generate keyword
   ideas you can use the TargetingIdeaService:

    http://code.google.com/apis/adwords/v2009/docs/reference-v200909/Targ...

   An example of how to use this service with the .NET client library is
   available here:

    http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...

   Best,
   - Eric

   On Jul 29, 10:44 am, Mukut muk143kan...@gmail.com wrote:

Sir,

 after see the example I understand that this AdGroupCriterion Service
is provide keyword for advertise purpose. But I need generate Keywords
list for SEO using Google api in asp.net 2008 and c#.  Clearly my
client will be give his website in a textbox and clicking on generate
keyword button a list of keywords are fill next drop down control.
This keyword will be relevant with the client's website. And Google
API is provide these keywords. I want this application of google api
to integrateusing Asp.net 2008 and c#. Please sir provide me such type
of application's service and proper guideline to implement. Waiting
for your reply sir.

Thanks  Regards
Mukut Kandar

On Jul 29, 7:09 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:

 Hi Mukut,

 To create keywords in the API you need to use the
 AdGroupCriterionService:

  http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCrite...

 An example of how to use this service with the .NET client library to
 create keywords is available here:

  http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...

 Best,
 - Eric Koleda, AdWords API Team

 On Jul 29, 9:33 am, Mukut muk143kan...@gmail.com wrote:

  Sir I have no response on this discussion please give me a 
  suggestion.
  I am waiting for your reply.

  On Jul 29, 5:05 pm, Mukut muk143kan...@gmail.com wrote:

   Dear Sir,
   I am trying to create in a new website application of
   Asp.net 2008 using c# for generate keyword through Google Adword 
   API
   with my user interface. I can not get any example on it. There 
   are I
   am get example on campaigning but not in keyword generate. Sir 
   please
   provide me an example or full instruction on it. Is it chargeable 
   then
   confirm me. I have to do it anyway.

   On Jul 29, 4:35 pm, AdWords API Advisor 
   adwordsapiadvi...@google.com
   wrote:

Hi Mukut,

Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=1...
for details on what developer tokens are. Also see our FAQ 
pages at

   http://www.google.com/support/adwordsapi/http://www.google.com/suppor...

for other topics related to AdWords API.

Cheers,
Anash

On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:

 Sir,

  I did not get any response. Please anybody can help me to 
 generate
 keyword using Google Adword API in Asp.net 3.5 and c#.
 There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. 
 And I am
 copy all the files and folder in another folder to and run it 
 with
 changing in web.config file. And create a Log folder in it. 
 Changes in

Re: Problem to using Google Adwords API

2010-07-31 Thread Mukut
Dear Sir,

I am sending my total details of my web application and can't found
the problem. Please verify these steps with spending some time to
relief me from this problem.

I am configure in my web.config for getting list on keyword  ideas
using Google sandbox api as below and after running the code write a
request and response in a Log file also

as below. An error is returned in this application. But can't
understand what to do.

My application's is using ASP.NET 2008 and C# and goal to result like
this url but just getting keywords

   
https://adwords.google.com/o/Targeting/Explorer?__u=4468366968__c=2545204608ideaRequestType=KEYWORD_IDEAS#search.none

Web services present in my web application are

   KeywordToolService.wsdl,
   TargettingIdeaService.wsdl and
   AdGroupCriterionService.wsdl.

Service is used as your suggestion TargettingIdeaService and code is
use awapi_dotnet_lib_9.0.0\Examples\v200909\GetRelatedKeywords.cs.

Web.config file as below


 configSections
section name=AdWordsApi
type=com.google.api.adwords.lib.ApplicationConfiguration,google-api-
adwords-dotnet/
 /configSections
 AdWordsApi
!-- Change the appropriate flags to turn on SOAP logging. --
add key=LogPath value=D:\mywebsitename\Log\/
add key=LogToConsole value=false/
add key=LogToFile value=true/
add key=MaskCredentials value=false/
!-- Fill the following values if you plan to use a proxy 
server.--
add key=ProxyServer value=/
add key=ProxyUser value=/
add key=ProxyPassword value=/
add key=ProxyDomain value=/
!-- Uncomment this key if you want to disable gzip compression 
in
SOAP requests.--
!--add key=EnableGzipCompression value=false/--
!-- Fill the header values. --
add key=CompanyName value=Test_Company/
add key=Email value=muk143kan...@gmail.com/
add key=Password value=mypassword/
add key=ClientEmail value=client_1+muk143kan...@gmail.com/
add key=DeveloperToken value=muk143kan...@gmail.com+usd/
!-- Application token is now optional and will be ignored by 
the
server. --
 add key=ApplicationToken value=ignored/
!-- Uncomment this key and comment ClientEmail if you want to
specify customer id instead of customer email. --
!-- add key=ClientCustomerId
value=ENTER_YOUR_CLIENT_CUSTOMER_ID_HERE/ --
!-- Uncomment this if you want to reuse an authToken multiple
times. --
!--add key=AuthToken value=ENTER_YOUR_AUTH_TOKEN_HERE/ 
--
!-- Uncomment this key if you want to use v13 sandbox. --
 add key=LegacyAdWordsApi.Url 
value=https://sandbox.google.com/

!-- Uncomment this key if you want to use AdWords API sandbox. 
--
add key=AdWordsApi.Url 
value=https://adwords-sandbox.google.com/

/AdWordsApi


After running this code

I gave a keyword as website url in a textbox and Click a button to
generate Keyword Ideas list but get nothing after run.
All the code is under OnClick button Event and a request and response
are return into my sop_xml.log file into Log folder in D drive.
The request and response is as below

Request
---

POST /api/adwords/o/v200909/TargetingIdeaService
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client
Protocol 2.0.50727.1433)
VsDebuggerCausalityData:
uIDPo0AJeaOQ9etFiqvUazQWfxYAQtj2OFvpi0aOd9vfrYUEdYWzSxiuqFVHv6nKBAIhdR8ACQAA
Content-Type: text/xml; charset=utf-8
SOAPAction: 
Host: adwords-sandbox.google.com
Content-Length: 1630
Accept-Encoding: gzip
Connection: Keep-Alive

?xml version=1.0 encoding=utf-8?soap:Envelope
xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
xmlns:xsd=http://www.w3.org/2001/
XMLSchemasoap:HeaderRequestHeader xmlns=https://
adwords.google.com/api/adwords/o/v200909applicationToken
xmlns=https://adwords.google.com/api/adwords/cm/v200909;ignored/
applicationTokenauthToken xmlns=https://adwords.google.com/api/
adwords/cm/v200909DQAAAI8X_T5c03TviHlvy-
wf6YzhW9dKeel7tVoEIa8ZPrbcY9bSqGcOMH0Nx6cHmgGd6tafvZnoBstRAFuqRSwqcbNp_qEM3XBIo5jlQt35d-
my2m4dhViHeaiBOUudXcn_SJmto8P-Ev07VGoNVdi4SoyBS-
enZzGnKLoUZWVNFj8iLAmkFktlxV_B2793W5QrOJE/authTokenclientEmail
xmlns=https://adwords.google.com/api/adwords/cm/
v200909client_1+muk143kan...@gmail.com/clientEmaildeveloperToken
xmlns=https://adwords.google.com/api/adwords/cm/
v200909muk143kan...@gmail.com+usd/developerTokenuserAgent
xmlns=https://adwords.google.com/api/adwords/cm/v200909;AWAPI
DotNetLib 9.0.0 - Test_Company/userAgent/RequestHeader/
soap:Headersoap:Bodyget xmlns=https://adwords.google.com/api/
adwords/o/v200909selectorsearchParameters

Re: Problem to using Google Adwords API

2010-07-31 Thread Mukut
My code is as below

 AdWordsUser user = new AdWordsUser();
 //Get the TargetingIdeaService.
TargetingIdeaService targetingIdeaService =
(TargetingIdeaService)user.GetService(AdWordsService.v200909.TargetingIdeaService);
Keyword keyword = new Keyword();
keyword.text = urlTW;
keyword.matchTypeSpecified = false;
keyword.matchType = KeywordMatchType.EXACT;

RelatedToKeywordSearchParameter searchParameter = new
RelatedToKeywordSearchParameter();
searchParameter.keywords = new Keyword[]
{ keyword };

TargetingIdeaSelector selector = new
TargetingIdeaSelector();
selector.searchParameters = new SearchParameter[]
{ searchParameter };
selector.ideaTypeSpecified = true;
selector.ideaType = IdeaType.KEYWORD;
selector.requestTypeSpecified = true;
selector.requestType = RequestType.IDEAS;

Paging paging = new Paging();
paging.startIndex = 0;
paging.startIndexSpecified = true;
paging.numberResults = 20;
paging.numberResultsSpecified = true;

selector.paging = paging;

try
{
TargetingIdeaPage page =
targetingIdeaService.get(selector);

if (page != null  page.entries != null)
{
Console.WriteLine(There are a total of {0}
keywords related to '{1}'. The first {2} +
   entries are displayed below: \n,
page.totalNumEntries, urlTW,
  page.entries.Length);

foreach (TargetingIdea idea in page.entries)
{
foreach (Type_AttributeMapEntry entry in
idea.data)
{
if (entry.key == AttributeType.KEYWORD)
{
KeywordAttribute kwdAttribute =
entry.value as KeywordAttribute;
Console.WriteLine(Related keyword
with text = '{0}' and match type = '{1}' +
   was found.,
kwdAttribute.value.text, kwdAttribute.value.matchType);
}
}
}
}
else
{
Console.WriteLine(No related keywords were found
for your keyword.);
}
}
catch (Exception ex)
{
Console.WriteLine(Failed to retrieve related
keywords. Exception says \{0}\,
ex.Message);
}

And request with response is above reply. Please check it and guide
for solve the error.

On Jul 31, 5:11 pm, Mukut muk143kan...@gmail.com wrote:
 Dear Sir,

 I am sending my total details of my web application and can't found
 the problem. Please verify these steps with spending some time to
 relief me from this problem.

 I am configure in my web.config for getting list on keyword  ideas
 using Google sandbox api as below and after running the code write a
 request and response in a Log file also

 as below. An error is returned in this application. But can't
 understand what to do.

 My application's is using ASP.NET 2008 and C# and goal to result like
 this url but just getting keywords

    https://adwords.google.com/o/Targeting/Explorer?__u=4468366968__c=25...

 Web services present in my web application are

    KeywordToolService.wsdl,
    TargettingIdeaService.wsdl and
    AdGroupCriterionService.wsdl.

 Service is used as your suggestion TargettingIdeaService and code is
 use awapi_dotnet_lib_9.0.0\Examples\v200909\GetRelatedKeywords.cs.

 Web.config file as below

      configSections
                 section name=AdWordsApi
 type=com.google.api.adwords.lib.ApplicationConfiguration,google-api-
 adwords-dotnet/
      /configSections
      AdWordsApi
                 !-- Change the appropriate flags to turn on SOAP logging. --
                 add key=LogPath value=D:\mywebsitename\Log\/
                 add key=LogToConsole value=false/
                 add key=LogToFile value=true/
                 add key=MaskCredentials value=false/
                 !-- Fill the following values if you plan to use a proxy 
 server.--
                 add key=ProxyServer value=/
                 add key=ProxyUser value=/
                 add key=ProxyPassword value=/
                 add key=ProxyDomain value=/
                 !-- Uncomment this key if you want to disable gzip 
 compression in
 SOAP requests.--
                 !--add key=EnableGzipCompression value=false/--
                 !-- Fill the header values. --
                 add key=CompanyName value=Test_Company/
                 add key=Email value=muk143kan...@gmail.com/
                 add key=Password value=mypassword/
                 add key=ClientEmail 
 value=client_1+muk143kan...@gmail.com/
                 add 

Re: Problem to using Google Adwords API

2010-07-31 Thread Mukut
Dear Sir,

I am testing with keyword value sony camera and onida tv but
response are same. Is this for using Sandbox or any error. because I
have no result through this in my web page. But in Log folder's
soap_log.txt file have an response as below

soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
  soap:Header
ns2:ResponseHeader xmlns:ns2=https://adwords.google.com/api/
adwords/o/v200909 xmlns=https://adwords.google.com/api/adwords/cm/
v200909
  requestIda85f3b31a5b3453853ce2e7d2c5243d1/requestId
  operations20/operations
  responseTime174/responseTime
  units20/units
/ns2:ResponseHeader
  /soap:Header
  soap:Body
ns2:getResponse xmlns=https://adwords.google.com/api/adwords/cm/
v200909 xmlns:ns2=https://adwords.google.com/api/adwords/o/v200909;
  ns2:rval
ns2:totalNumEntries300/ns2:totalNumEntries
ns2:entries
  ns2:data
ns2:keyKEYWORD/ns2:key
ns2:value xmlns:xsi=http://www.w3.org/2001/XMLSchema-
instance xsi:type=ns2:KeywordAttribute
  ns2:Attribute.TypeKeywordAttribute/
ns2:Attribute.Type
  ns2:value
Criterion.TypeKeyword/Criterion.Type
textsample keyword 1102684909 0/text
matchTypeEXACT/matchType
  /ns2:value
/ns2:value
  /ns2:data
  ns2:data
ns2:keyIDEA_TYPE/ns2:key
ns2:value xmlns:xsi=http://www.w3.org/2001/XMLSchema-
instance xsi:type=ns2:IdeaTypeAttribute
  ns2:Attribute.TypeIdeaTypeAttribute/
ns2:Attribute.Type
  ns2:valueKEYWORD/ns2:value
/ns2:value
  /ns2:data
/ns2:entries
ns2:entries
this loop 20 times repeated 
   ...
   /ns2:entries
  /ns2:rval
/ns2:getResponse
  /soap:Body
/soap:Envelope

Sir how can I get the original result. Please provide instruction.

Thanks  Regards,
Mukut Kandar
On Jul 31, 6:15 pm, Mukut muk143kan...@gmail.com wrote:
 My code is as below

  AdWordsUser user = new AdWordsUser();
              //Get the TargetingIdeaService.
             TargetingIdeaService targetingIdeaService =
 (TargetingIdeaService)user.GetService(AdWordsService.v200909.TargetingIdeaS 
 ervice);
             Keyword keyword = new Keyword();
             keyword.text = urlTW;
             keyword.matchTypeSpecified = false;
             keyword.matchType = KeywordMatchType.EXACT;

             RelatedToKeywordSearchParameter searchParameter = new
 RelatedToKeywordSearchParameter();
             searchParameter.keywords = new Keyword[]
 { keyword };

             TargetingIdeaSelector selector = new
 TargetingIdeaSelector();
             selector.searchParameters = new SearchParameter[]
 { searchParameter };
             selector.ideaTypeSpecified = true;
             selector.ideaType = IdeaType.KEYWORD;
             selector.requestTypeSpecified = true;
             selector.requestType = RequestType.IDEAS;

             Paging paging = new Paging();
             paging.startIndex = 0;
             paging.startIndexSpecified = true;
             paging.numberResults = 20;
             paging.numberResultsSpecified = true;

             selector.paging = paging;

             try
             {
                 TargetingIdeaPage page =
 targetingIdeaService.get(selector);

                 if (page != null  page.entries != null)
                 {
                     Console.WriteLine(There are a total of {0}
 keywords related to '{1}'. The first {2} +
                        entries are displayed below: \n,
 page.totalNumEntries, urlTW,
                       page.entries.Length);

                     foreach (TargetingIdea idea in page.entries)
                     {
                         foreach (Type_AttributeMapEntry entry in
 idea.data)
                         {
                             if (entry.key == AttributeType.KEYWORD)
                             {
                                 KeywordAttribute kwdAttribute =
 entry.value as KeywordAttribute;
                                 Console.WriteLine(Related keyword
 with text = '{0}' and match type = '{1}' +
                                    was found.,
 kwdAttribute.value.text, kwdAttribute.value.matchType);
                             }
                         }
                     }
                 }
                 else
                 {
                     Console.WriteLine(No related keywords were found
 for your keyword.);
                 }
             }
             catch (Exception ex)
             {
                 Console.WriteLine(Failed to retrieve related
 keywords. Exception says \{0}\,
                     ex.Message);
             }

 And request with response is above reply. Please check it and guide
 for solve the error.

 On Jul 31, 5:11 pm,Mukutmuk143kan...@gmail.com wrote:



  Dear Sir,

  I am sending my total details of my web application and can't found
  the problem. 

Re: Problem to using Google Adwords API

2010-07-30 Thread AdWords API Advisor
Hi Mukut,

My apologies, I had misunderstood your question.  The generate keyword
ideas you can use the TargetingIdeaService:

  
http://code.google.com/apis/adwords/v2009/docs/reference-v200909/TargetingIdeaService.html

An example of how to use this service with the .NET client library is
available here:

  
http://code.google.com/p/google-api-adwords-dotnet/source/browse/trunk/Examples/v200909/GetRelatedKeywords.cs

Best,
- Eric

On Jul 29, 10:44 am, Mukut muk143kan...@gmail.com wrote:
 Sir,

  after see the example I understand that this AdGroupCriterion Service
 is provide keyword for advertise purpose. But I need generate Keywords
 list for SEO using Google api in asp.net 2008 and c#.  Clearly my
 client will be give his website in a textbox and clicking on generate
 keyword button a list of keywords are fill next drop down control.
 This keyword will be relevant with the client's website. And Google
 API is provide these keywords. I want this application of google api
 to integrateusing Asp.net 2008 and c#. Please sir provide me such type
 of application's service and proper guideline to implement. Waiting
 for your reply sir.

 Thanks  Regards
 Mukut Kandar

 On Jul 29, 7:09 pm, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:



  Hi Mukut,

  To create keywords in the API you need to use the
  AdGroupCriterionService:

   http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCrite...

  An example of how to use this service with the .NET client library to
  create keywords is available here:

   http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...

  Best,
  - Eric Koleda, AdWords API Team

  On Jul 29, 9:33 am, Mukut muk143kan...@gmail.com wrote:

   Sir I have no response on this discussion please give me a suggestion.
   I am waiting for your reply.

   On Jul 29, 5:05 pm, Mukut muk143kan...@gmail.com wrote:

Dear Sir,
I am trying to create in a new website application of
Asp.net 2008 using c# for generate keyword through Google Adword API
with my user interface. I can not get any example on it. There are I
am get example on campaigning but not in keyword generate. Sir please
provide me an example or full instruction on it. Is it chargeable then
confirm me. I have to do it anyway.

On Jul 29, 4:35 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:

 Hi Mukut,

 Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=1...
 for details on what developer tokens are. Also see our FAQ pages at

http://www.google.com/support/adwordsapi/http://www.google.com/suppor...

 for other topics related to AdWords API.

 Cheers,
 Anash

 On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:

  Sir,

   I did not get any response. Please anybody can help me to generate
  keyword using Google Adword API in Asp.net 3.5 and c#.
  There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
  copy all the files and folder in another folder to and run it with
  changing in web.config file. And create a Log folder in it. Changes 
  in
  web.config file to set values for add key as CompanyName, Email,
  Password, ClientEmail but cannot understand what is for
  DeveloperToken. The website is running and create a campaign as
  result Created campaign #-1 successfully! above the create a
  Campaign button. What is the issue to creating a campaign. Please
  provide information me, I do not understand. What is the next
  procedure. Please help me. I am now in tremendous pressure. Waiting
  for your reply.

  Thanks  Regards
   Mukut Kandar.

  On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:

   Dear Sir,

   I am get an instruction word file after unzip the folder
   awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
   application. I am trying to create in a new website application of
   Asp.net 2008 using c#. Please instruct me how to configure or
   integrate for website the google Adword API to generate keyword.

   On Jul 29, 1:57 pm, AdWords API Advisor 
   adwordsapiadvi...@google.com
   wrote:

Hi Mukut,

Check out the AdWords API Dotnet library available 
athttp://code.google.com/p/google-api-adwords-dotnet/. It works 
with the
latest version of AdWords API, has code examples for the common
activities in AdWords API, and has an ASP.NET sample as well. 
The
library is written in VS2005, but works fine with VS2008 as 
well.

You might also want to 
readhttp://code.google.com/apis/adwords/v2009/docs/start.html
to learn more about AdWords API itself.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:

 Dear Sir,

 I am beginner to integrating Google Adwords API. 

Re: Problem to using Google Adwords API

2010-07-30 Thread Mukut
Dear Sir,

I am implement this Code but no result are given. What will be the
setting. Can you provide me an user interface to proper
implementation. I can not set the developer token. Is it important
then how can I create it. Please send me instruction.
Thanks  Regards,
Mukut Kandar.

On Jul 30, 7:24 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Mukut,

 My apologies, I had misunderstood your question.  The generate keyword
 ideas you can use the TargetingIdeaService:

  http://code.google.com/apis/adwords/v2009/docs/reference-v200909/Targ...

 An example of how to use this service with the .NET client library is
 available here:

  http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...

 Best,
 - Eric

 On Jul 29, 10:44 am, Mukut muk143kan...@gmail.com wrote:



  Sir,

   after see the example I understand that this AdGroupCriterion Service
  is provide keyword for advertise purpose. But I need generate Keywords
  list for SEO using Google api in asp.net 2008 and c#.  Clearly my
  client will be give his website in a textbox and clicking on generate
  keyword button a list of keywords are fill next drop down control.
  This keyword will be relevant with the client's website. And Google
  API is provide these keywords. I want this application of google api
  to integrateusing Asp.net 2008 and c#. Please sir provide me such type
  of application's service and proper guideline to implement. Waiting
  for your reply sir.

  Thanks  Regards
  Mukut Kandar

  On Jul 29, 7:09 pm, AdWords API Advisor adwordsapiadvi...@google.com
  wrote:

   Hi Mukut,

   To create keywords in the API you need to use the
   AdGroupCriterionService:

    http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCrite...

   An example of how to use this service with the .NET client library to
   create keywords is available here:

    http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...

   Best,
   - Eric Koleda, AdWords API Team

   On Jul 29, 9:33 am, Mukut muk143kan...@gmail.com wrote:

Sir I have no response on this discussion please give me a suggestion.
I am waiting for your reply.

On Jul 29, 5:05 pm, Mukut muk143kan...@gmail.com wrote:

 Dear Sir,
 I am trying to create in a new website application of
 Asp.net 2008 using c# for generate keyword through Google Adword API
 with my user interface. I can not get any example on it. There are I
 am get example on campaigning but not in keyword generate. Sir please
 provide me an example or full instruction on it. Is it chargeable then
 confirm me. I have to do it anyway.

 On Jul 29, 4:35 pm, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:

  Hi Mukut,

  Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=1...
  for details on what developer tokens are. Also see our FAQ pages at

 http://www.google.com/support/adwordsapi/http://www.google.com/suppor...

  for other topics related to AdWords API.

  Cheers,
  Anash

  On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:

   Sir,

    I did not get any response. Please anybody can help me to 
   generate
   keyword using Google Adword API in Asp.net 3.5 and c#.
   There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I 
   am
   copy all the files and folder in another folder to and run it with
   changing in web.config file. And create a Log folder in it. 
   Changes in
   web.config file to set values for add key as CompanyName, Email,
   Password, ClientEmail but cannot understand what is for
   DeveloperToken. The website is running and create a campaign as
   result Created campaign #-1 successfully! above the create a
   Campaign button. What is the issue to creating a campaign. Please
   provide information me, I do not understand. What is the next
   procedure. Please help me. I am now in tremendous pressure. 
   Waiting
   for your reply.

   Thanks  Regards
    Mukut Kandar.

   On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:

Dear Sir,

I am get an instruction word file after unzip the folder
awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
application. I am trying to create in a new website application 
of
Asp.net 2008 using c#. Please instruct me how to configure or
integrate for website the google Adword API to generate keyword.

On Jul 29, 1:57 pm, AdWords API Advisor 
adwordsapiadvi...@google.com
wrote:

 Hi Mukut,

 Check out the AdWords API Dotnet library available 
 athttp://code.google.com/p/google-api-adwords-dotnet/. It 
 works with the
 latest version of AdWords API, has code examples for the 
 common
 activities in AdWords API, and has an ASP.NET sample as well. 
 The
 

Re: Problem to using Google Adwords API

2010-07-30 Thread AdWords API Advisor
Hi Mukut,

To use the API you need a developer token, which is obtained by
registering your MCC account for API access.  Information on how to
register is available here:

  https://adwords.google.com/support/aw/adwordsapi/bin/answer.py?answer=15104

Please be aware that this process may take up to two weeks.  In the
meantime you can use the sandbox environment, which doesn't require an
approved developer token:

  http://www.youtube.com/watch?v=cqVtUdB975M

Best,
- Eric

On Jul 30, 10:45 am, Mukut muk143kan...@gmail.com wrote:
 Dear Sir,

 I am implement this Code but no result are given. What will be the
 setting. Can you provide me an user interface to proper
 implementation. I can not set the developer token. Is it important
 then how can I create it. Please send me instruction.
 Thanks  Regards,
 Mukut Kandar.

 On Jul 30, 7:24 pm, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:



  Hi Mukut,

  My apologies, I had misunderstood your question.  The generate keyword
  ideas you can use the TargetingIdeaService:

   http://code.google.com/apis/adwords/v2009/docs/reference-v200909/Targ...

  An example of how to use this service with the .NET client library is
  available here:

   http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...

  Best,
  - Eric

  On Jul 29, 10:44 am, Mukut muk143kan...@gmail.com wrote:

   Sir,

    after see the example I understand that this AdGroupCriterion Service
   is provide keyword for advertise purpose. But I need generate Keywords
   list for SEO using Google api in asp.net 2008 and c#.  Clearly my
   client will be give his website in a textbox and clicking on generate
   keyword button a list of keywords are fill next drop down control.
   This keyword will be relevant with the client's website. And Google
   API is provide these keywords. I want this application of google api
   to integrateusing Asp.net 2008 and c#. Please sir provide me such type
   of application's service and proper guideline to implement. Waiting
   for your reply sir.

   Thanks  Regards
   Mukut Kandar

   On Jul 29, 7:09 pm, AdWords API Advisor adwordsapiadvi...@google.com
   wrote:

Hi Mukut,

To create keywords in the API you need to use the
AdGroupCriterionService:

 http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCrite...

An example of how to use this service with the .NET client library to
create keywords is available here:

 http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...

Best,
- Eric Koleda, AdWords API Team

On Jul 29, 9:33 am, Mukut muk143kan...@gmail.com wrote:

 Sir I have no response on this discussion please give me a suggestion.
 I am waiting for your reply.

 On Jul 29, 5:05 pm, Mukut muk143kan...@gmail.com wrote:

  Dear Sir,
  I am trying to create in a new website application of
  Asp.net 2008 using c# for generate keyword through Google Adword API
  with my user interface. I can not get any example on it. There are I
  am get example on campaigning but not in keyword generate. Sir 
  please
  provide me an example or full instruction on it. Is it chargeable 
  then
  confirm me. I have to do it anyway.

  On Jul 29, 4:35 pm, AdWords API Advisor 
  adwordsapiadvi...@google.com
  wrote:

   Hi Mukut,

   Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=1...
   for details on what developer tokens are. Also see our FAQ pages 
   at

  http://www.google.com/support/adwordsapi/http://www.google.com/suppor...

   for other topics related to AdWords API.

   Cheers,
   Anash

   On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:

Sir,

 I did not get any response. Please anybody can help me to 
generate
keyword using Google Adword API in Asp.net 3.5 and c#.
There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And 
I am
copy all the files and folder in another folder to and run it 
with
changing in web.config file. And create a Log folder in it. 
Changes in
web.config file to set values for add key as CompanyName, Email,
Password, ClientEmail but cannot understand what is for
DeveloperToken. The website is running and create a campaign 
as
result Created campaign #-1 successfully! above the create a
Campaign button. What is the issue to creating a campaign. 
Please
provide information me, I do not understand. What is the next
procedure. Please help me. I am now in tremendous pressure. 
Waiting
for your reply.

Thanks  Regards
 Mukut Kandar.

On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:

 Dear Sir,

 I am get an instruction word file after unzip the folder
 awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
 

Problem to using Google Adwords API

2010-07-29 Thread Mukut
Dear Sir,

I am beginner to integrating Google Adwords API. I want to integrate
the Google Adword API using ASP.NET 2008 and C#. But after so many
search I can't find proper example, instruction or source code to
integrate Google Adwords API. I am so tensed to complete my job.
My requirement is as below ==
Client will enter their website into the portal. Then using google API
my application generate a list of keywords that are relevant to
client's website.

After search in web I have got two web services, they are
AccountService.wsdl and KeywordToolService.wsdl. But how can I
integrate google Adwords API to generate keywords using ASP.NET 2008
and c#, please send me instructions and proper guide to integrate it
in my web application. Otherwise I have to leave this job. I am so
tensed for it ...

Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Problem to using Google Adwords API

2010-07-29 Thread AdWords API Advisor
Hi Mukut,

Check out the AdWords API Dotnet library available at
http://code.google.com/p/google-api-adwords-dotnet/. It works with the
latest version of AdWords API, has code examples for the common
activities in AdWords API, and has an ASP.NET sample as well. The
library is written in VS2005, but works fine with VS2008 as well.

You might also want to read 
http://code.google.com/apis/adwords/v2009/docs/start.html
to learn more about AdWords API itself.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:
 Dear Sir,

 I am beginner to integrating Google Adwords API. I want to integrate
 the Google Adword API using ASP.NET 2008 and C#. But after so many
 search I can't find proper example, instruction or source code to
 integrate Google Adwords API. I am so tensed to complete my job.
 My requirement is as below ==
 Client will enter their website into the portal. Then using google API
 my application generate a list of keywords that are relevant to
 client's website.

 After search in web I have got two web services, they are
 AccountService.wsdl and KeywordToolService.wsdl. But how can I
 integrate google Adwords API to generate keywords using ASP.NET 2008
 and c#, please send me instructions and proper guide to integrate it
 in my web application. Otherwise I have to leave this job. I am so
 tensed for it ...

 Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Thanks for helping me.
I am download a fie awapi_dotnet_lib_9.0.0.zip. But I think it is a
windows application.
And there are code example for the common activities in Adwords API.
But I am not found for generate keyword code with an interface of
using Google Adwords API. All the pages are Class pages.
Please help on interface wise source code.

On Jul 29, 1:57 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Mukut,

 Check out the AdWords API Dotnet library available 
 athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
 latest version of AdWords API, has code examples for the common
 activities in AdWords API, and has an ASP.NET sample as well. The
 library is written in VS2005, but works fine with VS2008 as well.

 You might also want to 
 readhttp://code.google.com/apis/adwords/v2009/docs/start.html
 to learn more about AdWords API itself.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:



  Dear Sir,

  I am beginner to integrating Google Adwords API. I want to integrate
  the Google Adword API using ASP.NET 2008 and C#. But after so many
  search I can't find proper example, instruction or source code to
  integrate Google Adwords API. I am so tensed to complete my job.
  My requirement is as below ==
  Client will enter their website into the portal. Then using google API
  my application generate a list of keywords that are relevant to
  client's website.

  After search in web I have got two web services, they are
  AccountService.wsdl and KeywordToolService.wsdl. But how can I
  integrate google Adwords API to generate keywords using ASP.NET 2008
  and c#, please send me instructions and proper guide to integrate it
  in my web application. Otherwise I have to leave this job. I am so
  tensed for it ...

  Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Dear Sir,

I am get an instruction word file after unzip the folder
awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
application. I am trying to create in a new website application of
Asp.net 2008 using c#. Please instruct me how to configure or
integrate for website the google Adword API to generate keyword.

On Jul 29, 1:57 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Mukut,

 Check out the AdWords API Dotnet library available 
 athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
 latest version of AdWords API, has code examples for the common
 activities in AdWords API, and has an ASP.NET sample as well. The
 library is written in VS2005, but works fine with VS2008 as well.

 You might also want to 
 readhttp://code.google.com/apis/adwords/v2009/docs/start.html
 to learn more about AdWords API itself.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:



  Dear Sir,

  I am beginner to integrating Google Adwords API. I want to integrate
  the Google Adword API using ASP.NET 2008 and C#. But after so many
  search I can't find proper example, instruction or source code to
  integrate Google Adwords API. I am so tensed to complete my job.
  My requirement is as below ==
  Client will enter their website into the portal. Then using google API
  my application generate a list of keywords that are relevant to
  client's website.

  After search in web I have got two web services, they are
  AccountService.wsdl and KeywordToolService.wsdl. But how can I
  integrate google Adwords API to generate keywords using ASP.NET 2008
  and c#, please send me instructions and proper guide to integrate it
  in my web application. Otherwise I have to leave this job. I am so
  tensed for it ...

  Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Sir,

 I did not get any response. Please anybody can help me to generate
keyword using Google Adword API in Asp.net 3.5 and c#.
There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
copy all the files and folder in another folder to and run it with
changing in web.config file. And create a Log folder in it. Changes in
web.config file to set values for add key as CompanyName, Email,
Password, ClientEmail but cannot understand what is for
DeveloperToken. The website is running and create a campaign as
result Created campaign #-1 successfully! above the create a
Campaign button. What is the issue to creating a campaign. Please
provide information me, I do not understand. What is the next
procedure. Please help me. I am now in tremendous pressure. Waiting
for your reply.

Thanks  Regards
 Mukut Kandar.

On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:
 Dear Sir,

 I am get an instruction word file after unzip the folder
 awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
 application. I am trying to create in a new website application of
 Asp.net 2008 using c#. Please instruct me how to configure or
 integrate for website the google Adword API to generate keyword.

 On Jul 29, 1:57 pm, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:



  Hi Mukut,

  Check out the AdWords API Dotnet library available 
  athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
  latest version of AdWords API, has code examples for the common
  activities in AdWords API, and has an ASP.NET sample as well. The
  library is written in VS2005, but works fine with VS2008 as well.

  You might also want to 
  readhttp://code.google.com/apis/adwords/v2009/docs/start.html
  to learn more about AdWords API itself.

  Cheers,
  Anash P. Oommen,
  AdWords API Advisor.

  On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:

   Dear Sir,

   I am beginner to integrating Google Adwords API. I want to integrate
   the Google Adword API using ASP.NET 2008 and C#. But after so many
   search I can't find proper example, instruction or source code to
   integrate Google Adwords API. I am so tensed to complete my job.
   My requirement is as below ==
   Client will enter their website into the portal. Then using google API
   my application generate a list of keywords that are relevant to
   client's website.

   After search in web I have got two web services, they are
   AccountService.wsdl and KeywordToolService.wsdl. But how can I
   integrate google Adwords API to generate keywords using ASP.NET 2008
   and c#, please send me instructions and proper guide to integrate it
   in my web application. Otherwise I have to leave this job. I am so
   tensed for it ...

   Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Problem to using Google Adwords API

2010-07-29 Thread AdWords API Advisor
Hi Mukut,

See http://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=15113
for details on what developer tokens are. Also see our FAQ pages at

http://www.google.com/support/adwordsapi/
http://www.google.com/support/adwordsapi/bin/topic.py?hl=entopic=233

for other topics related to AdWords API.

Cheers,
Anash

On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:
 Sir,

  I did not get any response. Please anybody can help me to generate
 keyword using Google Adword API in Asp.net 3.5 and c#.
 There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
 copy all the files and folder in another folder to and run it with
 changing in web.config file. And create a Log folder in it. Changes in
 web.config file to set values for add key as CompanyName, Email,
 Password, ClientEmail but cannot understand what is for
 DeveloperToken. The website is running and create a campaign as
 result Created campaign #-1 successfully! above the create a
 Campaign button. What is the issue to creating a campaign. Please
 provide information me, I do not understand. What is the next
 procedure. Please help me. I am now in tremendous pressure. Waiting
 for your reply.

 Thanks  Regards
  Mukut Kandar.

 On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:



  Dear Sir,

  I am get an instruction word file after unzip the folder
  awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
  application. I am trying to create in a new website application of
  Asp.net 2008 using c#. Please instruct me how to configure or
  integrate for website the google Adword API to generate keyword.

  On Jul 29, 1:57 pm, AdWords API Advisor adwordsapiadvi...@google.com
  wrote:

   Hi Mukut,

   Check out the AdWords API Dotnet library available 
   athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
   latest version of AdWords API, has code examples for the common
   activities in AdWords API, and has an ASP.NET sample as well. The
   library is written in VS2005, but works fine with VS2008 as well.

   You might also want to 
   readhttp://code.google.com/apis/adwords/v2009/docs/start.html
   to learn more about AdWords API itself.

   Cheers,
   Anash P. Oommen,
   AdWords API Advisor.

   On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:

Dear Sir,

I am beginner to integrating Google Adwords API. I want to integrate
the Google Adword API using ASP.NET 2008 and C#. But after so many
search I can't find proper example, instruction or source code to
integrate Google Adwords API. I am so tensed to complete my job.
My requirement is as below ==
Client will enter their website into the portal. Then using google API
my application generate a list of keywords that are relevant to
client's website.

After search in web I have got two web services, they are
AccountService.wsdl and KeywordToolService.wsdl. But how can I
integrate google Adwords API to generate keywords using ASP.NET 2008
and c#, please send me instructions and proper guide to integrate it
in my web application. Otherwise I have to leave this job. I am so
tensed for it ...

Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Dear Sir,
I am trying to create in a new website application of
Asp.net 2008 using c# for generate keyword through Google Adword API
with my user interface. I can not get any example on it. There are I
am get example on campaigning but not in keyword generate. Sir please
provide me an example or full instruction on it. Is it chargeable then
confirm me. I have to do it anyway.

On Jul 29, 4:35 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Mukut,

 Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=1...
 for details on what developer tokens are. Also see our FAQ pages at

 http://www.google.com/support/adwordsapi/http://www.google.com/support/adwordsapi/bin/topic.py?hl=entopic=233

 for other topics related to AdWords API.

 Cheers,
 Anash

 On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:



  Sir,

   I did not get any response. Please anybody can help me to generate
  keyword using Google Adword API in Asp.net 3.5 and c#.
  There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
  copy all the files and folder in another folder to and run it with
  changing in web.config file. And create a Log folder in it. Changes in
  web.config file to set values for add key as CompanyName, Email,
  Password, ClientEmail but cannot understand what is for
  DeveloperToken. The website is running and create a campaign as
  result Created campaign #-1 successfully! above the create a
  Campaign button. What is the issue to creating a campaign. Please
  provide information me, I do not understand. What is the next
  procedure. Please help me. I am now in tremendous pressure. Waiting
  for your reply.

  Thanks  Regards
   Mukut Kandar.

  On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:

   Dear Sir,

   I am get an instruction word file after unzip the folder
   awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
   application. I am trying to create in a new website application of
   Asp.net 2008 using c#. Please instruct me how to configure or
   integrate for website the google Adword API to generate keyword.

   On Jul 29, 1:57 pm, AdWords API Advisor adwordsapiadvi...@google.com
   wrote:

Hi Mukut,

Check out the AdWords API Dotnet library available 
athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
latest version of AdWords API, has code examples for the common
activities in AdWords API, and has an ASP.NET sample as well. The
library is written in VS2005, but works fine with VS2008 as well.

You might also want to 
readhttp://code.google.com/apis/adwords/v2009/docs/start.html
to learn more about AdWords API itself.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:

 Dear Sir,

 I am beginner to integrating Google Adwords API. I want to integrate
 the Google Adword API using ASP.NET 2008 and C#. But after so many
 search I can't find proper example, instruction or source code to
 integrate Google Adwords API. I am so tensed to complete my job.
 My requirement is as below ==
 Client will enter their website into the portal. Then using google API
 my application generate a list of keywords that are relevant to
 client's website.

 After search in web I have got two web services, they are
 AccountService.wsdl and KeywordToolService.wsdl. But how can I
 integrate google Adwords API to generate keywords using ASP.NET 2008
 and c#, please send me instructions and proper guide to integrate it
 in my web application. Otherwise I have to leave this job. I am so
 tensed for it ...

 Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Sir I have no response on this discussion please give me a suggestion.
I am waiting for your reply.

On Jul 29, 5:05 pm, Mukut muk143kan...@gmail.com wrote:
 Dear Sir,
 I am trying to create in a new website application of
 Asp.net 2008 using c# for generate keyword through Google Adword API
 with my user interface. I can not get any example on it. There are I
 am get example on campaigning but not in keyword generate. Sir please
 provide me an example or full instruction on it. Is it chargeable then
 confirm me. I have to do it anyway.

 On Jul 29, 4:35 pm, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:



  Hi Mukut,

  Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=1...
  for details on what developer tokens are. Also see our FAQ pages at

 http://www.google.com/support/adwordsapi/http://www.google.com/suppor...

  for other topics related to AdWords API.

  Cheers,
  Anash

  On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:

   Sir,

    I did not get any response. Please anybody can help me to generate
   keyword using Google Adword API in Asp.net 3.5 and c#.
   There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
   copy all the files and folder in another folder to and run it with
   changing in web.config file. And create a Log folder in it. Changes in
   web.config file to set values for add key as CompanyName, Email,
   Password, ClientEmail but cannot understand what is for
   DeveloperToken. The website is running and create a campaign as
   result Created campaign #-1 successfully! above the create a
   Campaign button. What is the issue to creating a campaign. Please
   provide information me, I do not understand. What is the next
   procedure. Please help me. I am now in tremendous pressure. Waiting
   for your reply.

   Thanks  Regards
    Mukut Kandar.

   On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:

Dear Sir,

I am get an instruction word file after unzip the folder
awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
application. I am trying to create in a new website application of
Asp.net 2008 using c#. Please instruct me how to configure or
integrate for website the google Adword API to generate keyword.

On Jul 29, 1:57 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:

 Hi Mukut,

 Check out the AdWords API Dotnet library available 
 athttp://code.google.com/p/google-api-adwords-dotnet/. It works with 
 the
 latest version of AdWords API, has code examples for the common
 activities in AdWords API, and has an ASP.NET sample as well. The
 library is written in VS2005, but works fine with VS2008 as well.

 You might also want to 
 readhttp://code.google.com/apis/adwords/v2009/docs/start.html
 to learn more about AdWords API itself.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:

  Dear Sir,

  I am beginner to integrating Google Adwords API. I want to integrate
  the Google Adword API using ASP.NET 2008 and C#. But after so many
  search I can't find proper example, instruction or source code to
  integrate Google Adwords API. I am so tensed to complete my job.
  My requirement is as below ==
  Client will enter their website into the portal. Then using google 
  API
  my application generate a list of keywords that are relevant to
  client's website.

  After search in web I have got two web services, they are
  AccountService.wsdl and KeywordToolService.wsdl. But how can I
  integrate google Adwords API to generate keywords using ASP.NET 2008
  and c#, please send me instructions and proper guide to integrate it
  in my web application. Otherwise I have to leave this job. I am so
  tensed for it ...

  Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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


Re: Problem to using Google Adwords API

2010-07-29 Thread AdWords API Advisor
Hi Mukut,

To create keywords in the API you need to use the
AdGroupCriterionService:

  
http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCriterionService.html

An example of how to use this service with the .NET client library to
create keywords is available here:

  
http://code.google.com/p/google-api-adwords-dotnet/source/browse/trunk/Examples/v200909/AddAdGroupCriteria.cs

Best,
- Eric Koleda, AdWords API Team

On Jul 29, 9:33 am, Mukut muk143kan...@gmail.com wrote:
 Sir I have no response on this discussion please give me a suggestion.
 I am waiting for your reply.

 On Jul 29, 5:05 pm, Mukut muk143kan...@gmail.com wrote:



  Dear Sir,
  I am trying to create in a new website application of
  Asp.net 2008 using c# for generate keyword through Google Adword API
  with my user interface. I can not get any example on it. There are I
  am get example on campaigning but not in keyword generate. Sir please
  provide me an example or full instruction on it. Is it chargeable then
  confirm me. I have to do it anyway.

  On Jul 29, 4:35 pm, AdWords API Advisor adwordsapiadvi...@google.com
  wrote:

   Hi Mukut,

   Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=1...
   for details on what developer tokens are. Also see our FAQ pages at

  http://www.google.com/support/adwordsapi/http://www.google.com/suppor...

   for other topics related to AdWords API.

   Cheers,
   Anash

   On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:

Sir,

 I did not get any response. Please anybody can help me to generate
keyword using Google Adword API in Asp.net 3.5 and c#.
There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
copy all the files and folder in another folder to and run it with
changing in web.config file. And create a Log folder in it. Changes in
web.config file to set values for add key as CompanyName, Email,
Password, ClientEmail but cannot understand what is for
DeveloperToken. The website is running and create a campaign as
result Created campaign #-1 successfully! above the create a
Campaign button. What is the issue to creating a campaign. Please
provide information me, I do not understand. What is the next
procedure. Please help me. I am now in tremendous pressure. Waiting
for your reply.

Thanks  Regards
 Mukut Kandar.

On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:

 Dear Sir,

 I am get an instruction word file after unzip the folder
 awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
 application. I am trying to create in a new website application of
 Asp.net 2008 using c#. Please instruct me how to configure or
 integrate for website the google Adword API to generate keyword.

 On Jul 29, 1:57 pm, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:

  Hi Mukut,

  Check out the AdWords API Dotnet library available 
  athttp://code.google.com/p/google-api-adwords-dotnet/. It works 
  with the
  latest version of AdWords API, has code examples for the common
  activities in AdWords API, and has an ASP.NET sample as well. The
  library is written in VS2005, but works fine with VS2008 as well.

  You might also want to 
  readhttp://code.google.com/apis/adwords/v2009/docs/start.html
  to learn more about AdWords API itself.

  Cheers,
  Anash P. Oommen,
  AdWords API Advisor.

  On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:

   Dear Sir,

   I am beginner to integrating Google Adwords API. I want to 
   integrate
   the Google Adword API using ASP.NET 2008 and C#. But after so many
   search I can't find proper example, instruction or source code to
   integrate Google Adwords API. I am so tensed to complete my job.
   My requirement is as below ==
   Client will enter their website into the portal. Then using 
   google API
   my application generate a list of keywords that are relevant to
   client's website.

   After search in web I have got two web services, they are
   AccountService.wsdl and KeywordToolService.wsdl. But how can I
   integrate google Adwords API to generate keywords using ASP.NET 
   2008
   and c#, please send me instructions and proper guide to integrate 
   it
   in my web application. Otherwise I have to leave this job. I am so
   tensed for it ...

   Advanced thanks for the help ...

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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

Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Sir,

 after see the example I understand that this AdGroupCriterion Service
is provide keyword for advertise purpose. But I need generate Keywords
list for SEO using Google api in asp.net 2008 and c#.  Clearly my
client will be give his website in a textbox and clicking on generate
keyword button a list of keywords are fill next drop down control.
This keyword will be relevant with the client's website. And Google
API is provide these keywords. I want this application of google api
to integrateusing Asp.net 2008 and c#. Please sir provide me such type
of application's service and proper guideline to implement. Waiting
for your reply sir.

Thanks  Regards
Mukut Kandar



On Jul 29, 7:09 pm, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi Mukut,

 To create keywords in the API you need to use the
 AdGroupCriterionService:

  http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCrite...

 An example of how to use this service with the .NET client library to
 create keywords is available here:

  http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...

 Best,
 - Eric Koleda, AdWords API Team

 On Jul 29, 9:33 am, Mukut muk143kan...@gmail.com wrote:



  Sir I have no response on this discussion please give me a suggestion.
  I am waiting for your reply.

  On Jul 29, 5:05 pm, Mukut muk143kan...@gmail.com wrote:

   Dear Sir,
   I am trying to create in a new website application of
   Asp.net 2008 using c# for generate keyword through Google Adword API
   with my user interface. I can not get any example on it. There are I
   am get example on campaigning but not in keyword generate. Sir please
   provide me an example or full instruction on it. Is it chargeable then
   confirm me. I have to do it anyway.

   On Jul 29, 4:35 pm, AdWords API Advisor adwordsapiadvi...@google.com
   wrote:

Hi Mukut,

Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=enanswer=1...
for details on what developer tokens are. Also see our FAQ pages at

   http://www.google.com/support/adwordsapi/http://www.google.com/suppor...

for other topics related to AdWords API.

Cheers,
Anash

On Jul 29, 4:12 pm, Mukut muk143kan...@gmail.com wrote:

 Sir,

  I did not get any response. Please anybody can help me to generate
 keyword using Google Adword API in Asp.net 3.5 and c#.
 There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
 copy all the files and folder in another folder to and run it with
 changing in web.config file. And create a Log folder in it. Changes in
 web.config file to set values for add key as CompanyName, Email,
 Password, ClientEmail but cannot understand what is for
 DeveloperToken. The website is running and create a campaign as
 result Created campaign #-1 successfully! above the create a
 Campaign button. What is the issue to creating a campaign. Please
 provide information me, I do not understand. What is the next
 procedure. Please help me. I am now in tremendous pressure. Waiting
 for your reply.

 Thanks  Regards
  Mukut Kandar.

 On Jul 29, 3:20 pm, Mukut muk143kan...@gmail.com wrote:

  Dear Sir,

  I am get an instruction word file after unzip the folder
  awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
  application. I am trying to create in a new website application of
  Asp.net 2008 using c#. Please instruct me how to configure or
  integrate for website the google Adword API to generate keyword.

  On Jul 29, 1:57 pm, AdWords API Advisor 
  adwordsapiadvi...@google.com
  wrote:

   Hi Mukut,

   Check out the AdWords API Dotnet library available 
   athttp://code.google.com/p/google-api-adwords-dotnet/. It works 
   with the
   latest version of AdWords API, has code examples for the common
   activities in AdWords API, and has an ASP.NET sample as well. The
   library is written in VS2005, but works fine with VS2008 as well.

   You might also want to 
   readhttp://code.google.com/apis/adwords/v2009/docs/start.html
   to learn more about AdWords API itself.

   Cheers,
   Anash P. Oommen,
   AdWords API Advisor.

   On Jul 29, 12:31 pm, Mukut muk143kan...@gmail.com wrote:

Dear Sir,

I am beginner to integrating Google Adwords API. I want to 
integrate
the Google Adword API using ASP.NET 2008 and C#. But after so 
many
search I can't find proper example, instruction or source code 
to
integrate Google Adwords API. I am so tensed to complete my job.
My requirement is as below ==
Client will enter their website into the portal. Then using 
google API
my application generate a list of keywords that are relevant to
client's website.

After search in web I have got two web services, they are
AccountService.wsdl and