Network security with Oracle Database Cloud Service

Does the Oracle Database Cloud service support SSL? Or, any form of network encryption/authentication between a client and the service across the Internet?

Thank you Rick. I'm intending to use Oracle Database Cloud Service as a "Database-as-a-Service", however I have read that it is actually more of a "Platform-as-a-Service" offering.
What I would like to do is to interact with the Oracle Database Cloud Service via a local JDBC client. However, from further reading, it looks like the only way to interact with the Oracle Database Cloud Service from a non-Oracle-cloud-based client is via its RESTful web services (which, as you said, support SSL).
That is to say, I cannot simply connect to the Oracle Database Cloud Service from a local client just through JDBC alone. It looks like I would have to configure my client to make the relevant RESTful web service calls instead, and likewise configure my settings on the Oracle Database Cloud Service to make the necessary translations (from REST to SQL).
Just to finally clarify, is my above understanding correct?

Similar Messages

  • I want to resell Oracle Database Cloud Service. What are the criteria to do so?

    In order to resell Oracle Database Cloud Service, partners need to meet the following criteria:
    Be a Gold, Platinum, or Diamond member of the Oracle PartnerNetwork in good standing with a valid OPN Agreement.
    Have a valid Full Use Program Distribution Agreement (FUDA) with Oracle, or be in the process of applying for one.
    Have a valid Cloud Services Distribution Addendum (CSDA) or be in the process of applying for one.
    For questions about the criteria, how to apply for OPN, FUDA and CSDA please contact the Oracle Partner Business Center via phone, email or chat. The social media service also is available on Twitter at @OrclPartnerBiz
    Thank you.
    Emilia

    Hi Srini,
    In order to resell our Cloud Services, please see below the current requirements:
    Be an Oracle PartnerNetwork member in good standing (Gold or higher) with a valid OPN Agreement
    Meet the resale competency criteria set forth within each of the Knowledge Zones (listed here)
    Execute a Full Use Program Distribution Agreement (FUDA) and Cloud Services Distribution Addendum (CSDA)
    You can also find more information here.
    Thanks

  • GetConnection from Oracle Database Cloud Service

    I created a table at the internal JCS instance, and tried to create a web service to insert the data into the table. It's a simple insert operation, so I prefer to coding it without JPA or ADF business component.
    So far, the web service works, but it can't connect to database service.
    Here is my code snippet of the web service method which deployed on JCS, and the jndi name is database,
            try {
                Context ctx = new InitialContext();
                DataSource ds = (DataSource)ctx.lookup("database");
                conn = ds.getConnection();
                String sql = "insert into bvrequest(user_id,activity) values(?,?)";
                pstmt = conn.prepareStatement(sql);
                pstmt.setString(1, userid);
                pstmt.setString(2, activity);
                pstmt.executeUpdate();
                return "OK";
    The thrown exception is,
    weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool database to allocate to applications, please increase the size of the pool and retry..
    Is it a correct way to use Database Cloud Service? Any suggestion/comment is welcome.
    -Paula

    Hi Paula -
    I think you need to ask this question in the Java Cloud Service forum.  If you are trying to make a connection to a Database Cloud Service from Java outside the Oracle Public Cloud, you cannot do it with JDBC.  You can only use RESTful Web Services from outside the Oracle Public Cloud to access the Oracle Database Cloud.
    Hope this helps.
    - Rick Greenwald

  • Is there a way to terminate Oracle Database Cloud Service - S5 service?

    Hi All,
    I'm having a very terrible situation here. I have been trying to terminate my database cloud service but nobody in Oracle sale team or support team are able to do it. I spoke to a guy from sales team and he forwarded my call to a guy in support team which he said he'll do it and gave me a reference number. A few weeks later I got an email from a billing department asking me to pay the amount that was due. I explained to him the situation and got no words back from him. Guess what! today I checked my bank account and found that Oracle has taken the payment from me!
    I'm furiously angry with Oracle! It seems that there is no escape from the cloud service!  the customer service is terrible and there seems no co-ordinations between different departments.
    I really appreciate for your help as I dont who I should and can speak to.
    Cheers,
    Syaifuddin

    Not good to hear.... I hope it has been resolved by now.
    However, in case of such an event, which will not happen to often, you can always request your bank to block this until the situation has been resolved. In esscece this should not happen however I can imagine that in a very unlikely scenario this could happen.
    Hope Iloon Wolff-Oracle has been able to resolve this for you.
    Regards,
    Johan Louwers.

  • Application deployed on Oracle Java Cloud Service - SaaS Extension is not connecting with cloud database.

    Hello Experts,
    I have deployed an ADF application on Oracle Java Cloud Service - SaaS Extension and also deployed database objects from local environment to cloud using JDeveloper. I can see the cloud database has tables and data which I have deployed but when I access the application it seems it is not able to connect with cloud database.
    I have followed below document and same sample application (HRSystem). 
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/java/JDeveloperPart1/jdeveloperPart1.html
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/java/JDeveloperPart2/jdeveloperPart2.html
    Please guide me what can be the issue.
    Regards
    Gulam Dyer

    Hi,
    Can you give us more details about your issue? Any error messages?
    Thanks,
    Bogdan

  • Database access from Oracle Java Cloud Service application

    I have registered for Oracle Java Cloud Service for trial period. I want to deploy a Spring MVC 3.2 and Hibernate 4.0 web application.
    I created a table in the Database Cloud. I am not sure how do I access the Database Cloud Service from my application.
    Need your guidance/pointers/references that can help me establish connection from my application to the database.
    Thanks,
    Ujjwal

    Hi,
    Use JPA - see the visitors example, it uses @PersistenceUnit injection with previously weaved .class entity files.
    You can use application managed EMF's and EntityManagers with code like the following - which is not preferable to using @PersistenceContext injection on an @Stateless session EJB but...
              EntityManagerFactory emf = Persistence.createEntityManagerFactory("JPAServletPU");
              EntityManager em = emf.createEntityManager();
              EntityTransaction transaction = null;
              try {
                   transaction = em.getTransaction();
                   transaction.begin();
                   Visitor entity = new Visitor();
                   entity.setName(name);
                   entity.setNum(num);
                   em.persist(entity);
                   transaction.commit();
                   System.out.println("Committing: " + entity);
              } catch (Exception e) {
                   e.printStackTrace();
              } finally {
                   em.close();
                   emf.close();
    Use a persistence.xml like the following
    <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
    <persistence-unit name="JPAServletPU" transaction-type="JTA">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
         <!--https://cloud.oracle.com/mycloud/f?p=5300:1000:259334829915901-->
    <jta-data-source>database</jta-data-source>
    <class>com.vision.cloud.jpa.Visitor</class>
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <properties>
         <property name="eclipselink.target-database" value="Oracle10g" />
    <property name="eclipselink.ddl-generation" value="create-tables"/>
    <!-- property name="eclipselink.ddl-generation" value="drop-and-create-tables"/-->
    </properties>
    </persistence-unit>
    </persistence>
    Check out a tutorial on WebLogic JPA ORM usage here to get started as well.
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/WebLogic_Web_Tutorial

  • Facing Problem  In Using Oracle Database Cloud Backup Service

    Hi Everyone,
    I m trying to use Oracle Database Backup Service, for this i have done the following as mentioned in the documentation.
    http://www.oracle.com/technetwork/database/features/availability/twp-oracledatabasebackupservice-2183633.pdf
    1.Downloaded the opc_installer from otn and unzipped.
    2. Executed the following statement from command prompt
    java -jar opc_install.jar -serviceName myService -identityDomain myDomain
    -opcId [email protected] -opcPass myPassword -configFile "C:\Oracle\OPC\conf"
    -walletDir  "C:\Oracle\OPC\wallet"  -libDir "C:\Oracle\OPC\lib"
    Using my credentials, servicename , identitydomain in the above statement.
    Download Complete message appears.
    3. Connects to RMAN and configure channel for sbt by passing this.
    configure channel device type sbt parms
    'SBT_LIBRARY=C:\Oracle\OPC\lib\oraopc12.dll
    ENV=(OPC_PFILE=C:\Oracle\OPC\conf\conf.txt)';
    4.To test the installation i executed the given statement "backup device type sbt current controlfile;"
    Starting backup at 31-MAY-14
    RMAN-00571:
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS
    RMAN-00571:
    RMAN-03002: failure of backup command at 05/31/2014 04:41:44
    ORA-19554: error allocating device, device type: SBT_TAPE, device name:
    ORA-27000: skgfqsbi: failed to initialize storage subsystem (SBT) layer
    OSD-01400: Message 1400 not found;  product=RDBMS; facility=SOSD
    (OS 7110)
    ORA-19511: Error received from media manager layer, error text:
       SBT error = 7110, errno = 1400, sbtinit: internal error - invalid argument(s)
    Getting the following error.
    My database version is 11g 11.2.0.3 and is installed in windows server 2008.
    Please help to resolve the error.
    Looking for your help.
    Regards

    Hi,
    Could you try the following command ? Seems like some dependent Windows DLL is not being loaded..
    sbttest foo -libname <abs-path-of-directory>\oraopc12.dll
    This will output the reason why oraopc12.dll can't be loaded.
    Thanks

  • Configuring EMail in Database Cloud Service(Schema)

    Hi
    I am trying to use APEX_MAIL for emailing. Before using this, Where do I configure SMTP host , port ...etc in my Database Cloud Service.??
    I tried log in to APEX console of my Database, Administration tab but I didn't find any place to setup this information.
    I am using DB cloud Service associated with JCS-SAAS Extension (Trial version)
    Thanks
    Samrajyam

    I don't think you need or even can change the configuration. You should be able to send and email with:
    BEGIN
        l_id := APEX_MAIL.SEND(
            p_to        => '[email protected]',
            p_from      => '[email protected]',
            p_subj      => 'APEX_MAIL',
            p_body      => 'Some content',
            p_body_html => '<b>Some content</b>');
    END;
    For details of APEX_MAIL refer to the documentation.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Problem with Oracle database Express Edition (Linux)

    I installed oracle-xe on my machine (ArchLinux x64), and all worked fine before a  reboot. After it, I still can connnect to the db with sqlplus, but can't connect to apex (http://localhost:8080/apex/f?p=4950) and can't get a connection using ojdbc:
    Exception in thread "main" java.sql.SQLRecoverableException: IO Error: The Network Adapter could not establish the connection.
    I tried to reinstall the db several times, but the result was always the same: all is ok only before rebooting. I'm a newer with Oracle database and can't find a solution. Could you give me some tip about it?

    The problem was solved by changing permissions for log directory :
    sudo chmod -R 777 /usr/lib/oracle/product/11.2.0/xe/log

  • FS[3988]: Possible network disconnect with primary database

    Hi All,
    In the standby database alert log I'm getting the below error:
    Thu Feb 10 11:09:10 2011
    RFS[3971]: Possible network disconnect with primary database
    Thu Feb 10 11:10:11 2011
    RFS[3976]: Possible network disconnect with primary database
    Thu Feb 10 11:11:12 2011
    RFS[3979]: Possible network disconnect with primary database
    Thu Feb 10 11:12:13 2011
    RFS[3982]: Possible network disconnect with primary database
    Thu Feb 10 11:13:15 2011
    RFS[3985]: Possible network disconnect with primary database
    There is no error in the primary database regarding this.
    And after this no archive logs are being pushed to the standby database.
    In V$ARCHIVE_DEST_STATUS view the column synchronizaion_status says CHECK NETWORK for dest_name LOG_ARCHIVE_DEST_2
    Please advice.
    Thanks.
    Regards,
    Ashwani N.

    Both messages look crystal clear to me.
    Did you check the network?
    If not, why not?
    Your posting history here is a bit appalling
    823436      
         Newbie
    Handle:      823436
    Status Level:      Newbie
    Registered:      Dec 24, 2010
    Total Posts:      28
    Total Questions:      9 (7 unresolved)
    Sybrand Bakker
    Senior Oracle DBA

  • How to distribute Oracle Argus Cloud Service?

    Hi,
    In order to apply to distribute Oracle Argus Cloud Service Knowledge Zone products, you must meet the following criteria:
    Be a Gold, Platinum, or Diamond member of the Oracle PartnerNetwork in good standing with a valid OPN Agreement.
    Have a valid Full Use Program Distribution Agreement (FUDA) with Oracle, or be in the process of applying for one.
    Have a valid Cloud Services Distribution Addendum (CSDA) to the FUDA Agreement, or be in the process of applying for one.
    Have met the resale competency criteria set forth below.
    Job Role
    Assessment
    Staff Criteria
    Sales
    Oracle Health Sciences Cloud Service Solutions Sales Specialist 
    Guided Learning Path
    Assessment
    2
    Sales
    Oracle Argus Standard Edition 7 Sales Specialist 
    Guided Learning Path
    Assessment
    1
    Sales
    Oracle Argus Enterprise Edition 7 Sales Specialist 
    Guided Learning Path
    Assessment
    1
    PreSales
    Oracle Argus Standard Edition 7 PreSales Specialist 
    Guided Learning Path
    Assessment
    1
    PreSales
    Oracle Argus Enterprise Edition 7 PreSales Specialist 
    Guided Learning Path
    Assessment
    1
    Support
    General Product Support Specialist v4.0 
    Guided Learning Path
    Assessment
    1
    For more detailed information for Oracle Argus Cloud Service product, please refer to OPN site.
    Thanks.
    Yu Cui

    Hi Tarek Fathy,
    Oracle Documents Cloud Service has the capability to integrate with on premise or cloud applications via a published REST API. A new version of this API has recently been released. You can find deals on the API at:
    http://docs.oracle.com/cloud/latest/documentcs_welcome/WCCCD/odcs-getstarted.htm#WCCCD3106
    If you require assistance with integration, please don't hesitate to contact me.
    Regards
    Craig
    Oracle Documents Cloud Service

  • Trial subscription for Oracle BI Cloud Services (BICS)

    I need help from anyone to get a trial subscription for Oracle Business Intelligence Cloud Services.
    Thanks in Advance
    Stanley T

    Hi Emilia,
    There in the link I see provisions to buy a paid subscriptions and couldn't get an trial subscription. Please can you help on the same, as I would like to have an experience of the BICS before purchasing a paid subscription. Whereas I am seeing a provision "Try it" for Database cloud services like the below
    Regards
    Stanley T

  • Can we install BPC 5.1 with Oracle database ?

    Dear Experts,
    I need to install SAP BPC 5.1 with Oracle Database.
    Is it possible ?
    And please tell me what are the systems requirements to install SAP BPC.
    Thanks & Regards,
    Satish

    All these questions are answered in the InstallGuide.
    Have a look at service.sap.com/swdc
    --> Downloads -> Installation & Guides -> search Application by Index...then you are on the right track...
    Cherrio,
    Christian

  • How to Connect Forms or any version with Oracle Databases 8/6i/9i/10i/11i

    I want to know that how can i cannect Developer Forms / Reports with Oracle Databases with various versions and say developer 2000 to Oracel 6i/9i/10i/11i etc

    Using the appropriate setting in tnsnames.ora file located in your [Forms_Home]\network\admin directory.
    Sim

  • EJB on Oracle Java Cloud Service

    Hi, I am new to the world of Java, EJB, Weblogic Server.
    Steps that I have carried out -
    1. I have implemented a HelloBean, HelloHome, HelloObject - objective is just to print "Hello" through one of the bean's biz method.
    2. I created class files for the above 3 java programs.
    3. I have created a JAR file of 3 javas programs, its' class, along with the required META-INF/ejb-jar.xml.
    4. Now, when I tried to deploy this JAR file in Oracle Java Cloud service, I got errors stating that RemoteException is not allowed, EJBObject is not allowed. So, I changed everything to local removing RemoteException reference, changing EJBObject to EJBLocalObject.
    Now, the questions -
    a] Reference to point (4), why should I have it as LOCAL? Is it because the client is excepted to be in the same heap of the Cloud?
    b] I deployed the JAR file in cloud, but when I checked the logs, it was looking for WAR file. I understand that WAR will have access points that will inturn use the JAR that I created.
    c] Reference to point (5), how do I invoke the biz method now?
    Thanks,
    J

    I get this below message when I try to follow the Application URL when I opt for "Test Application" of the above in Oracle Java Cloud Service.
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.4 403 Forbidden
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    This is in reference to the last question raised above.

