The difficulty to consume REST in ADF

Hey all,.

Thanks for your help!

I can't create a data control to a REST service that returns JSON.

The Rest service url is: https://btc-e.com/api/2/btc_usd/depth

Here is an example of a small subset of the data returned:

{"asks":[[552.825,0.33311602],[553.8,1],[553.887,1.92375302],[553.888,2.08576],],"bids":[[552.005,20],[552,6.13619106],[551.999,0.032],[551.8,7.94],[551.7,10.31977256],[551.502,0.2],[551.5,2.7740043],[551.118,0.0263181]]}


I used an online tool to create a XSD which is required by the wizard:

<?xml version="1.0" encoding="windows-1252" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.example.org"
            targetNamespace="http://www.example.org" elementFormDefault="qualified">
  <xsd:element name="root">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="asks">
          <xsd:complexType>
            <xsd:sequence>
              <xsd:element name="ask" maxOccurs="unbounded">
                <xsd:complexType>
                  <xsd:sequence>
                    <xsd:element name="price" type="xsd:float"/>
                    <xsd:element name="size" type="xsd:float"/>
                  </xsd:sequence>
                </xsd:complexType>
              </xsd:element>
            </xsd:sequence>
          </xsd:complexType>
        </xsd:element>
        <xsd:element name="bids">
          <xsd:complexType>
            <xsd:sequence>
              <xsd:element name="bid" maxOccurs="unbounded">
                <xsd:complexType>
                  <xsd:sequence>
                    <xsd:element name="price" type="xsd:float"/>
                    <xsd:element name="size" type="xsd:float"/>
                  </xsd:sequence>
                </xsd:complexType>
              </xsd:element>
            </xsd:sequence>
          </xsd:complexType>
        </xsd:element>
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>

Here are the steps I took in Jdeveloper 12.1.2 (Build JDEVADF_12.1.2.0.0_GENERIC_130608.2330.6668):

  1. Created a new application (Application of Fusion ADF) - taken the default config.
  2. Model right click > New > Gallery > Control(SOAP/REST) data to the Web Service
  3. Give it a name "TestDS", select REST, create a new connection (name: 'Him', endpoint: "https://btc-e.com")-connection Test passes.
  4. Next > path add a resource: (display name of method "/ api/2/btc_usd/depth": "Gdepth")
  5. Next > add the location of the XSD file above to XSD > Next - Connection Test passes
  6. Finishing

When I run the data control in the 'register of data control', I get the following error:

Unexpected exception taken: oracle.adf.model.adapter.AdapterException, msg = DCA-29000: Unexpected exception caught: oracle.xml.parser.v2.XMLParseException, msg = start of element root waited. DCA-29000: Unexpected exception caught: oracle.xml.parser.v2.XMLParseException, msg = start of element root waited. : start of element root waited.


With the trace of the following stack:


oracle.jbo.jbotester.app.ErrorHandler$ExceptionWrapper: Start of root element expected.
  at oracle.jbo.jbotester.app.ErrorHandler.displayError(ErrorHandler.java:104)
  at oracle.jbo.jbotester.app.ErrorHandler.displayError(ErrorHandler.java:90)
  at oracle.jbo.jbotester.panel.MethodPanel$6.actionPerformed(MethodPanel.java:420)
  at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
  at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
  at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
  at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
  at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
  at java.awt.Component.processMouseEvent(Component.java:6505)
  at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
  at java.awt.Component.processEvent(Component.java:6270)
  at java.awt.Container.processEvent(Container.java:2229)
  at java.awt.Component.dispatchEventImpl(Component.java:4861)
  at java.awt.Container.dispatchEventImpl(Container.java:2287)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
  at java.awt.Container.dispatchEventImpl(Container.java:2273)
  at java.awt.Window.dispatchEventImpl(Window.java:2719)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:729)
  at java.awt.EventQueue.access$200(EventQueue.java:103)
  at java.awt.EventQueue$3.run(EventQueue.java:688)
  at java.awt.EventQueue$3.run(EventQueue.java:686)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
  at java.awt.EventQueue$4.run(EventQueue.java:702)
  at java.awt.EventQueue$4.run(EventQueue.java:700)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.awt.EventQueue.dispatchEvent(EventQueue.java:699)
  at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
  at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
  at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
  at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
