A question regarding using a JDBC class to connect with cloud service database

Hello,
I am currently working on a small scale cloud service report where the company I chose is obviously Oracle. My question is regarding the cloud service in the following way. I was doing my report with the free trial until it just came to me that
why not to do a small one class program with my netBeans or Eclipse that uses JDBC but I am not sure what username, password and the url to use in the connection to retrieve, manipulate and store values. Can somebody help me please if this is possible or not?
edit: Anyone please? I have a deadline in 15.8. and could create something great until then if I get the anwser in few days

To correct my question, I already have the oracle account and I created the cloud service trial account with database and java section.

Similar Messages

  • I have using I phone 5c after connected with my HP elite book 6930p laptop, Automatic software driver is not deducting,  and display Windows found driver software for your device (MTP USD Device) but encountered an error while attempting to install it.

    I am using I phone 5c after connected with my HP elite book 6930p laptop, (Installed  Window 7  32 bit).  automatic software driver is not deducting,  and display Windows found driver software for your device (MTP USD Device) but encountered an error while attempting to install it.
    I did install itunes and update also. but the above problem still same.
    Kindly give me solution of it. awaiting.
    Regards
    Abbas Kader

    try it with another computer to check if it shows up
    if so
    uninstall all apple software
    reboot
    use regedit to search and remove all itunes keys
    reboot
    resinstall apple software
    if non of that helps then try another cable
    if that don't help could be your phones connector is damaged

  • Which Port used by Integration Builder to communicate with JMS service

    Hi,
    Anybody know which port that used by Integration builder to communicate with JMS service in XI server in order to activate changes list.
    Thank you and Regards
    Fernand

    The main cause is not the communication problem between Integration builder and JMS provider but the inconsistent SLD contents.
    Now i can activate my object in the integration builder. see SAP Notes 764176
    Best Regards
    Fernand

  • Dear I am using iphone 4s now its connected with pc to create contact group.  I have 750 contacts in phone but pc showing only 36. How can i solve this? How can I see all contacts in pc?

    Dear I am using iphone 4s now its connected with pc to create contact group.  I have 750 contacts in phone but pc showing only 36. How can i solve this? How can I see all contacts in pc?

    HI,
    It may pay to bookmark this page.
    http://www.apple.com/support/systemstatus/
    8:40 PM      Wednesday; April 10, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Use of jdbc-class-ind-value

    Hi,
    I have 2 questions about jdbc-class-ind-value attribute.
    First it is not clear what are the allowed value types: number, single
    chars, full strings ?
    Second, as stated in chapter 7.8.2 of the manual, application should ensure
    that all
    the classes in a hiearchy are loaded in order to have correct results in
    query.
    Well, the PresistenceManager should be able to do that by itself, I think.
    Once a class is referenced as target of a query, it can be searched in
    metadata
    and/or .mapping or any other MappingFactory, and collected the list of
    values
    for all the subclasses (that are registered in .jdo files available in
    classpath).
    Am I wrong ?
    Regards,
    Guido.

    Guido-
    In article <c9202v$guf$[email protected]>, Guido Anzuoni wrote:
    Hi,
    I have 2 questions about jdbc-class-ind-value attribute.
    First it is not clear what are the allowed value types: number, single
    chars, full strings ?The value can be a number, char, or string ... Kodo will automatically
    determine the type of column to use based on the values you enter.
    Second, as stated in chapter 7.8.2 of the manual, application should ensure
    that all
    the classes in a hiearchy are loaded in order to have correct results in
    query.
    Well, the PresistenceManager should be able to do that by itself, I think.
    Once a class is referenced as target of a query, it can be searched in
    metadata
    and/or .mapping or any other MappingFactory, and collected the list of
    values
    for all the subclasses (that are registered in .jdo files available in
    classpath).
    Am I wrong ?This isn't possible, since Kodo cannot reliably determine all the
    subclasses for a particular class. For example, if you have superclass
    somepackage.SuperClass and subclass someotherpackage.SubClass, Kodo
    would need to scan through every jar and directory everywhere in your
    CLASSPATH in order to try to locate all of the possible persistent
    classes. Furthermore, in a managed environment (or other environment
    that has a custom class loader, such as a network class loader), it
    often isn't possible to perform this sort of scanning at all.
    Regards,
    Guido.--
    Marc Prud'hommeaux
    SolarMetric Inc.

  • Question regarding palcing cache related classes into a package

    Hi all,
    I have a question regarding placing classes into packages. Actually I am writing cache feature which caches the results which were evaluated previously. Since it is a cache, I don't want to expose it outside because it is only for internal purpose. I have 10 classes related to this cache feature. All of them are used by cache manager (the manager class which manages cache) only. So I thought it would make sense if I keep all the classes into a separate package.
    But the problem I have is, since the cache related classes are not exposed outside so I can't make them public. If they are not public I can't access them in the other packages of my code. I can't either make it public or private. Can someone suggest a solution for my problem?

    haki2 wrote:
    But the problem I have is, since the cache related classes are not exposed outside so I can't make them public. If they are not public I can't access them in the other packages of my code.Well, you shouldn't access them in your non-cache code.
    As far as I understand, the only class that other code needs to access is the cache manager. That one must be public. All other classes can be package-private (a.k.a default access). This way they can access each other and the cache manager can access them, but other code can't.

  • A Question regarding use of Interfaces.

    I have read about interfaces,but I havent got the real grasp or point
    of it.
    1). How is an interface an improvement over classes?
    If I define a class which has several important methods in it,and this class is extended by several other classes,and all these sub classes then call the super class's methods.
    How does an interface be more beneficial?
    2) What is the exact use of creating class intances thru interface references?
    Java talks about multiple inheritance using interfaces.
    If an interface does not have any constructive methods,but just
    empty methods,how does this become more constructive?
    Eventually a class will implement the this interface to give it some
    value? So why dont I write a class straight away rather than creating an interface,implement it and then code the required methods defined.
    I tend to avoid using interfaces becos I find them of no value.
    Rather I wud prefer to define class with some constructive methods
    and extend this class.
    Am I right in my analysis?

    Interface is also a "contract" that the class implementing a particular interface will provide certain functionality to the users of the class. For E.g Serializable interface in Java. All the classes that implement this interface indicate that the objects of these classes are serializable. Similar thing with Cloneable interface, all objects of classes that implement this interface are Cloneable....
    Hope thinking in these terms will help your understanding. Just look at Java interfaces to understand instead of some custom code.

  • Questions about using iMovie HD (6.0.4) with a new, as yet undecided, camcorder

    Hi,
    I want to keep on using iMovie HD (6.0.4) with whatever new camcorder I am getting. iMovie HD accepts mpeg-4 video so any camcorder that uses that format should work, shouldn't it? I will (probably) be bringing the video in via USB, as I don't think any new camcorders have Firewire ports anymore but I'd love to know about any that do. The plan is to find the files on the camcorder and drag and drop or otherwise transfer them into my MacBook Pro. (See my last question for the Thunderbolt/Firewire adapter problem.)
    I've read that some?/all? Canon camcorders can record in both AVCHD and mpeg-4 so I'm looking into them. Any other brands I should check out? Using AVCHD looks like it will be too much trouble so I'm ruling those out, unless you have better ideas.
    I've heard that Sony uses their own proprietary "wrapper" for mpeg-4 files their camcorders create. I think there is software out there, possibly for free, that will simply "re-wrap" them, not re-ecode them, so that they may be more easily used. Will Sony camcorders be a problem?
    Will file sizes be a problem? I've read so much on AVCHD and other formats that maybe this doesn't apply but I've read that one hour of video can be 60 gb? I don't remember what context that was in.
    Can I use mpeg-2 files? From what I have read, I don't think I can. If converting them would make them work, would it take a long time to do that and would file sizes be huge?
    I have been using a 21 year old Sony DCR-TRV 9 mini DV cam. This past weekend the LCD screen died. I can still use the viewfinder but that's going to be challenging, so I am shopping for an inexpensive new camcorder. Less than $500, somewhere in the $100-$300 range is preferred but no toys.... HD seems to be out of reach with most starting around $500 but if you recommend any under $500, I'd love to know about them. SD should be fine otherwise. I prefer some sort of card for storage storage rather than a DVD or hard drive. The more popular format, the better.
    Any advice is welcome. I do want to stay with iMovie HD though. I have tried iMovie 11 and don't like it. HD suits me fine.
    One last question: Since my MacBook Pro doesn't have a Firewire port, I have found it simpler to use my old Powerbook that does.  I then transfer the files over to the MacBook Pro to edit them. I have tried using a Thunderbolt/Firewire adapter so I could use the MBP but it didn't work well with video. The question is: is there a better way to transfer the video files onto the MBP from whatever new camcorder I get than USB? Are there good Thunderbolt connectors that will work well with camcorders?
    Many thanks.
    Cheers,
    John L

    I heartily support your decision to continue to use iMovie 6! I use nothing else!
    imovie 6 was originally designed to import DV video streams from tape via firewire. However, in practise it can do much more. Useful sources of information:
    iMovie 6 Help:
    http://manuals.info.apple.com/en/iMovie_HD_6_Getting_Started.pdf
    from which this is excerpt:
    iMovie HD can transfer, or import,
    video in many video formats and from many different
    types of camcorders, including DV camcorders (including those that support
    widescreen) and high definition (HDV) camcorders. In most cases, iMovie HD can
    automatically recognize and import the video you’re using, so you don’t have to pay
    attention to video formats.
    In this step, you will import your own video into your iMovie project. If you have a
    camcorder with a FireWire connection, follow the instructions to connect your
    camcorder and import the video using the capture controls in iMovie HD. If you have
    another type of digital video device or have footage in a file on your computer, see the
    instructions on page 13.
    To import video from a camcorder:
    1
    Set the camcorder to VTR mode (some camcorders call this Play or VCR) and turn it on,
    if necessary.
    2
    Connect your camcorder to your computer using a FireWire cable.
    This MaciLife PDF is also good:
    http://www.macilife.com/PDF/iMovie_HD_6_Chapter.pdf
    There is also a video tutorial here (with links to others):
    http://video.google.com/videoplay?docid=654013474999069361#
    The excerpt I quoted from the Apple link is less informative than it could be. It also succesfully imports video from my Fuji FinePix S4500 (actually a digital still camera) via USB2, as well from my Sony video camera via firewire!
    Can I use mpeg-2 files? From what I have read, I don't think I can. If converting them would make them work, would it take a long time to do that and would file sizes be huge?
    No. mpeg2 is the final compressed standard format of a DVD (and will be created by iDVD). To use that in iMovie 6 requires you 'reverse engineer' the file back to a DV stream, with commensurate loss of quality. If you really want to do that, post back for instructions.
    I have no experience with Thunderbolt so can't help you there, but hopefully Karsten will see this thread and chime in with his usual excellent advice!

  • Can I use multiple p class="logos" tag with the same name within the same html page?

    I was told not to use <div class> tags too many times. I was using them for text, images, to clear floats, I basically built my website using multiple <div class> tags. So if I can't use multiple <div class> tags could I use <p class> tags multiple times in the same html page?
    I have a string of logos at the bottom of my webpage which will all be using the same css characteristics for all logos. Would this be the proper way to write the code:
    HTML
    <p class="logos">Logo1<a href="...></a></p>
    <p class="logos">Logo2<a href="...></a></p>
    <p class="logos">Logo3<a href="...></a></p>
    <p class="logos">Logo4<a href="...></a></p>
    <p class="logos">Logo5<a href="...></a></p>
    <p class="logos">Logo6<a href="...></a></p>
    CSS
    .logos {
    margin-left:10px;
    Here's my website: http://www.darbymanufacturing.com/test_website/index.html - this is the website built with all div class tags
    I restarted the website in order to write the code properly so that I don't come to errors when uploading on the server like I am having with the website link above.

    Instead of writing something like this -
    <p class="logos">Logo1<a href="...></a></p>
    <p class="logos">Logo2<a href="...></a></p>
    <p class="logos">Logo3<a href="...></a></p>
    <p class="logos">Logo4<a href="...></a></p>
    <p class="logos">Logo5<a href="...></a></p>
    <p class="logos">Logo6<a href="...></a></p>
    Why not have something like this -
    <div id="logodiv">
    <p>Logo1<a href="...></a></p>
    <p>Logo2<a href="...></a></p>
    <p>Logo3<a href="...></a></p>
    <p>Logo4<a href="...></a></p>
    <p>Logo5<a href="...></a></p>
    <p>Logo6<a href="...></a></p>
    </div>
    with CSS like this -
    #logodiv p { ... }

  • Can I use 8.1.7 jdbc driver to connect 8.1.6 database?

    I want to develop a J2EE application. but now I only have 8.1.6 database on hand. Can I use 8.1.7 jdbc driver instead of 8.1.6 driver to implement ConnectionPool feature?

    I am in the same situation...we are currently on Oracle 8.1.6 using a Jdbc 2.0 driver, but would like to go ahead with using an Oracle Jdbc 3.0 driver ...

  • How to make JDBC and SAP connectivity with VC 6.0

    can anyone help me.....how to make JDBC system and SAP system visible in the System drop-down list in Data Task Panel of Visual Composer 6......i mean how to make connectivity with JDBC and SAP system......so that i can use any table in the back-end database as well as any BAPI in the R/3 system.........
    Thank you very much.....

    Hi Deep,
    There is a how-to posted on SDN regarding how to connect and configure the BI JDBC Connector.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/6209b52e-0401-0010-6a9f-d40ec3a09424
    This document describes the jdbc driver to use etc.
    Hope this helps,
    Cheers,
    Scott

  • Installing JDBC driver to connect to Oracle 8i Database from Weblogic 10.3

    I want to connect to Oracle 8i database from weblogic 10.3 application server. I found a classes12. zip file on Oracle.com to use as driver for the same.
    I am also connecting Oracle 9i database from the app server. Now if i replace the classes12. jar from the lib folder won't it disallow me to connect to the Oracle 9i database.
    2ndly the claases12.zip file i found from the site is for jdk 1.2 will it create any problems. Please let me know
    Kindly let me know what is the standard procedure to install a new driver in Weblogic 10.3.

    I tried to install weblogic 10.3 using jdk 1.5.07 but. it is not supported. Moreover from the sites also i found that it's only the application wars and ears compiled in jdk 1.5 need not be recompiled in 1.6. But no reference of jdk 1.5 is there.
    I tried to use thin client from the code and connect to Oracle 7i
    i got the following exception.
    java.lang.ArrayIndexOutOfBoundsException: 4
    at oracle.jdbc.driver.T4C8TTIdty.marshal(T4C8TTIdty.java:465)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:329)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:
    490)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:202)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtensio
    n.java:33)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:474)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    at com.omantel.finacc.DAO.DatabaseConnection.getUBCCConnection(DatabaseC
    onnection.java:372)
    at com.omantel.finacc.java.DMADAO.getUBCLAmount(DMADAO.java:411)
    at jsp_servlet.__receiptentry._jspService(__receiptentry.java:1198)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    <Apr 22, 2009 3:36:47 PM GMT+04:00> <Error> <HTTP> <BEA-101017> <[weblogic.servl
    et.internal.WebAppServletContext@553afb - appName: 'DMA', name: '/DMA', context-
    path: '/DMA', spec-version: 'null'] Root cause of ServletException.
    com.omantel.finacc.exception.AppException: 4
    at com.omantel.finacc.exception.ExceptionHandler.handleException(Excepti
    onHandler.java:43)
    at com.omantel.finacc.java.DMADAO.getUBCLAmount(DMADAO.java:428)
    at jsp_servlet.__receiptentry._jspService(__receiptentry.java:1198)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    java.lang.ArrayIndexOutOfBoundsException: 4
    at oracle.jdbc.driver.T4C8TTIdty.marshal(T4C8TTIdty.java:465)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:329)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:
    490)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:202)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtensio
    n.java:33)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:474)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    at com.omantel.finacc.DAO.DatabaseConnection.getUBCCConnection(DatabaseC
    onnection.java:372)
    at com.omantel.finacc.java.DMADAO.getUBCLAmount(DMADAO.java:411)
    at jsp_servlet.__receiptentry._jspService(__receiptentry.java:1198)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >

  • 11gR1 - using SOAP_CLIENT as protocol to connect to worklist service fails

    Hi,
    We are trying to use the SOAP_CLIENT protocol to connect to the BPEL worklist service using a standalone java application.
    The code to connect is:
    IWorkflowServiceClient wfSvcClient = null;
    IWorkflowContext wfCtx = null;
    Map<CONNECTION_PROPERTY,String> properties = new HashMap<CONNECTION_PROPERTY,String>();
    properties.put(CONNECTION_PROPERTY.SOAP_END_POINT_ROOT,"http://localhost:8001");
    properties.put(CONNECTION_PROPERTY.SOAP_IDENTITY_PROPAGATION,"non-saml");
    //properties.put(CONNECTION_PROPERTY.SECURITY_POLICY_URI,"oracle/wss10_saml_token_client_policy");
    //properties.put(CONNECTION_PROPERTY.MANAGEMENT_POLICY_URI,"oracle/log_policy");
    //wfSvcClient = WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.SOAP_CLIENT);
    wfSvcClient = WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.SOAP_CLIENT,properties,null);
    ITaskQueryService querySvc = wfSvcClient.getTaskQueryService();
    try {
    wfCtx = querySvc.authenticate("weblogic","welcome1".toCharArray(),null);
    } catch (WorkflowException wfe) {
    System.out.println(wfe);
    We receive the following error:
    \oracle.jps_11.1.1\jps-ee.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.jps_11.1.1\jps-internal.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.jps_11.1.1\jps-unsupported-api.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.jps_11.1.1\jacc-spi.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.pki_11.1.1\oraclepki.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_core.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_cert.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.osdt_11.1.1\osdt_xmlsec.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.iau_11.1.1\fmw_audit.jar;C:\oracle\Middleware\modules\javax.security.jacc_1.0.0.0_1-1.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.idm_11.1.1\identitystore.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.adf.share_11.1.1\adf-share-support.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.adf.share.ca_11.1.1\adf-share-ca.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.adf.share.ca_11.1.1\adf-share-base.jar;C:\oracle\Middleware\jdeveloper\modules\oracle.xdk_11.1.0\xmlparserv2.jar;C:\oracle\Middleware\modules\javax.activation_1.1.0.0_1-1.jar worklistclientproj.WorklistClient
    21-Aug-2009 7:10:46 PM oracle.security.jps.internal.config.xml.XmlConfigurationFactory initDefaultConfiguration
    SEVERE: java.io.FileNotFoundException: C:\JDeveloper\mywork\TestWorklistClientApp\WorklistClientProj\.\config\jps-config.xml (The system cannot find the path specified)
    SEVERE: WSM-09004 Component auditing cannot be initialized.
    SEVERE: WSM-09004 Component auditing cannot be initialized.
    INFO: WSMAgent is initialized for category=management, function=agent.function.client, topologyNodePath=/wls/default/EJBs/default/COMPONENTs/default/WEBSERVICECLIENTs/TaskQueryService/PORTs/TaskQueryServicePort/INTERCEPTORs/, isJ2EE=false
    SEVERE: java.io.FileNotFoundException: C:\JDeveloper\mywork\TestWorklistClientApp\WorklistClientProj\.\config\jps-config.xml (The system cannot find the path specified)
    SEVERE: WSM-09004 Component auditing cannot be initialized.
    SEVERE: WSM-09004 Component auditing cannot be initialized.
    INFO: WSMAgent is initialized for category=security, function=agent.function.client, topologyNodePath=/wls/default/EJBs/default/COMPONENTs/default/WEBSERVICECLIENTs/TaskQueryService/PORTs/TaskQueryServicePort/INTERCEPTORs/, isJ2EE=false
    Exception in thread "main" oracle.bpel.services.workflow.client.WorkflowServiceClientException: oracle.bpel.services.workflow.client.WorkflowServiceClientException: java.lang.NullPointerException
         at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.getTaskDetailsById(AbstractDOMTaskQueryServiceClient.java:564)
         at worklistclientproj.WorklistClient.main(WorklistClient.java:43)
    Caused by: oracle.bpel.services.workflow.client.WorkflowServiceClientException: java.lang.NullPointerException
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceSOAPClient.invoke(TaskQueryServiceSOAPClient.java:212)
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceSOAPClient.getTaskDetailsById(TaskQueryServiceSOAPClient.java:318)
         at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.getTaskDetailsById(AbstractDOMTaskQueryServiceClient.java:556)
         ... 1 more
    Caused by: java.lang.NullPointerException
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceSOAPClient.invoke(TaskQueryServiceSOAPClient.java:206)
         ... 3 more
    Process exited with exit code 1.
    Has anyone else successfully connected to the BPEL worklist service using the client APIs using the SOAP_CLIENT protocol?

    Fixed it.
    Came down to a mistake in the Group/Secret.
    Finally realized that I had mis-interpretted where the VPN Group was configured.
    Thought I had made the Group = CiscoVPN
    by looking at
    crypto isakmp key CiscoVPN address 0.0.0.0 0.0.0.0
    But really the Group = EZVPN
    Can see this at
    crypto isakmp client configuration group EZVPN
    The
    %CRYPTO-6-IKMP_MODE_FAILURE: Processing of Aggressive mode failed with peer at 97.83.99.146
    message ended up being a simple mismatch of the Phase 1 Group/Secret combination.

  • Lately have a problem forwarding email from FoxNews,I click on Goggle to use it says Safari cannot connect with the server, have tried deleting cache and cookies and also resetting Safari with no success, can you help me?

    LATELY HAVING A PROBLEM FORWARDING EMAIL VIA GOGGLE FROM FOX NEWS ARTICLES, WHEN I CLICK ON GOGGLE I SEE SAFARI CANNOT CONNECT WITH SERVER.
    HAVE TRIED DELETING CACHE AND COOKIE, HISTORY AND RESETTING SAFARI WITH NO SUCCESS.
    ANY HELP YOU CAN GIVE ME TO RESOLVE THIS ISSUE WOULD BE GREATING APPRECIATED.
    THIS IS MY FIRST TIME USING THIS FORUM, NEW AT THE COMPUTER WORLD.
    HOPE YOU'LL BE ABLE TO HELP ME RESOLVE THIS PROBLEM.
    THANK YOU!

    It isn't Goggle.  Did you make sure you went to Google?

  • Yoga2 Pro - how to use tablet as a projector connected with TV decoder via hdmi cable?

    Hi, My TV is broken and I would like to use my tablet as projector connected via HDMI cable from TV decoder to my tablet. What should I do? How to configure and which apllication I should use?

    You will need to choose the correct (Input) on the TV for the MacBook.....say your cable box is set to HDMI !.....and your MacBook is on HDMI 2.....you will need to select HDMI 2 from the TV's menu for the signal from the MacBook to show on the TV screen.......the selection choices are examples as I do not know exactly how you have things connected......

Maybe you are looking for

  • Start or Stop expression at a given frame?

    hello to everyone on the support forum. I searched the forum but wasn't able to find anything quite good for resolving the matter. This is something that my IT group Charles Stinson, Nick Carangi, and Sandra Connor have been working on fixing for a w

  • I dont' see the camera to enable attachment of pictures to text messages anymore, any suggestions?

    I'm trying to attach a photo to a text message and the little camera icon is not there anymore.  I've tried to reboot the phone and checked the settings but I'm missing something.  Any suggestions?

  • Changes made in Camer Raw are not visible in Bridge

    I'm editing the RAW images in Camera raw started from Bridge (Ctr- R). By returning to Bridge with "done" the changes are not visible. This worked until recently. s there any setting which prevents Bridge taking in consideration the info from the XMP

  • Photostream issues

    I have some issues with photo stream. When I copy photos from my Windows PC to Photostream (I have iCloud Control Panel installed), only some (41 out of 224) appear on the iPad. Can anyone explain why, and how to get them ALL to appear on iPad? Also,

  • Server returned HTTP response code: 500

    Hi, First time in here, so please be patient... This is the error message I get on the Java Console. I suspect that the problem is related to the DB. (MYSQL) Can someone elaborate more on this error message? It is the first time I encounter such an e