0

Azure portal にクラウド サービスをデプロイしました。デプロイが成功しました。そして、以下のようないくつかの azure Java SDK コードを作成しました。

ComputeManagementClient cmclient = ComputeManagementService.create(config); 

 VirtualMachineOperations vmoperat = cmclient.getVirtualMachinesOperations(); 
 VirtualMachineGetResponse vmresp = vmoperat.get("AzurecloudDNS", AzurecloudDNSStaging20160613193121","WorkerRole1_IN_0");

ただし、次の例外がスローされます。

Exception in thread "main" com.microsoft.windowsazure.exception.ServiceException: ResourceNotFound: Role WorkerRole1_IN_0 was not found in the currently deployed service.
 at com.microsoft.windowsazure.exception.ServiceException.createFromXml(ServiceException.java:206)
 at com.microsoft.windowsazure.management.compute.VirtualMachineOperationsImpl.get(VirtualMachineOperationsImpl.java:6517)
 at com.aaa.azure.JavaClient.main(JavaClient.java:81)

Azure ポータルでは、WorkerRole1_IN_0 がこのクラウド サービスで動作していることがわかります。しかし、それは例外をスローします。

何か案が?よろしくお願いします。

4

1 に答える 1