Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How to add Java Cloud Service Weblogic server instance inside Application Server Navigator in JDevel

N VishnukumarNov 24 2016 — edited Dec 12 2016

Dear All,

I am trying to include Oracle Weblogic Server from Java Cloud Service Trial pack inside Application Server Navigator in JDeveloper so that I could do some deployments.

However attempts that I have tried so far,

1. Oracle Java Cloud Service Weblogic Server instance as Standalone Server with Weblogic 10.3 Connection Type and have filled other appropriates like Admin Server Host name, Port and Weblogic Domain name. Test connection failed with the below error,

Testing JSR-160 Runtime                ... failed.

Cannot establish connection.

Testing JSR-160 DomainRuntime          ... skipped.

Testing JSR-88                         ... skipped.

Testing JSR-88-LOCAL                   ... skipped.

Testing JNDI                           ... skipped.

Testing JSR-160 Edit                   ... skipped.

Testing HTTP                           ... success.

Testing Server MBeans Model            ... skipped.

Testing HTTP Authentication            ... success.

2 of 9 tests successful.

2. Next I tried to create the same instance with Standalone and Oracle Cloud Configuration type. Filled other appropriates like Username, Password, Data Center, Identity Domain and Service Name. Again Test connection failed with the below error,

<<I filled my Oracle account email id and its appropriate pass for the Username and Password fields instead of Weblogic Server credentials. Correct me if I am wrong?>>

Testing Cloud-Admin                    ... failed.

listApplications failed.

Check username, password, domain, instance.

Check cloud sdk location & version: Tools->Preferences->Oracle Cloud

0 of 1 tests successful.

3. Regarding deploying SOA appropriates to Cloud Weblogic server, Is choosing 'upload file' in Weblogic console is the only option or is it also possible with approach 1 and 2 from JDeveloper?

4. Could I use Java Cloud Service Weblogic Server Instance instead of SOA Cloud Service Weblogic Server Instance to deploy SOA applications? What is the difference between these two?

Answers to get better insight are much appreciated. Thank you very much.

Kind Regards,

Vishnukumar N

Comments

L. Fernigrini

Consider using PL/Scope

PL/Scope Enhancements in Oracle Database 12c Release 2 (12.2) (0 Bytes)It is simpler than parsing code.

User_RI4C6

How its work I admit that I am a beginner in the world of plsql and I told myself that it is possible to do it with regexp

User_H3J7U

it can be for example standard package, ULT_HTTP
UTL_HTTP Constants

L. Fernigrini

undefined (0 Bytes)You need to set some session settings like this:

ALTER SESSION SET PLSCOPE_SETTINGS='IDENTIFIERS:ALL, STATEMENTS:ALL';

Then compile the package, and then query the dictionary tables being populated when you compile PL/SQL and have set PLSCOPE settings.
In the article I mentioned there is an example :
image.pnghere you would see that variable L_NUM and L_STR are declared on lunes 6 and 7, and that they reference the NUMBER and CHARACTER datatypes. You can modify the query in the example to filter only "VARIABLE" as TYPE; "DECLARATION" as USAGE and then get the associated REFERENCE row to get the datatype.

L. Fernigrini

Poster mentioned ANY package, documentation exists only for Oracle provided packages.

User_RI4C6

Wow very cool, Thank you very much for the help.!

1 - 6
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jan 9 2017
Added on Nov 24 2016
2 comments
580 views