@Override public boolean registerBid(double value, int uniqueUserId, int auctionId) throws RemoteException { RMIClientIntf clientIntf = registeredUsers.get(uniqueUserId); Bid bid = new Bid(value, uniqueUserId); if (!liveAuctionItems.containsKey(auctionId)) { clientIntf.callBack("Auction item id does not exist\n"); return false; } if (uniqueUserId == liveAuctionItems.get(auctionId).getCreator_id()) { clientIntf.callBack("Not able to register bid - bidder is the creator of this auction\n"); return false; } else { if (liveAuctionItems.get(auctionId).addBidder(bid)) { clientIntf.callBack( "Bid registered to auction with id " + auctionId + " and amount " + bid.getBid() + "\n"); return true; } else { clientIntf.callBack( "Bid rejected, user has already placed a bid for this auction, can only place higher bids\n"); return false; } } }
@Override public void notifyResult(AuctionItem item) { if (registeredUsers.containsKey(item.getCreator_id())) { RMIClientIntf creator = registeredUsers.get(item.getCreator_id()); try { creator.callBack("Your Auction has produced the following results :\n "); creator.callBack(item.getResult()); } catch (RemoteException e) { System.out.println("Creator no longer online\n"); } } else { System.out.println("Creator id does not exist\n"); } // Normally an auction with no creator registered should not exist but since this is a // simplified implementation // We allow bids on auctions with no creator (usually the initialised ones) for testing // purposes. if (item.numberOfBids() != 0) { System.out.println("Notifying bidders"); Iterator<Bid> it = item.getBidders(); while (it.hasNext()) { Bid bidder = it.next(); if (registeredUsers.containsKey(bidder.getUserId())) { RMIClientIntf client = registeredUsers.get(bidder.getUserId()); try { client.callBack(item.getResult()); } catch (RemoteException e) { System.out.println("Bidder with id " + bidder.getUserId() + " no longer online\n"); } } else { System.out.println("User id does not exist\n"); } } } }
public static void main(java.lang.String[] args) { try { authorizationData = new AuthorizationData(); authorizationData.setDeveloperToken(DeveloperToken); authorizationData.setAuthentication(new PasswordAuthentication(UserName, Password)); authorizationData.setCustomerId(CustomerId); authorizationData.setAccountId(AccountId); CampaignService = new ServiceClient<ICampaignManagementService>( authorizationData, ICampaignManagementService.class); // Get the user's list of Bing Merchant Center (BMC) stores. final ArrayOfBMCStore stores = getBMCStoresByCustomerId(); if (stores == null) { outputStatusMessage( String.format( "Customer %d does not have any regeistered BMC stores.\n\n", authorizationData.getCustomerId())); return; } // Create a Bing Shopping campaign using the ID of the first store in the list. Campaign campaign = new Campaign(); campaign.setName("Bing Shopping Campaign " + System.currentTimeMillis()); campaign.setDescription("Bing Shopping Campaign Example."); campaign.setBudgetType(BudgetLimitType.MONTHLY_BUDGET_SPEND_UNTIL_DEPLETED); campaign.setMonthlyBudget(1000.00); campaign.setTimeZone("PacificTimeUSCanadaTijuana"); ArrayList<CampaignType> campaignTypes = new ArrayList<CampaignType>(); campaignTypes.add(CampaignType.SHOPPING); ArrayOfSetting settings = new ArrayOfSetting(); ShoppingSetting shoppingSetting = new ShoppingSetting(); shoppingSetting.setPriority(0); shoppingSetting.setSalesCountryCode("US"); shoppingSetting.setStoreId(stores.getBMCStores().get(0).getId()); settings.getSettings().add(shoppingSetting); campaign.setSettings(settings); campaign.setCampaignType(campaignTypes); campaign.setDaylightSaving(true); ArrayOfCampaign campaigns = new ArrayOfCampaign(); campaigns.getCampaigns().add(campaign); AddCampaignsResponse addCampaignsResponse = addCampaigns(AccountId, campaigns); ArrayOfNullableOflong campaignIds = addCampaignsResponse.getCampaignIds(); ArrayOfBatchError campaignErrors = addCampaignsResponse.getPartialErrors(); outputCampaignsWithPartialErrors(campaigns, campaignIds, campaignErrors); ArrayOfAdGroup adGroups = new ArrayOfAdGroup(); AdGroup adGroup = new AdGroup(); adGroup.setName("Product Categories"); ArrayList<AdDistribution> adDistribution = new ArrayList<AdDistribution>(); adDistribution.add(AdDistribution.SEARCH); adGroup.setAdDistribution(adDistribution); adGroup.setBiddingModel(BiddingModel.KEYWORD); adGroup.setPricingModel(PricingModel.CPC); adGroup.setStartDate(null); adGroup.setEndDate(new com.microsoft.bingads.v10.campaignmanagement.Date()); adGroup.getEndDate().setDay(31); adGroup.getEndDate().setMonth(12); adGroup.getEndDate().setYear(2016); Bid searchBid = new Bid(); searchBid.setAmount(0.09); adGroup.setSearchBid(searchBid); adGroup.setLanguage("English"); adGroups.getAdGroups().add(adGroup); AddAdGroupsResponse addAdGroupsResponse = addAdGroups(campaignIds.getLongs().get(0), adGroups); ArrayOfNullableOflong adGroupIds = addAdGroupsResponse.getAdGroupIds(); ArrayOfBatchError adGroupErrors = addAdGroupsResponse.getPartialErrors(); outputAdGroupsWithPartialErrors(adGroups, adGroupIds, adGroupErrors); ArrayOfAd ads = new ArrayOfAd(); ProductAd productAd = new ProductAd() { { promotionalText = "Free shipping on $99 purchases."; } }; ads.getAds().add(productAd); AddAdsResponse addAdsResponse = addAds(adGroupIds.getLongs().get(0), ads); ArrayOfNullableOflong adIds = addAdsResponse.getAdIds(); ArrayOfBatchError adErrors = addAdsResponse.getPartialErrors(); outputAdsWithPartialErrors(ads, adIds, adErrors); // Add criterion to the campaign. The criterion is used to limit the campaign to a subset of // your product catalog. AddCampaignCriterionsResponse addCriterionResponse = addCampaignCriterion(campaignIds.getLongs().get(0)); printCampaignCriterionIdentifiers( addCriterionResponse.getCampaignCriterionIds(), addCriterionResponse.getNestedPartialErrors()); addAndUpdateAdGroupCriterion(adGroupIds.getLongs().get(0)); ApplyProductPartitionActionsResponse applyPartitionActionsResponse = addBranchAndLeafCriterion(adGroupIds.getLongs().get(0)); long rootId = applyPartitionActionsResponse.getAdGroupCriterionIds().getLongs().get(1); long electronicsCriterionId = applyPartitionActionsResponse.getAdGroupCriterionIds().getLongs().get(8); updateBranchAndLeafCriterion(adGroupIds.getLongs().get(0), rootId, electronicsCriterionId); // Delete the campaign from the account. ArrayOflong deleteCampaignIds = new ArrayOflong(); deleteCampaignIds.getLongs().add(campaignIds.getLongs().get(0)); deleteCampaigns(AccountId, deleteCampaignIds); outputStatusMessage(String.format("Deleted CampaignId %d\n", campaignIds.getLongs().get(0))); // Campaign Management service operations can throw AdApiFaultDetail. } catch (AdApiFaultDetail_Exception ex) { outputStatusMessage("The operation failed with the following faults:\n"); for (AdApiError error : ex.getFaultInfo().getErrors().getAdApiErrors()) { outputStatusMessage("AdApiError\n"); outputStatusMessage( String.format( "Code: %d\nError Code: %s\nMessage: %s\n\n", error.getCode(), error.getErrorCode(), error.getMessage())); } // Campaign Management service operations can throw ApiFaultDetail. } catch (ApiFaultDetail_Exception ex) { outputStatusMessage("The operation failed with the following faults:\n"); for (BatchError error : ex.getFaultInfo().getBatchErrors().getBatchErrors()) { outputStatusMessage(String.format("BatchError at Index: %d\n", error.getIndex())); outputStatusMessage( String.format("Code: %d\nMessage: %s\n\n", error.getCode(), error.getMessage())); } for (OperationError error : ex.getFaultInfo().getOperationErrors().getOperationErrors()) { outputStatusMessage("OperationError\n"); outputStatusMessage( String.format("Code: %d\nMessage: %s\n\n", error.getCode(), error.getMessage())); } // Some Campaign Management service operations such as SetAdExtensionsAssociations can throw // EditorialApiFaultDetail. } catch (EditorialApiFaultDetail_Exception ex) { outputStatusMessage("The operation failed with the following faults:\n"); for (BatchError error : ex.getFaultInfo().getBatchErrors().getBatchErrors()) { outputStatusMessage(String.format("BatchError at Index: %d\n", error.getIndex())); outputStatusMessage( String.format("Code: %d\nMessage: %s\n\n", error.getCode(), error.getMessage())); } for (EditorialError error : ex.getFaultInfo().getEditorialErrors().getEditorialErrors()) { outputStatusMessage(String.format("EditorialError at Index: %d\n\n", error.getIndex())); outputStatusMessage( String.format("Code: %d\nMessage: %s\n\n", error.getCode(), error.getMessage())); outputStatusMessage( String.format( "Appealable: %s\nDisapproved Text: %s\nCountry: %s\n\n", error.getAppealable(), error.getDisapprovedText(), error.getPublisherCountry())); } for (OperationError error : ex.getFaultInfo().getOperationErrors().getOperationErrors()) { outputStatusMessage("OperationError\n"); outputStatusMessage( String.format("Code: %d\nMessage: %s\n\n", error.getCode(), error.getMessage())); } } catch (RemoteException ex) { outputStatusMessage("Service communication error encountered: "); outputStatusMessage(ex.getMessage()); ex.printStackTrace(); } catch (Exception ex) { outputStatusMessage("Error encountered: "); outputStatusMessage(ex.getMessage()); ex.printStackTrace(); } }