throws Exception {
// Request the advertiser service from the service client factory.
AdvertiserRemote advertiserService = dfaServices.get(session, AdvertiserRemote.class);
// Create the advertiser structure.
Advertiser advertiser = new Advertiser();
advertiser.setId(0);
advertiser.setName(advertiserName);
advertiser.setAdvertiserGroupId(0);
advertiser.setApproved(true);
// Create the advertiser.
AdvertiserSaveResult advertiserSaveResult = advertiserService.saveAdvertiser(advertiser);
// Display the advertiser ID.