1/23/2013

When we change the IP of the Weblogic server affect the ADF applications deployment


After we change the IP of the local Weblogic server, from default (127.0.0.1) to another IP (ex:180.11.12.13) we get an error at the deployment of the ADF applications.

How to resolve this impediment:
 go to to JDeveloper -> View -> Aplication Server Navigator -> ->right click on the server->Properties->Configuration tab-> Enter your IP in Weblogic Hostname field (ex:180.11.12.13).


Re-start your server and deploy your ADF applications.
Now you can share your app running at your machine with anyone with the app-url http://180.11.12.13:7101/AppDemo...






Efficient JSON serialization with Jackson and Java

  📌 Introduction JSON serialization is a fundamental part of modern Java applications — converting Java objects into JSON and back. Jackson...