Maybe you are looking for

  • K7N2 Delta-ILSR - USB to Serial Adapter Doesn't Work!

    Is anyone aware of an error such as the follows with the K7N2 Delta-ILSR? I am trying the use a USB to Serial Adapter, namely the a Prolific PL-2303. However, my PC does not seem to like it, nor does it what to cooperate with it at all. On one occasi

  • Parent-Child querying in Web Service 2.0

    Hello, Our team has just started to work on the integration from ws 1.0 to ws 2.0. One tuff issue that we meet and we are searching for help is: Since from ws 2.0 all objects are exposed at the same level and the attachements child objects are not ex

  • Missed command field on easy access screen

    hai guys, i am just the starter of SAP. while browsing the screen , i dont know what i did and finally i lost my command field in easy access screen. please let me know how to 2 get it back.i think u understood what i mean.the field where we give com

  • Hi, anyone given associate level BI certification Recently?

    Dear Experts, Can anyone tell me the recent paper pattern of Associate Level BI Certification? Please provide me with Question Paper Pattern, Marking Scheme and Negative Mark(if there) and recent sample paper. Regards, Vaishnavi Edited by: VaishnaviS

  • External library not working in xcode 4.5

    I developed an application in Xcode 4.5and added an external library in to the application, while compling the app i am getiing the below error. ld: library not found for -lgsgdg clang: error: linker command failed with exit code 1 (use -v to see inv