I need to deploy my app in azure platform with eclipse; When I sign in, this error occurs:

Does anyone know how to solve this? Thank you.
I think this is related to your certificate issue. Whenever Java attempts to connect to another application over SSL (e.g.: HTTPS, IMAPS, LDAPS), it will only be able to connect to that application if it can trust it. The way trust is handled in the Java world is that you have a keystore (typically $JAVA_HOME/lib/security/cacerts), also known as the truststore. This contains a list of all known Certificate Authority (CA) certificates, and Java will only trust certificates that are signed by one of those CAs or public certificates that exist within that keystore.
You could try below solutions:
1.Make sure you have imported the public certificate of the target instance into the truststore according to the Connecting to SSL Services instructions.
2.Make sure any certificates have been imported into the correct truststore.
3.Check to see that the correct truststore is in use. If -Djavax.net.ssl.trustStore has been configured, it will override the location of the default truststore, which will need to be checked.
In addition, you could refer to the related threads:
1.PKIX path building failed in Eclipse
2."PKIX path building failed" and "unable to find valid certification path to requested target"
Hope it helps you.
Just for summary, it's related to the build path in the eclipse. Please make sure it's JDK/JRE path, not JRE path.
when my app is published, it's a RESTful web service called "RESTfulExample2" when I access the default url I get this: error http 404
I don't know what's wrong here are the screenshots of the variables: environment variables