Hi Everyone,
I would like to ask if anyone have encountered this before:
I provisioned a VM using Azure Rest API, I have checked in manage.azure to verify if it is successfully created (cloud service name running, vm running). However when I tried remoting it via RDP it always prompts that the credential does not works. I'm 100%
sure of my credential because it is written in the xml file which is needed to create a VM.
Is there anything I'm missing here?
Sample XML
<Deployment xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Name>SomeName</Name><DeploymentSlot>Production</DeploymentSlot><Label></Label><RoleList><Role><RoleName>SomeName</RoleName><RoleType>PersistentVMRole</RoleType><ConfigurationSets><ConfigurationSet i:type="WindowsProvisioningConfigurationSet"><ConfigurationSetType>WindowsProvisioningConfiguration</ConfigurationSetType><ComputerName>SomeName</ComputerName><AdminPassword>SomePassword</AdminPassword><EnableAutomaticUpdates>true</EnableAutomaticUpdates><ResetPasswordOnFirstLogon>false</ResetPasswordOnFirstLogon></ConfigurationSet><ConfigurationSet i:type="NetworkConfigurationSet"><ConfigurationSetType>NetworkConfiguration</ConfigurationSetType><InputEndpoints><InputEndpoint><LocalPort>3389</LocalPort><Name>RemoteDesktop</Name><Protocol>tcp</Protocol></InputEndpoint></InputEndpoints></ConfigurationSet></ConfigurationSets><OSVirtualHardDisk><DiskName>{4}</DiskName><MediaLink>https://portalvhdsvqsw04pb0pqnb.blob.core.windows.net/vhds/SomeName.vhd</MediaLink><SourceImageName>SomeValidImageSource</SourceImageName></OSVirtualHardDisk><RoleSize>Small</RoleSize></Role></RoleList></Deployment>
Thanks
Juan