Can I develop Windows Azure from another OS?

Is it possible to develop Java for Windows Azure from OS X (Eclipse)?

I installed the Windows Azure plugin for Eclipse, but it seems the plugin relies on batch files to deploy the application to Azure.

If possible, are there any guidelines?

+4
source share
2 answers

Development tools, including Compute and Storage emulators and a packer, require Windows.

For the applications themselves, this requirement is compatible with Windows Server 2008 R2. Thus, for example, you can develop an application on Linux or OS X without using the Azure SDK or tools and prepare a virtual Windows Server image with a Java application server and a pre-deployed and pre-configured application, and deploy this image as a virtual machine role . An application can access Windows Azure services through HTTP or using the Java libraries included as source code in the SDK .

This approach is better for migrating existing applications. To develop new tools, the tools available on Windows will improve performance.

+2
source

The tools required to create the Windows Azure Service Pack run only on Windows. Thus, although you can easily create Java applications in Eclipse on Windows, you cannot do the same with OSX.

If you are developing using node.js, you can develop using the Cloud9 IDE, which is browser-based and cross-platform. See this MSDN article for more details on this, as Scott Guthrie demonstrated it at the Node Summit in San Francisco in January, doing all the coding and deployment through the Mac.

+2
source

Source: https://habr.com/ru/post/1400500/


All Articles