Missing "Publish as Azure Cloud Service" - eclipse

I want to make a simple dynamic web project with Eclipse and to publish it as an Azure Cloud Service.
I follow this tutorial: https://learn.microsoft.com/en-us/azure/azure-toolkit-for-eclipse-creating-a-hello-world-application.
I have downloaded the trial version of Microsoft Azure.
I have installed Azure Toolkit for Eclipse in Help->Install New Software, but when I right click on my project and then I select the Azure menu, it contains only two options:
Publish as Azure Web App
Publish as Docker Container
So, why there's not the option "Publish as Azure Cloud Service" ? Can someone help me please ?

Sorry for a late post
Open the eclipse
Click on Help and then select 'Eclipse marketplace'
Search for Azure keyword and click on lens icon.
You will find an option "Azure toolkit for eclipse". Install it.
Eclispe will restart, if it doesn't do it manually.
You can now find the Publish as Azure Cloud service by right clicking the project.

Related

How to use Cloud Tools for Eclipse plugin to create microservices in Google App Engine?

As I upgraded my Eclipse to Neon 2 (Eclipse 4.6.2), as "Google Plugin for Eclipse" no longer support, so I switch to Google's "Cloud Tools for Eclipse plugin" (https://cloud.google.com/eclipse/docs/quickstart)
Last time that is easy to use "Google Plugin for Eclipse" to create multiple modules (known as microservices). I just need create an "Enterprise Application Project" using GAE as runtime and then create "Dynamic Web Project" and tie to that Enterprise App.
However in this "Cloud Tools for Eclipse", when I choose new Enterprise App, Google App Engine is not an option in runtime selection.
Any help on how to use "Cloud Tools for Eclipse" to create microservices for GAE?
Thanks
The Google Cloud SDK on which the new Cloud Tools for Eclipse depends does not support the EAR format. For the moment, you'll need to create individual Eclipse projects for each separate service, and deploy them individually.
We do need to beef up our multi-module support. Though that's not going to happen tomorrow, let me see what I can do about moving it up the stack.

Packaged Server option not available in Eclipse with Bluemix and Liberty plugin

I'm trying to customize the Liberty setup, following the instructions from this post:
"Custom Liberty server.xml configurations in IBM Bluemix", see:
https://www.ibm.com/blogs/bluemix/2015/01/modify-liberty-server-xml-configurations-ibm-bluemix/
In order to modify the Liberty server features, I'd like to replace the automatic generation of the configuration file by a customized server configuration, which according to the instructions is called "Liberty packaging server".
In the Eclipse Neon IDE, I've already installed two plugin's, the Bluemix Tool as well as the Liberty Development Plugin. At the server tab, I'm right clicking the active Blumix server, but no option for "packaging server" is displayed at the menu. The default "push" option is working fine.
At the Eclipse IDE, is there a software component missing to create and publish a customized server package (beta + features) for Liberty? How can I run a customized packing without command line tools, using Eclipse?
There are two main ways to publish a packaged server in Bluemix:
You have (or create) a Liberty server instance that represents the server. For details on how to create a Liberty server, see http://www.ibm.com/support/knowledgecenter/SSEQTP_8.5.5/com.ibm.websphere.wlp.doc/ae/t_creating_server.html. Once you have the Liberty server created in Eclipse, you can just add the Liberty server to the Bluemix server on the Servers view and it will package the server for you during the publish operation.
You already have an existing packaged server zip file in the workspace that you want to publish. Then, you can just right click on the zip file and do a Run As > Run on Server.
For details, you can refer to https://console.ng.bluemix.net/docs/manageapps/eclipsetools/eclipsetools.html#packagedserversupport
The first method is usually preferred since you can continue to update the applications and also the server configuration file and do incremental update on the application by the publish operation.
In Eclipse, if you want to publish whole server to the Bluemix follow these steps:
stop your local Liberty server
in Eclipse in Servers view, grab the local Liberty server and drag it to the Bluemix one. It will publish whole server with its config.
Check this page for more details - Deploying apps with IBM Eclipse Tools for Bluemix
Instead of right clicking on the Bluemix server, you need to right click on your Liberty server definition.

Project sharing error in SAP?

Today i installed SAP HANA development plugins which are available at Repo for Eclipse LUNA .
I followed SAP HANA Cloud Platform to create a project and to install tool i followed SAP Development Tools for Eclipse
When i tried to share a project to SAP HANA Repository then it gives error as
Authorization 'REPO.MAINTAIN_NATIVE_PACKAGES' missing for package 'hello' or
one of its parent packages.
How to solve this problem ?
Your admin has to give your SAP Cloud Platform user the proper permissions to do it. In this case the "REPO.MAINTAIN_NATIVE_PACKAGES" permission

Deployment of java application to bluemix

I have created an java Application in Eclipse IDE.
Can anyone help out how to edit a Java application in Eclipse & trigger a deploy to Bluemix.
The official IBM Bluemix plugin for Eclipse can do this for you.
Grab it from the Eclipse Marketplace here: http://marketplace.eclipse.org/content/ibm-eclipse-tools-bluemix#.VHAf-1Xd9E4
Here is some documentation about the plugin: https://developer.ibm.com/wasdev/downloads/#asset/tools-IBM_Eclipse_Tools_for_Bluemix
Once you install this, you should be able to connect your Bluemix account and package / deploy apps with the push of a button.
You will find the steps by steps to see how you can deploy you app in bluemix. You can use CF API, or download the eclipse plugin. Here you can see how to use the CF API for Bluemix.
Basically you need three commands:
cf api bluemix_domain
cf login -u username
cf push appname -p appname.war
you can get official eclipse plugin from IBM and deploy it to Bluemix.
Below is the link to download and get started on this:
https://developer.ibm.com/wasdev/downloads/#asset/tools-IBM_Eclipse_Tools_for_Bluemix

how to Deploy salesforce app from eclipse

Ok so i'm new to salesforce.I started by installing the force IDE from http://wiki.developerforce.com/page/Force.com_IDE_Installation
I have a salesforce application code that i want to deploy in my salesforce org.
I have imported the app into eclipse but don't know what to do next.
Can any one guide me or provide any useful links to achieve what i'm trying to do.
Right click on the resources you want to deploy and select Force.com/Deploy to server... in the context menu.
More flexible way to deploy is described here.
More links could be found in this answer.