I am using the Java Adwords API. Is there a way that I can see what the SOAP request looks like that is being sent when I create an AdGroup (mutate)?
0
votes
3 Answers
0
votes
You can view the SOAP XML by enabling logging. The default soapXmlLogger
is just configured to log errors, but you can change it from WARN
to INFO
if you want to see everything; for example:
log4j.category.com.google.api.ads.adwords.lib.client.AdWordsServiceClient.soapXmlLogger=INFO, SOAP_LOG, CONSOLE
0
votes