Caused by: oracle.adf.model.adapter.AdapterException: DCA-29000: Unexpected exception caught: oracle.adf.model.adapter.AdapterException, msg=DCA-29000: Unexpected exception caught: oracle.xml.parser.v2.XMLParseException, msg=Start of root element expected.
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:229)
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:246)
  at oracle.adfinternal.model.adapter.XMLChildOperation.invokeOperationInternal(ChildOperation.java:960)
  at oracle.adfinternal.model.adapter.ChildOperation.invokeOperation(ChildOperation.java:529)
  at oracle.adf.model.adapter.rest.RestURLDataControl.invokeOperation(RestURLDataControl.java:119)
  at oracle.jbo.jbotester.panel.MethodPanel$6.actionPerformed(MethodPanel.java:408)
  ... 36 more
Caused by: oracle.adf.model.adapter.AdapterException: DCA-29000: Unexpected exception caught: oracle.xml.parser.v2.XMLParseException, msg=Start of root element expected.
  at oracle.adf.model.adapter.dataformat.XMLHandler.parseDataStream(XMLHandler.java:699)
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:224)
  ... 41 more
Caused by: oracle.xml.parser.v2.XMLParseException; lineNumber: 1; columnNumber: 1; Start of root element expected.
  at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:326)
  at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:453)
  at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:394)
  at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:335)
  at oracle.adf.model.adapter.dataformat.XMLHandler.parseDataStream(XMLHandler.java:691)
  ... 42 more
## Detail 0 ##
oracle.adf.model.adapter.AdapterException: DCA-29000: Unexpected exception caught: oracle.adf.model.adapter.AdapterException, msg=DCA-29000: Unexpected exception caught: oracle.xml.parser.v2.XMLParseException, msg=Start of root element expected.
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:229)
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:246)
  at oracle.adfinternal.model.adapter.XMLChildOperation.invokeOperationInternal(ChildOperation.java:960)
  at oracle.adfinternal.model.adapter.ChildOperation.invokeOperation(ChildOperation.java:529)
  at oracle.adf.model.adapter.rest.RestURLDataControl.invokeOperation(RestURLDataControl.java:119)
  at oracle.jbo.jbotester.panel.MethodPanel$6.actionPerformed(MethodPanel.java:408)
  at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
  at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
  at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
  at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
  at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
  at java.awt.Component.processMouseEvent(Component.java:6505)
  at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
  at java.awt.Component.processEvent(Component.java:6270)
  at java.awt.Container.processEvent(Container.java:2229)
  at java.awt.Component.dispatchEventImpl(Component.java:4861)
  at java.awt.Container.dispatchEventImpl(Container.java:2287)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
  at java.awt.Container.dispatchEventImpl(Container.java:2273)
  at java.awt.Window.dispatchEventImpl(Window.java:2719)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:729)
  at java.awt.EventQueue.access$200(EventQueue.java:103)
  at java.awt.EventQueue$3.run(EventQueue.java:688)
  at java.awt.EventQueue$3.run(EventQueue.java:686)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
  at java.awt.EventQueue$4.run(EventQueue.java:702)
  at java.awt.EventQueue$4.run(EventQueue.java:700)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.awt.EventQueue.dispatchEvent(EventQueue.java:699)
  at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
  at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
  at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
  at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
Caused by: oracle.adf.model.adapter.AdapterException: DCA-29000: Unexpected exception caught: oracle.xml.parser.v2.XMLParseException, msg=Start of root element expected.
  at oracle.adf.model.adapter.dataformat.XMLHandler.parseDataStream(XMLHandler.java:699)
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:224)
  ... 41 more
