3 messages in com.googlegroups.adwords-apiRe: The request did not contain a hea...
FromSent OnAttachments
Nate22 Mar 2006 06:54 
MikeyB25 Mar 2006 03:37 
MikeyB25 Mar 2006 04:17 
Subject:Re: The request did not contain a header named 'email'
From:MikeyB (mich@gmail.com)
Date:03/25/2006 04:17:40 AM
List:com.googlegroups.adwords-api

correction on the above code :) my code dump

public AdWordsCampaignSync( String myEmail, String myPassword, String myToken) {

String myUseragent = "Toad Processor";

//Initialize campaign service CampaignServiceService CampaignService = new CampaignServiceService(); CampaignService.useragentValue = new com.google.adwords.CampaignService.useragent(); CampaignService.useragentValue.Text = new String[] { myUseragent }; CampaignService.emailValue = new com.google.adwords.CampaignService.email(); CampaignService.emailValue.Text = new String[] { myEmail }; CampaignService.passwordValue = new com.google.adwords.CampaignService.password(); CampaignService.passwordValue.Text = new String[] { myPassword }; CampaignService.tokenValue = new com.google.adwords.CampaignService.token(); CampaignService.tokenValue.Text = new String[] { myToken };

this should probably almost work in java (seems that C# and java are look alikes)