Caused by: oracle.xml.parser.v2.XMLParseException; lineNumber: 1; columnNumber: 1; Start of root element expected.
  at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:326)
  at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:453)
  at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:394)
  at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:335)
  at oracle.adf.model.adapter.dataformat.XMLHandler.parseDataStream(XMLHandler.java:691)
  ... 42 more
## Detail 0 ##
oracle.adf.model.adapter.AdapterException: DCA-29000: Unexpected exception caught: oracle.xml.parser.v2.XMLParseException, msg=Start of root element expected.
  at oracle.adf.model.adapter.dataformat.XMLHandler.parseDataStream(XMLHandler.java:699)
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:224)
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:246)
  at oracle.adfinternal.model.adapter.XMLChildOperation.invokeOperationInternal(ChildOperation.java:960)
  at oracle.adfinternal.model.adapter.ChildOperation.invokeOperation(ChildOperation.java:529)
  at oracle.adf.model.adapter.rest.RestURLDataControl.invokeOperation(RestURLDataControl.java:119)
  at oracle.jbo.jbotester.panel.MethodPanel$6.actionPerformed(MethodPanel.java:408)
  at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
  at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
  at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
  at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
  at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
  at java.awt.Component.processMouseEvent(Component.java:6505)
  at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
  at java.awt.Component.processEvent(Component.java:6270)
  at java.awt.Container.processEvent(Container.java:2229)
  at java.awt.Component.dispatchEventImpl(Component.java:4861)
  at java.awt.Container.dispatchEventImpl(Container.java:2287)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
  at java.awt.Container.dispatchEventImpl(Container.java:2273)
  at java.awt.Window.dispatchEventImpl(Window.java:2719)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:729)
  at java.awt.EventQueue.access$200(EventQueue.java:103)
  at java.awt.EventQueue$3.run(EventQueue.java:688)
  at java.awt.EventQueue$3.run(EventQueue.java:686)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
  at java.awt.EventQueue$4.run(EventQueue.java:702)
  at java.awt.EventQueue$4.run(EventQueue.java:700)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.awt.EventQueue.dispatchEvent(EventQueue.java:699)
  at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
  at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
  at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
  at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
Caused by: oracle.xml.parser.v2.XMLParseException; lineNumber: 1; columnNumber: 1; Start of root element expected.
  at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:326)
  at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:453)
  at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:394)
  at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:335)
  at oracle.adf.model.adapter.dataformat.XMLHandler.parseDataStream(XMLHandler.java:691)
  ... 42 more
## Detail 0 ##
oracle.xml.parser.v2.XMLParseException; lineNumber: 1; columnNumber: 1; Start of root element expected.
  at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:326)
  at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:453)
  at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:394)
  at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:335)
  at oracle.adf.model.adapter.dataformat.XMLHandler.parseDataStream(XMLHandler.java:691)
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:224)
  at oracle.adf.model.adapter.dataformat.XMLHandler.<init>(XMLHandler.java:246)
  at oracle.adfinternal.model.adapter.XMLChildOperation.invokeOperationInternal(ChildOperation.java:960)
  at oracle.adfinternal.model.adapter.ChildOperation.invokeOperation(ChildOperation.java:529)
  at oracle.adf.model.adapter.rest.RestURLDataControl.invokeOperation(RestURLDataControl.java:119)
  at oracle.jbo.jbotester.panel.MethodPanel$6.actionPerformed(MethodPanel.java:408)
  at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
  at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
  at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
  at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
  at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
  at java.awt.Component.processMouseEvent(Component.java:6505)
  at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
  at java.awt.Component.processEvent(Component.java:6270)
  at java.awt.Container.processEvent(Container.java:2229)
  at java.awt.Component.dispatchEventImpl(Component.java:4861)
  at java.awt.Container.dispatchEventImpl(Container.java:2287)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
  at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
  at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
  at java.awt.Container.dispatchEventImpl(Container.java:2273)
  at java.awt.Window.dispatchEventImpl(Window.java:2719)
  at java.awt.Component.dispatchEvent(Component.java:4687)
  at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:729)
  at java.awt.EventQueue.access$200(EventQueue.java:103)
  at java.awt.EventQueue$3.run(EventQueue.java:688)
  at java.awt.EventQueue$3.run(EventQueue.java:686)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
  at java.awt.EventQueue$4.run(EventQueue.java:702)
  at java.awt.EventQueue$4.run(EventQueue.java:700)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
  at java.awt.EventQueue.dispatchEvent(EventQueue.java:699)
  at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
  at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
  at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
  at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
  at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

Thanks for your help,

NRage

currently the data service REST command is for REST services that return XML.

For Json results, you should write a Java class that calls the service, analyze the values returned and then expose this class Java as a control data to use in your applications to the ADF.

Tags: Java

Similar Questions

  • How to consume web services REST in ADF - JDeveloper 11.1.1.6

    I have an ADF application deployed on Java cloud and I'm trying everything to try to get the data into it. I could not set up a connection to the Oracle Cloud server, to remedy this I created my db cloud instance RESTful web services. Now, I need to consume web services in my ADF application.

    Is there a way to link the ADF business components to RESTful web services in version 11.1.1.6?

    If not, then how is it possible to get data in your ADF application deployed on Java cloud? You cannot connect to the DB, you can not link to REST web services, how are you supposed to use your data?

    Thank you.

    Check out hands-on experience on Oracle products: deploy Oracle Cloud database objects using JDeveloper for the part of the database and hands-on experience on Oracle products: deployment of Applications in the cloud to Oracle using JDeveloper ADF on how to deploy an application in the cloud.

    Timo

  • How to make only two columns as editable in five online when the user clicks a line using adf 12.1.3.

    Hello

    I displays a table on the screen. This table is read only during the initial page load. I want to do only two columns as editable on five in a row when the user clicks a line using adf 12.1.3.

    Is it possible in the adf. If possible how to handle this. Please help on this.

    For example, drop table editable Full and then replace rest inputText (components entry in general) with af:outoutText, everything except those two.

    And use the clickToEdit feature...?

  • the difficulty to peel soliell blue bluetooth dongle t n9 nokia phone

    Original title : confused

    the difficulty to peel soliell blue bluetooth dongle t n9 nokia phone

    Shouldn't you be speaking people to Nokia Support?
    Try this link. See if it applies to your question:

    Nokia Support Discussions:

    http://discussions.Europe.Nokia.com/T5/accessories-car-phones-and-other/I-can-T-to-connect-my-headphones-Nokia-BH604-to-my-PC-non-riesco/TD-p/308471

  • The HID-compliant consumer control device

    I have 2 PCs both running window XP. Recently, every time a PC is turned on, it always pup - up window and asking for "a new HID-compliant consumer control device" is and ask you to install the device driver.
    However, I can't find the driver - when I have the PC auto search the drive and tried to install it, it has always failed to do so and next time, when the PC is turned on, the same situation happened. Isn't it very annoying. correct driver. Pls help-

    1. What is consistent with the above HID consumer control device?-my PC another has no such feature compliant consumer control, when I checked the "Human Interface Device/Hardware Manager.
    2. how to solve this annoying problem...

    Thanks for your help.

    Hi Benshu,

    ·         Did you do changes on the computer before the show?

    I suggest you to disconnect all external devices (printers, scanner, USB (universal serial bus) drives, etc...)  Except the keyboard and mouse and then start.

    If this solves the problem, then add back devices at a time until you discover the piece of hardware causing the issue.  Then get any drivers\software update for the device.

    Also go through the event viewer crash logs and check what is the application and the module that fails to load. If you find error messages after return the exact error message so that we can help you better.

    Procedure to view and manage event logs in Event Viewer in Windows XP

    http://support.Microsoft.com/kb/308427

  • The difficulty to send emails get server error. Email is through Gmail.

    I try to send an email using my gmail account

    The difficulty to send emails get server error. Please someone tell me how to make my gmail account can be used to send emails and attachments? I have windows vista and have never been able to send an email because I bought this laptop. Is there a way that I have to put in place ena.ble email settings to send through Gmail

    See if this helps: http://support.google.com/mail/bin/answer.py?hl=en&answer=77696 , you should be able to connect via webmail also.  See https://accounts.google.com/ServiceLogin?passive=1209600&continue=http://support.google.com/mail/?hl%3Den&followup= http://support.google.com/mail/?hl%3Den&hl=en

    Make sure that you have no antivirus to analyze together to mail.  See www.oehelp.com/OETips.aspx#3

    Steve

  • When I try to delete an element of images/documents, etc, it is moved to the Recycle Bin ok but the little window recycling rest and cannot be canceled

    original title: Please help me.

    When I try to delete an element of images/documents, etc, it is moved to the Recycle Bin ok but the little window recycling rest and cannot be cancelled by the task handle. If I open 'my computer' and start typing in the search box it also freezes and it slows down my computer. I ran spybot, AVG, disk etc. defragmentation, but no problems were discovered.

    Have you tried running SFC. EXE/scannow from a high command prompt to repair a corrupt Windows?

  • Customization of the user for users of the data base and without security ADF

    JDeveloper version - 11.1.1.7.0

    I want to implement personalization by the user on the database of users and without ADF security. I followed the link in storing the repository in a file system but its same showing below the user interface for all users.

    http://Sameh-Nassar.blogspot.IE/2012/03/apply-MDS-to-Oracle-ADF-application.html

    Please guide me on how to do this for users of the database. Please share any other useful links, as appropriate.

    Customization of the user (SDM) does not care the security of applications. You can also apply to the MDS in your ADF application if you use the ADF security or custom security. The main idea is the class of customization (like MyUserCC) has the method call getValue this method should return the user name. When the user login stores the user id in the session and the method getValue returns the user session ID as:

      public String[] getValue(RestrictedSession restrictedSession, MetadataObject metadataObject)
      {
        try
        {
          String user = (String)FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("userId"); // userId is the session variable that store the login user id
          if(user == null)
          {
            return new String[]{""};
          }
    
          return new String[]{user};
        }
        catch (Exception e)
        {
          e.printStackTrace();
        }
        return new String[]{""};
      }
    
  • The difficulty to install Adobe Flash player 17.0.0.134 on Mac OS 10.10.1.  Currently have 16.0.0305 flash player installed

    The difficulty to install Adobe Flash player 17.0.0.134 on Mac OS 10.10.1.  Currently have 16.0.0305 flash player installed.  I tried to quit Safari.  Have not uninstalled currently Adobe again.  How to fix?

    @

    Try to use http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player_osx.dmg Offline Installer

  • Inserting a new record in the database using a form empty ADF

    Hello

    I'm trying to insert a new record into the database using a form.

    I have an Employee table and its corresponding entity object and the view object. The table has an id that is used as the primary key and is filled using a sequence in the comic book.

    Data controls, I dragged and dropped at the sight of the employee as a form of ADF and checked the submit button include. Then I dragged and dropped the validation on submit button operation.

    When I connect to the app and go to the page used to create, I have 2 problems:
    1 - the form is filled with the logged in user info.
    2. If I try to change the news and validation, the user info is changed in the database and no new record is created.

    It makes a little sense to me, but I would like to know if there is a way around it (get an empty form and insert a new record).
    NB: the employee id is not part of the form, I want to be filled using the sequence.

    Kind regards
    MB

    User, please tell us your jdev version!

    To do this, you must create a new record before going to the display of the form page. In a stubborn workflow (btf), you drag the operation createInsert of the VO on the btf and it will generate a link method, add a view to the btf and put a navigation of the binding of the method of the page. Mark the method as 'Activity by default'. Now, ren, you call the workflow, you create a new record that will show your blank form.

    Timo

  • How to find the sessions/user consuming more tablespace temp

    Details of the environment
    IBM - AIX 64 bit
    Oracle 10.2.0.4.0


    Recently, we encountered the issue of the pic suddenly in the CPU usage and the use of temp tablespace. After Apr CPU 2009 patch and upgrade to 10.2.0.4, we notice this question.

    Recently temp space was full and we have added 18 GB of temp tablespace, a few hours, they are also eaten.

    The application team said that they do not modify any code. ADDM report suggests most of the recommendations related to SQL tuning only

    not sure of the real issue. Can someone tell me how I can find out what all the sessions/user consuming high temp tablespace

    Edited by: user1368801, 1 Sep 2009 17:32

    Hello

    Run query to check if it is used by any session below.

    Select sum (a.BYTES_USED) / 1024/1024 used_mb, sum (b.bytes) / 1024/1024 total_mb,
    Sum (a.BYTES_USED) / sum (b.bytes) * 100 pct_used
    v $ TEMP_EXTENT_POOL, $ v b tempfile
    where a.file_id (+) = b.file #.

    Check who is using the query below.

    SELECT s.sid, s.serial #, osuser, process, program, s.sql_hash_value, u.extents, u.blocks
    V $ session s, v$ sort_usage u
    WHERE s.saddr = u.session_addr order by degrees, blocks desc

    Hope this fixes your problem.

    Concerning
    Kind regards
    Ludmilla amine
    Click here for the RMAN backup performance using [Block change tracking in Oracle 10 g | http://oracleracexpert.blogspot.com/2009/09/block-change-tracking-in-oracle-10g.html]
    http://oracleracexpert.blogspot.com

  • Hp officejet 4620 printer that I need to know where is the guide to the user and how to clean ADF

    Device's printer Hp Officejet 4620, I need to know where the user guide is? How to clean the ADF?

    Hello

    As OEM HP is responsible for the good operation of the printer and their
    drivers provided. Check with HP support, their documentation online and
    drivers and ask in their forums.

    HP Officejet 4620 e-All-in-One Printer - drivers and software
    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?product=5191646&LC=en&cc=us&DLC=en&lang=en&cc=us

    E-all-in-one printer HP Officejet 4620 - support and troubleshooting
    http://h10025.www1.HP.com/ewfrf/wc/product?product=5191646&LC=en&cc=us&DLC=en&lang=en&cc=us

    HP support/troubleshooting & drivers
    http://welcome.HP.com/country/us/en/support.html

    Contact HP
    http://welcome.HP.com/country/us/en/contact_us.html

    HP forums
    http://h30434.www3.HP.com/PSG/

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • Sharing collections or sets with clients and synchronization of the difficulty of the PS to PS on my Mac workflow

    Good,

    It is a question of both parties, but because this involves a workflow of the singular, I'm combining them.  The only other issue I've seen related to landmines, has been in 2011, so I hope as the State of LR (laptop or desktop) has improved since then. If not, it's pretty sad... but I digress. Here's the workflow:

    Go and do a shoot, we tell an event in this case. Shoot is done, and I'm on the train or the bus to go home. During my ride home, I already watch over and slaughter photos with LR mobile on my 6 + or iPhone an iPad because my Fuji sent them upon him via wifi. So, I create a collection for the guards, and the first thing I want to do is let the event coordinator will have access to the whole stem, so that I can return my guards with what she likes and confirm all the guards and put them in another collection, probably named something like: 'best choice '. Now that we have access, we can comment, favorite them or give them either colors or stars for editing priority.

    Now say, I am able to do some specific "picks" for the collection of first choice, and I decide to start to do some minor tweaking, such as removal of task/task or cloning in difficulty of Adobe. I wish I could go home, plop in front of my Mac, open PS CC and pick up there where I had left in Adobe difficulty. Is it feasible, or I live in crazy land?

    Finally, I'm done with final touch-ups and I don't want to succumb to the likes of download to Google Drive, Box, box etc... I just want my client to batch download the entire collection in full resolution. Even more crazy, or not crazy?  And if not feasible, it will be in the future, and if not, then why not? Because for all the hassles that cause this kind of thing, I can just as well use Affinity Photo, Capture1 and Google Reader etc... Why should I worry stick with PS 'CC', if the CC part is barely useful in this classic scenario?

    Thank you!

    Doug

    Hello!

    Warner has answered part of the question. What is able to pick up where Fix left, the answer is: definitely! You can send your changes to Fix Photoshop CC by clicking 'send to Photoshop '. However, you will have to "Send to Photoshop" each photo individually. A better way to have a whole lot of changes sync would immediately make the changes through Fix, send them to LR Mobile and have active sync. You will then need to make the rest of the Desktop LR edition or export them in PS CC. It is also important to keep in mind that using portable LR and Fix can resize your images according to their original size.

    It seems that, for now, our applications are completely unable to manage this workflow. Sorry about that!

    Let us know if we can help with anything else.

    See you soon!

    -Kathleen

  • ADF picks up the paper, paper goes 90% by ADF, paper stops and restores approximately 10%

    I have a 8500 HP Officejet Pro entitled more A910G; I am running Windows 7.

    When you use the ADF, I put a sheet of paper in the tray of albums,

    I hear him "ding", says that the book is recognized,

    I chose the copy,

    The article is accepted,

    The book begins his journey through the ADF,

    The book stops at the bottom of the ADF, but when it is almost 90% through the ADF, the paper stops, reverses and restores in the ADF, and then after reversing about 10% in the ADF, the paper stops and I get the error message:

    "Reload the document, and then restart of work."

    It has been the case for over a year! I tried a hard reset of the printer. I looked for loose paper in the Add box. I see in the forum that others have had this problem. But no miracle!

    Hello

    Thanks for the reply with your update, and we thank you for clicking on Bravo to say thank you! I appreciate it.

    I'm sorry to hear that the diagnosis was not much help at all. There could be more than a hardware problem in the printer and I suggest to call the HP Technical Support at this stage. They may have a replacement or a trade in option for you.

    If you are interested, here is their contact information:

    If you call in North America, the number is 1-800-474-6836 and for all other regions: click here.

     

    Thank you for posting, I hope that you enjoy your weekend!

  • normal priority for the priority producer consumer

    Hello forums or

    I have a question

    Lets say I have a real-time, on the top level vi application I have 2 loops

    1st loop is high priority Subvi, which opened the fpga vi reference, this Initializes the fpga to run with the appropriate settings and after initialization, the actions are read dma fifo data, making digital io and etc, if something is wrong side or the fpga or host side and then it closes in this regard of fpga. This loop has data in it and so the loop of the producer.

    2nd loop is a priority normal Subvi anaylzes and Treaty of the data from the 1st loop, and if something is not it just waits and does nothing. This loop consumes the data by the producer, so it's the consumer.

    My question is that,

    This creates conflicts or problems if it is implemented with the method I suggested?

    Nope. This is how works the producer consumer architecture. The producer must generally specific calendar (acquisition) and the consumer just drags and manages the data when it comes.

Maybe you are looking for

  • Quickly fill out log files

    I noticed that whenever I have mount smbfs sharing wireless does not work after a few minutes and must be reset. Log files seem to be filled quickly upward.Demon and sys log contains similar lines.2 jan 21:51:34 NetworkManager TOSHIBA-User: "supplica

  • Built at the microphone of the Satellite A100 does not work

    According to the specifications of this laptop is supposed to have a built-in microphone.Impossible to get this working, tried test through Control Panel of configuration/sounds but nothing does. The voice said test not detected. All ideas, where is

  • After downgrading to windows 10 for windows 7 product key not valid

    I updated windows 7 windows 10 online and because it's slow on my pc I have downgraded it back to windows 7 using recovery to the old version of windows 10. now my laptop is a HP's OEM product and it shows the product key is not valid, windows is not

  • Reason of video playback color filter?

    Trying to solve a strange problem with videos on my Win7 Pro 64-bit machine. Some videos will show a color filter where red is green etc (black and white are normal). Have you tried different diagnoses of Microsoft but no luck. My graphics card is NV

  • How would duplicate these anchors - or, how would do everything that I reflect on one side the other side?

    So I'm new to Illustrator and have begun to make a logo, one of the first things that I really need to know is how can I duplicate anchors - I know that I can mirror the forms but I don't want to continue to do that every time I change an anchor on o