Working with an MLS Entity

Hi,
While I try to insert into an MLS entity created in the Fusion Development Environment I am getting the following error:
(oracle.jbo.RowCreateException) JBO-25017: Error while creating a new entity row for PERJOBSEO.
----- Level 1: Detail 0 -----
(java.lang.ArrayIndexOutOfBoundsException) -2
Please help.

Hi Frank,
As per the steps mentioned in the following link :
http://www-apps.us.oracle.com:1100/fwk/jdev/doc/devguide/bus/bus_java.htm#tl
I have created the required entity objects and view objects.
I have an entity JobsDEO which is based on a view per_jobs_vl which is itself based on 2 tables,per_jobs_f and per_jobs_tl,wherein _tl is the translation table.
The entity for _tl table is JobTranslationEO and has no VO associated with it.Its the JobsVO,based on JobsDEO,that has to handle any interactions with this entity too.
JOBSDEO has a property set up for HCM_DBSEQUENCE,which makes it read the value of job_id from the sequence per_jobs_s.
Now,when I try to insert into the JobsVO,based on JobsDEO,it gives me the above mentioned error.
One more thing is that the error does'nt occur when we commit a row,its just when we click the "+" button in the AM Tester that we get this error.
Please advice.

Similar Messages

  • "Message Driven Bean" doesn't work with Sun App Server

    Hello all,
    i have a little bit problems, running a simple "Message Driven Bean" under the Sun App Server. The deployment of it works fine, but after starting the SUN App Server i get the following error message:
    An error occurred during the message-driven beancontainer initialization at runtime. The most common cause for this is that the physical resource(e.g. Queue) from which the message-driven bean is consuming either does not exist or has been configured incorrectly. Another common error is that the message-driven bean implementation class does not correctly implement the required javax.ejb.MessageBean or MessageListener interfaces.
    Has anybody a workaround for this problem?
    The queue seems to be correctly installed. A simple client programm from the Sun Tutorial (Consumer & Producer) works fine without any Errors or Exceptions.
    I am a little bit confused, because the queue seems to work with the client programms but not with a MDB running on the SUN App Server.
    Thanks for you help!
    Greetings
    Manuel

    Hello Mr Manuel!
    could you plz help me with the steps for creating a message driven bean using netbeans ver 5.0(with Sun Java� System Application Server Platform Edition 8.2 )
    I just know how to work with Session beans & Entity Bean, and am try to learn to work on Message Driven Beans too. there are no proper tutorials where i can find steps for creating these..
    I need the steps from the scratch.,like creating QueueConnection Factory & Destination etc..
    It will be gr8 if you can help me with this at the earliest .
    Thank you
    Bye

  • How to get JDev 10.1.2/ADF working with MS SQL Server Identity Column

    Hello JDevTeam & JDevelopers,
    I want to use JDev/ADF with a MS SQL Server 2005 database that contains tables employing IDENTITY Columns.
    Using JDev/ADF and DBSequence with an Oracle database employing before triggers/sequences accomplishes what I am trying to do except I want to accomplish the same thing using a MSSQL Server 2005 database. Unfortunately I cannot change the database.
    I have been able to select records but I am unable to insert records (due to my lack of knowledge) when using MS/SQL Server Identity Columns with JDev/ADF.
    The following are the steps taken thus far.
    Step1: Create table named test in the 2005 MSSQL Server (see script below).
    Step2: Register 3rd Party JDBC Driver with JDeveloper; Using use Tools/Manage Libraries. Create a new entry in User Libraries with the following;
         Library Name     = Ms2005Jdbc
         Class Path     = C:\dev\Ms2005Jdbc\sqljdbc_1.0\enu\sqljdbc.jar
         (note: Latest TYPE 4 JDBC driver for Microsoft SQL Server 2005 - free at http://msdn.microsoft.com/data/ref/jdbc/)
    Step3:Create New Database Connection;
         Connection Name = testconn1
         Type = Third Party JDBC Driver
         Authentication Username = sa, Password = password, Check Deploy Password
         Connection
              Driver Class = com.microsoft.sqlserver.jdbc.SQLServerDriver     
              Library = Ms2005Jdbc     
              Classpath = C:\dev\Ms2005Jdbc\sqljdbc_1.0\enu
              URL = jdbc:sqlserver://192.168.1.151:1433;instanceName=sqlexpress;databaseName=test
         Test Connection = Success!
    Step5: Create a new application workspace using Web Application default template
    Step6: In Model project, Create new Business Components Diagram.
    Step7: Create new Entity Object. Goto to connections/testconn1, open tables and drag table test onto the diagram.
    Step8: Generate Default Data Model Components by right-clicking on Entity Object. Except all the defaults.
    When I test the Appmodule I select the view object and can scroll through all the records without error. If I try to insert a record, I get JBO-27014: Attribute testid in test is required.
    Going back to the EntityObject I deselect the Mandatory attribute and re-run the test. Now when I try to insert it accepts the value for testname but it does not update the PK testid like it would using an "JDev/ADF/DBSequence/Oracle database/before trigger/sequence" solution.
    Going back to the EntityObject and selecting refresh on insert does not solve this problem either. Changing the URL connection string and adding "SelectMethod=cursor" did not help and changing the SQl Flavor to SQLServer produced errors in the Business Components Browser. I've tried overriding isAttributeChanged() and other things as well.
    I am totally stuck! Can anyone provide a solution?
    Thanks for you help,
    BG...
    Create table named test
    use [testdb]
    go
    set ansi_nulls on
    go
    set quoted_identifier on
    go
    create table [test](
         [testid] [int] identity(0,1) not null,
         [testname] [nvarchar](50) collate sql_latin1_general_cp1_ci_as not null,
    constraint [pk_test] primary key nonclustered
         [testid] asc
    )with (pad_index = off, ignore_dup_key = off) on [primary]
    ) on [primary]

    Figured it out!
    When using the MS SQL Server 2000 Database with the MS JDBC 2000 Driver you specify the SQL Flavor to SQLServer. However setting the SQL Flavor to SQLServer with MS SQL Server 2005 Database and the MS JDBC 2005 Driver will *** fail ***.
    When working with the MS SQL Server 2005 Database and the MS JDBC 2005 Driver you set the SQL Flavor to SQL92 and the Type Map to Java.
    If using a named instance like I am you would specify the URL = jdbc:sqlserver://<db host ip address>:<listening port>;instanceName=<your instance name>;selectMethod=cursor;databaseName=<your database name> (note: leave out the < >)
    The 2005 Driver Class is different then the 2000 and is specified as com.microsoft.sqlserver.jdbc.SQLServerDriver
    Note: In a default MS SQL Server 2005 installation the listening port will change *** everytime *** the host is restarted! You can override this though.
    For the primary key you need to deselect the Mandatory attribute in the EntityObject editor.
    Set Refresh on insert/update = no.
    Set Updateable = never.
    Now my Primary Keys which get their values from the Identity Column are working with ADF in a predictable way.
    Simple enough but I have been away from this stuff for awhile.
    BG...

  • Problem Working With Framemaker 9 Dita XML Files in Framemaker 10

    I just upgraded to Framemaker 10. I am encountering a number of problems when I try to work with my Dita XML help topics, which were last saved in Framemaker 9 format.
    1. Using the Default Dita Template
    When I open one of my documents in Framemaker 10, the Dita 1.2 template ditabase.fm is automatically applied. Everything seems fine. But then when I convert the XML to Eclipse help (which is essentially html, so we're going from XML to HTML) using Dita Open Toolkit ant scripts, I see this message:
    [pipeline] [DOTJ013E][ERROR] Failed to parse the referenced file 'html\c_licensing.xml' due to below exception. Please correct the reference base on the exception message.
    [pipeline] c_licensing.xml Line 25:Attribute "xmlns:ditaarch" must be declared for element type "dita".
    I then opened the xml  file in a text editor, and I saw this on line 25:
    <dita xmlns:ditaarch = "http://dita.oasis-open.org/architecture/2005/">
    Line 25 looks fine to me. Am I missing something? 
    2. Switching to a 1.1 Dita Template
    I tried to work around the above problem. In Framemaker, I tried to set a different structured application as the default one. I closed all files and chose the default Dita 1.1 structured application (it defaults to the Dita 1.1. Composite app.)
    Then I tried to open my file: I got this message inside Framemaker:
    "Validation of XML failed. Continue?
    Error at [FILE PATH], line 25, char 72, Message: Attribute '{http://www.w3.org/2000/xmlns/}ditaarch' is not declared for element 'dita'
    Sounds familiar, doesn't it?
    I switched from the default Dita 1.1. Composite structured application to the Dita 1.1. Topic structured application. Then I dirtied the source file and saved it. The messages I got in FrameMaker log window included the one above, plus I got a variety of Unknown Element messages, things like this:
    Unknown element dita,
    unknown element concept,
    various attributes are not declared for concept,
    unknown element conbody.
    If I switch back to the Dita 1.1 Composite application all of these messages diappear except for this one:
    Attribute '{http://www.w3.org/2000/xmlns/}ditaarch' is not declared for element 'dita'
    My ant conversion scripts from the Dita Open Toolkit are still unable to process this file. They give the same message as is listed in (1) above and the file is not converted to HTML.
    Can anyone help me with this problem? I've also posted this question to the Dita Users Group on Yahoo Groups. If I get an answer in one place, I'll post it in the other.
    Thanks,
    Nina P.

    I really appreciate all the help you are providing with this, Scott. I tried your latest suggestions. Here's what happened:
    Application Mappings:
    I figured out how to add my "BigPage" structured application to the Applications Mappings dialog. I made a new "BigPage"  mapping type, then figured out the non-intuitive part: how to add my individual BigPage topic types to it.  I closed and reopened FrameMaker opened my test document, and, as before (before I did the application mappings) I saw my BigPage applications listed in the Structure Tools > Set Structured Application drop-down. I selected the appropriate application (in this case it was DITA1.1-BigPage-Reference-FM and clicked the "Set" button. 
    It is at this point in Framemaker 9 (and also once, in FrameMaker 10, early in this process, but I haven't been able to replicate it since) that the page size would change to tabloid size, indicating that the document was using the template from the BigPage reference structured application, not the regular DITA1.1 reference application. But this did not happen.
    I tried saving the document, closing it, and reopening it. Once again the default structured application assigned to that document was "reset" to DITA1.1-Reference-FM.  But the fact that the page size did not immediate refresh to tabloid size told me that although I did select the BigPage application in the drop-down, it wasn't being applied.
    Public IDs:
    The public ID in my test reference XML file is:  <!DOCTYPE reference PUBLIC "-//OASIS//DTD DITA Reference//EN" "reference.dtd" [
    The four public IDs in the DITA1.1-BigPage-Reference-FM entry in structapps.fm (in the Entity Locations section) are:
    -//OASIS//DTD DITA Reference//EN 
    -//IBM//DTD DITA Reference//EN
    -//OASIS//DTD DITA Composite//EN
    -//IBM//DTD DITA Composite//EN
    Do you see anything wrong with the above? .
    Directory Structure: 
    Maybe I cloned the application incorrectly?  Here's what I did:
    1. In C:\Program Files (x86)\Adobe\AdobeFrameMaker10\Structure\xml, I copied the folder called DITA and pasted it into the same directory. I renamed this folder DITA-BigPage
    2. Inside DITA-BigPage, I opened the app folder. Inside each subfolder in app, DITA-Reference-FM, for example, I opened the edd file in Framemaker. In this case, the edd file name was reference.edd.fm.
    3. I edited the top line of reference.edd.fm.  It originally said:
    Structured Application: DITA1.1-Reference-FM.
    I changed it to say:
    Structured Application: DITA1.1-BigPage-Reference-FM
    4. I saved the EDD file. Then I opened the template file in the same folder. It was called: reference.template.fm.
    5. In reference.template.fm, I first changed my page size: Format Menu > Page Layout > Page Size > Tabloid > Set.
    6. Then I imported the element definitions from the corresponding EDD file:  File > Import > Element Definitions > reference.edd.fm > Click Import > Click OK to dismiss verification message.
    7. I repeated the above process for all topic-type folders. For the maps types, I did not change the page size, as these will never display as topics in my online  help. I did nothing to the dtd folder.
    8. Once all this was done, I opened structapps.fm.  I did the following to all Dita1.1 elements in the structure tree.
    Selected the Dita 1.1 XMLApplication element, for instance, the one named Dita1.1-Reference-FM, copied it, and pasted it underneath the original element.
    The original first few lines in the clone looked like this:
    Application Name: DITA1.1-Reference-FM
          Template:              $STRUCTDIR\xml\DITA\app\DITA-Reference-FM\reference.template.fm
          DTD:                       $STRUCTDIR\xml\DITA\app\dtd\reference.dtd
          Read/write Rules:  $STRUCTDIR\xml\DITA\app\DITA-Reference-FM\reference.rules.fm
          DOCTYPE:              reference
    I changed these lines to look like this, using your suggestion to create a variable for the first part of the URLs to enable speed and accuracy:
           Application Name:      DITA1.1-BigPage-Reference-FM
                   Template:                    $STRUCTDIR\xml\DITA-BigPage\app\DITA-Reference-FM\reference.template.fm
                   DTD:                            $STRUCTDIR\xml\DITA-BigPage\app\dtd\reference.dtd
                   Read/write Rules:        $STRUCTDIR\xml\DITA-BigPage\app\DITA-Reference-FM\reference.rules.fm
                   DOCTYPE:                    reference
    I also changed the "Filename" URLs in the "Entity Locations" section of this XMLApplication clone from  $STRUCTDIR\xml\DITA\app\  to $STRUCTDIR\xml\DITA-BigPage\app\.  Applying the "BigPage" variable I'd created for this purpose made this go quickly.
    Finally, after this didn't work the first few times I tried it, I got suspicious that the structapps.fm file in my AppData folder (in my case, it was in the Roaming subfolder under the usual Adobe directories) was overriding the modified structapps.fm file in the Framemaker program directory so I replaced the one in AppData (it had all the original settings) with my modified version.  This had no effect, unfortunately.
    That was my process. After doing the above, the Dita1.1-BigPage applications all listed in the Set Structured App drop-down. They just didn't work,when applied to my XML documents. Nor did the application "remember" what structured application I had set when I opened a new xml document  or closed/reopened the current document or closed/reopened the application.  Did I place the directories correctly for Framemaker 10?  This is the way I did it for FrameMaker 9 and it worked successfully.
    As much as I'd love to solve this mystery, I've thought of a workaround I can fall back on  that doesn't involve using a cloned application.  I will change the page size of a few of the original Dita1.1 sturctured application templates to tabloid size, but leave the Topic structured application at letter size. I'll then apply the Topic structured application to my PDFs and use the others for my help topics.  I'll set this up now. If this doesn't work, then I'll know there's a much bigger problem at the base of this, perhaps even something to do with changing page sizes in templates.

  • Multihead not working with 2.6.31 and nvidia 185

    Right, hi all.
    I've been having trouble for the past few days, when I came back home the machine had hung up.  Then after booting it hanged in kdm.  I've done various attempts at fixing this, with nvidia 190 driver, downgrading to 2.6.30, tested xorg-server 1.7 from testing and I've been running X -configure like crazy.  I also had a problem getting in to kde.  Currently I have my main screen working with kdemod and also strangely one auxiliary screen, that's all black and gets REALLY slow when I move my mouse there.  Normal speed on the main screen.  I'd like to get all four screens working if possible. If I start with all four screens (old config) enabled it hangs after nvidia logo.
    Here's the log spam. Xorg.log.0
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.6.3.901 (1.6.4 RC 1)
    Release Date: 2009-8-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux helsinki 2.6.31-ARCH #1 SMP PREEMPT Fri Oct 23 10:03:24 CEST 2009 x86_64
    Build Date: 04 September 2009 05:45:43PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Oct 29 21:51:48 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Screen "Screen1" (1)
    (**) | |-->Monitor "Monitor1"
    (**) | |-->Device "Card1"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (II) Loader magic: 0x1d40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (!!) More than one possible primary device found
    (--) PCI: (0:1:0:0) 10de:0402:1462:0881 nVidia Corporation G84 [GeForce 8600 GT] rev 161, Mem @ 0xe8000000/16777216, 0xc0000000/268435456, 0xe6000000/33554432, I/O @ 0x0000c000/128, BIOS @ 0x????????/131072
    (--) PCI: (0:2:0:0) 10de:0402:10de:0439 nVidia Corporation G84 [GeForce 8600 GT] rev 161, Mem @ 0xe4000000/16777216, 0xd0000000/268435456, 0xe2000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/131072
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    dlopen: libGLcore.so.1: wrong ELF class: ELFCLASS32
    (EE) Failed to load /usr/lib/xorg/modules/extensions//libglx.so
    (II) UnloadModule: "glx"
    (EE) Failed to load module "glx" (loader failed, 7)
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) NVIDIA dlloader X Driver 185.18.36 Fri Aug 14 17:51:02 PDT 2009
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is:
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="X.Org Foundation"
    compiled for 1.6.3.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Enabling RENDER acceleration
    (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
    (EE) NVIDIA(0): log file that the GLX module has been loaded in your X
    (EE) NVIDIA(0): server, and that the module is the NVIDIA GLX module. If
    (EE) NVIDIA(0): you continue to encounter problems, Please try
    (EE) NVIDIA(0): reinstalling the NVIDIA driver.
    (II) NVIDIA(0): NVIDIA GPU GeForce 8600 GT (G84) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 524288 kBytes
    (--) NVIDIA(0): VideoBIOS: 60.84.51.00.00
    (II) NVIDIA(0): Detected PCI Express Link width: 8X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce 8600 GT at PCI:1:0:0:
    (--) NVIDIA(0): BenQ T241WA (CRT-0)
    (--) NVIDIA(0): ViewSonic VA2626wm (CRT-1)
    (--) NVIDIA(0): BenQ T241WA (CRT-0): 400.0 MHz maximum pixel clock
    (--) NVIDIA(0): ViewSonic VA2626wm (CRT-1): 400.0 MHz maximum pixel clock
    (II) NVIDIA(0): Assigned Display Device: CRT-0
    (==) NVIDIA(0):
    (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    (==) NVIDIA(0): will be used as the requested mode.
    (==) NVIDIA(0):
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "nvidia-auto-select"
    (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1200
    (--) NVIDIA(0): DPI set to (93, 92); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    (==) NVIDIA(1): Depth 24, (==) framebuffer bpp 32
    (==) NVIDIA(1): RGB weight 888
    (==) NVIDIA(1): Default visual is TrueColor
    (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(1): Enabling RENDER acceleration
    (II) NVIDIA(1): NVIDIA GPU GeForce 8600 GT (G84) at PCI:2:0:0 (GPU-1)
    (--) NVIDIA(1): Memory: 524288 kBytes
    (--) NVIDIA(1): VideoBIOS: 60.84.38.00.00
    (II) NVIDIA(1): Detected PCI Express Link width: 8X
    (--) NVIDIA(1): Interlaced video modes are supported on this GPU
    (--) NVIDIA(1): Connected display device(s) on GeForce 8600 GT at PCI:2:0:0:
    (--) NVIDIA(1): Acer AL1916 (DFP-0)
    (--) NVIDIA(1): Acer AL1916 (DFP-0): 330.0 MHz maximum pixel clock
    (--) NVIDIA(1): Acer AL1916 (DFP-0): Internal Dual Link TMDS
    (II) NVIDIA(1): Assigned Display Device: DFP-0
    (==) NVIDIA(1):
    (==) NVIDIA(1): No modes were requested; the default mode "nvidia-auto-select"
    (==) NVIDIA(1): will be used as the requested mode.
    (==) NVIDIA(1):
    (II) NVIDIA(1): Validated modes:
    (II) NVIDIA(1): "nvidia-auto-select"
    (II) NVIDIA(1): Virtual screen size determined to be 1280 x 1024
    (--) NVIDIA(1): DPI set to (85, 86); computed from "UseEdidDpi" X config
    (--) NVIDIA(1): option
    (==) NVIDIA(1): Enabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? Yes, I do.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) NVIDIA(0): Initialized GPU GART.
    (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    (II) NVIDIA(0): configuration option may not be set correctly. When the
    (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0): Config Options in the README.
    (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (==) NVIDIA(0): Disabling shared memory pixmaps
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (II) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (II) Loading extension XINERAMA
    (==) RandR enabled
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
    (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
    (II) NVIDIA(1): configuration option may not be set correctly. When the
    (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
    (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
    (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
    (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(1): Config Options in the README.
    (II) NVIDIA(1): Setting mode "nvidia-auto-select"
    (II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
    (==) NVIDIA(1): Disabling shared memory pixmaps
    (II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(1): Backing store disabled
    (==) NVIDIA(1): Silken mouse enabled
    (II) NVIDIA(1): DPMS enabled
    (==) RandR enabled
    (II) Entity 0 shares no resources
    (II) Entity 1 shares no resources
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) config/hal: Adding input device Logitech USB-PS/2 Optical Mouse
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 2.2.5
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Logitech USB-PS/2 Optical Mouse: always reports core events
    (**) Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event6"
    (II) Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
    (II) Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
    (II) Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
    (II) Logitech USB-PS/2 Optical Mouse: Configuring as mouse
    (**) Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
    (**) Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE)
    (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
    (**) Logitech USB-PS/2 Optical Mouse: (accel) filter chain progression: 2.00
    (**) Logitech USB-PS/2 Optical Mouse: (accel) filter stage 0: 20.00 ms
    (**) Logitech USB-PS/2 Optical Mouse: (accel) set acceleration profile 0
    (II) Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
    (II) config/hal: Adding input device Microsoft Natural® Ergonomic Keyboard 4000
    (**) Microsoft Natural® Ergonomic Keyboard 4000: always reports core events
    (**) Microsoft Natural® Ergonomic Keyboard 4000: Device: "/dev/input/event9"
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Found 1 mouse buttons
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Found scroll wheel(s)
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Found keys
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Configuring as keyboard
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Adding scrollwheel support
    (**) Microsoft Natural® Ergonomic Keyboard 4000: YAxisMapping: buttons 4 and 5
    (**) Microsoft Natural® Ergonomic Keyboard 4000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Microsoft Natural® Ergonomic Keyboard 4000" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (EE) Microsoft Natural® Ergonomic Keyboard 4000: failed to initialize for relative axes.
    (II) config/hal: Adding input device Microsoft Natural® Ergonomic Keyboard 4000
    (**) Microsoft Natural® Ergonomic Keyboard 4000: always reports core events
    (**) Microsoft Natural® Ergonomic Keyboard 4000: Device: "/dev/input/event8"
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Found keys
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Microsoft Natural® Ergonomic Keyboard 4000" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event2"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event1"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) NVIDIA(1): Initialized GPU GART.
    (II) Logitech USB-PS/2 Optical Mouse: Close
    (II) UnloadModule: "evdev"
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Close
    (II) UnloadModule: "evdev"
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Close
    (II) UnloadModule: "evdev"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) Power Button: Close
    (II) UnloadModule: "evdev"
    (II) Power Button: Close
    (II) UnloadModule: "evdev"
    (II) Screen 0 shares mem & io resources
    (II) Screen 1 shares mem & io resources
    (II) Screen 0 shares mem & io resources
    (II) Screen 1 shares mem & io resources
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Screen 0 shares mem & io resources
    (II) Screen 1 shares mem & io resources
    (II) NVIDIA(0): Initialized GPU GART.
    (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    (II) NVIDIA(0): configuration option may not be set correctly. When the
    (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0): Config Options in the README.
    (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (==) NVIDIA(0): Disabling shared memory pixmaps
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (II) NVIDIA(0): DPMS enabled
    (==) RandR enabled
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
    (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
    (II) NVIDIA(1): configuration option may not be set correctly. When the
    (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
    (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
    (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
    (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(1): Config Options in the README.
    (II) NVIDIA(1): Setting mode "nvidia-auto-select"
    (II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
    (==) NVIDIA(1): Disabling shared memory pixmaps
    (II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
    (WW) NVIDIA(1): WAIT (2, 6, 0x8000, 0x0000bc94, 0x0000bd78)
    (WW) NVIDIA(1): WAIT (0, 6, 0x8000, 0x0000bd78, 0x0000bd78)
    (II) NVIDIA(1): DPMS enabled
    (WW) NVIDIA(1): WAIT (0, 6, 0x8000, 0x0000bda0, 0x0000bda0)
    (==) RandR enabled
    (II) Entity 0 shares no resources
    (II) Entity 1 shares no resources
    (EE) XKB: No components provided for device Virtual core keyboard
    (WW) Couldn't load XKB keymap, falling back to pre-XKB keymap
    [config/dbus] couldn't register object path
    (II) config/hal: Adding input device Logitech USB-PS/2 Optical Mouse
    (**) Logitech USB-PS/2 Optical Mouse: always reports core events
    (**) Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event6"
    (II) Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
    (II) Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
    (II) Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
    (II) Logitech USB-PS/2 Optical Mouse: Configuring as mouse
    (**) Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
    (**) Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
    (**) Logitech USB-PS/2 Optical Mouse: (accel) filter chain progression: 2.00
    (**) Logitech USB-PS/2 Optical Mouse: (accel) filter stage 0: 20.00 ms
    (**) Logitech USB-PS/2 Optical Mouse: (accel) set acceleration profile 0
    (II) Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
    (II) config/hal: Adding input device Microsoft Natural® Ergonomic Keyboard 4000
    (**) Microsoft Natural® Ergonomic Keyboard 4000: always reports core events
    (**) Microsoft Natural® Ergonomic Keyboard 4000: Device: "/dev/input/event9"
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Found 1 mouse buttons
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Found scroll wheel(s)
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Found keys
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Configuring as keyboard
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Adding scrollwheel support
    (**) Microsoft Natural® Ergonomic Keyboard 4000: YAxisMapping: buttons 4 and 5
    (**) Microsoft Natural® Ergonomic Keyboard 4000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (EE) Microsoft Natural® Ergonomic Keyboard 4000: failed to initialize for relative axes.
    (II) config/hal: Adding input device Microsoft Natural® Ergonomic Keyboard 4000
    (**) Microsoft Natural® Ergonomic Keyboard 4000: always reports core events
    (**) Microsoft Natural® Ergonomic Keyboard 4000: Device: "/dev/input/event8"
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Found keys
    (II) Microsoft Natural® Ergonomic Keyboard 4000: Configuring as keyboard
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event2"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event1"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): Initialized GPU GART.
    (II) NVIDIA(1): Initialized GPU GART.
    (EE) NVIDIA(1): Error recovery failed.
    (EE) NVIDIA(1): *** Aborting ***
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "extmod"
    Load "record"
    Load "dbe"
    Load "dri"
    Load "dri2"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "G84 [GeForce 8600 GT]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "G84 [GeForce 8600 GT]"
    BusID "PCI:2:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    and old xorg.conf with all four screens
    # /etc/X11/xorg.conf (Xorg X Window System server configuration file)
    # This file was generated by fll_xorgconfig, the F.U.L.L.S.T.O.R.Y.
    # Xorg Configuration tool.
    # Edit this file with caution, and see the xorg.conf(5) manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    Section "ServerLayout"
    Identifier "Xorg Configured"
    # Screen "Screen 0"
    Screen 0 "Screen0" RightOf "Screen2"
    Screen 1 "Screen1" RightOf "Screen0"
    Screen 2 "Screen2" LeftOf "Screen0"
    Screen 3 "Screen3" RightOf "Screen1"
    InputDevice "Keyboard 0"
    InputDevice "Logitech USB-PS/2 Optical Mouse 0"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    Option "Xinerama" "1"
    Option "DontZap" "false"
    EndSection
    #Section "Module"
    # SubSection "extmod"
    # Option "omit xfree86-dga" # don't initialise the DGA extension
    # EndSubSection
    #EndSection
    Section "InputDevice"
    Identifier "Keyboard 0"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "fi,ca"
    Option "XkbOptions" "lv3:ralt_switch,compose:lwin,grp:alt_shift_toggle"
    EndSection
    Section "InputDevice"
    Identifier "Logitech USB-PS/2 Optical Mouse 0"
    Driver "auto"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "auto"
    Option "Emulate3Buttons" "true"
    Option "CorePointer"
    EndSection
    Section "Device"
    Identifier "Device 0"
    Driver "nvidia"
    Option "IgnoreDisplayDevices" "TV"
    Option "Coolbits" "1"
    Option "AddARGBGLXVisuals" "true"
    Option "TripleBuffer" "false"
    BoardName "nVidia Corporation GeForce 8600 GT"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8600 GT"
    BusID "PCI:2:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Device2"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8600 GT"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    Section "Device"
    Identifier "Device3"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8600 GT"
    BusID "PCI:2:0:0"
    Screen 1
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "BenQ T241WA"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 76.0
    Option "DPMS"
    EndSection
    Section "Monitor"
    Identifier "Monitor3"
    VendorName "Unknown"
    ModelName "IFC InFocus X16"
    HorizSync 31.0 - 82.0
    VertRefresh 48.0 - 85.0
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "ViewSonic VA902"
    HorizSync 30.0 - 82.0
    VertRefresh 50.0 - 85.0
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    VendorName "Unknown"
    ModelName "Acer AL1916"
    HorizSync 30.0 - 83.0
    VertRefresh 55.0 - 75.0
    EndSection
    Section "Screen"
    # Removed Option "TwinView" "True"
    # Removed Option "MetaModes" "1280x1024,1280x1024;1280x1024,;1024x768,;800x600,;640x480,;"
    # Removed Option "metamodes" "CRT: 1920x1200 +1280+0, DFP: 1280x1024 +0+0; CRT: 1280x1024 +0+0, DFP: NULL; CRT: 1024x768 +0+0, DFP: NULL; CRT: 800x600 +0+0, DFP: NULL; CRT: 640x480 +0+0, DFP: NULL"
    # Removed Option "metamodes" "CRT: 1920x1200 +1280+0, DFP: 1280x1024 +0+0; CRT: 1280x1024 +0+0; CRT: 1024x768 +0+0; CRT: 800x600 +0+0; CRT: 640x480 +0+0"
    # Removed Option "TwinView" "1"
    # Removed Option "metamodes" "CRT: 1920x1200 +1280+0, DFP: 1280x1024 +0+0; CRT: 1280x1024 +0+0, DFP: NULL; CRT: 1024x768 +0+0, DFP: NULL; CRT: 800x600 +0+0, DFP: NULL; CRT: 640x480 +0+0, DFP: NULL"
    # Removed Option "metamodes" "CRT: nvidia-auto-select +0+0; CRT: 1280x1024 +0+0; CRT: 1024x768 +0+0; CRT: 800x600 +0+0; CRT: 640x480 +0+0"
    # Removed Option "metamodes" "nvidia-auto-select +0+0; 1280x1024 +0+0; 1024x768 +0+0; 800x600 +0+0; 640x480 +0+0"
    # Removed Option "metamodes" "CRT-0: nvidia-auto-select +0+0; CRT-0: 1280x1024 +0+0; CRT-0: 1024x768 +0+0; CRT-0: 800x600 +0+0; CRT-0: 640x480 +0+0"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "AddARGBGLXVisuals" "True"
    Option "NoTwinViewXineramaInfo" "False"
    # Option "MultiGPU" "True"
    Option "SLI" "0"
    Option "TwinView" "0"
    Option "TwinViewXineramaInfoOrder" "CRT-0"
    Option "metamodes" "CRT: nvidia-auto-select +0+0; CRT: 1280x1024 +0+0; CRT: 1024x768 +0+0; CRT: 800x600 +0+0; CRT: 640x480 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    # Removed Option "TwinView" "0"
    # Removed Option "metamodes" "nvidia-auto-select +0+0"
    # Removed Option "metamodes" "CRT: nvidia-auto-select +0+0, DFP: nvidia-auto-select +1280+0"
    # Removed Option "metamodes" "CRT: nvidia-auto-select +1280+0, DFP: nvidia-auto-select +0+0"
    # Removed Option "TwinView" "1"
    # Removed Option "metamodes" "CRT: 1280x1024 +1280+0, DFP: nvidia-auto-select +0+0"
    # Removed Option "metamodes" "CRT: 1280x1024 +0+0"
    # Removed Option "metamodes" "CRT-0: 1280x1024 +0+0"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinViewXineramaInfoOrder" "DFP-0"
    Option "SLI" "0"
    Option "TwinView" "0"
    Option "metamodes" "CRT-1: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    # Removed Option "metamodes" "DFP: 1280x1024 +0+0"
    # Removed Option "metamodes" "DFP: nvidia-auto-select +0+0"
    # Removed Option "metamodes" "CRT-1: nvidia-auto-select +0+0"
    Identifier "Screen2"
    Device "Device2"
    Monitor "Monitor2"
    DefaultDepth 24
    Option "SLI" "0"
    Option "TwinViewXineramaInfoOrder" "DFP-0"
    Option "TwinView" "0"
    Option "metamodes" "DFP: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    # Removed Option "metamodes" "CRT-1: nvidia-auto-select +0+0"
    # Removed Option "metamodes" "DFP: nvidia-auto-select +0+0"
    # Removed Option "metamodes" "CRT-1: nvidia-auto-select +0+0"
    # Removed Option "metamodes" "CRT-0: 1280x1024 +0+0"
    Identifier "Screen3"
    Device "Device3"
    Monitor "Monitor3"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "CRT-0: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    # Section "Screen"
    # Identifier "Screen 0"
    # Monitor "Monitor 0"
    # DefaultColorDepth 24
    # SubSection "Display"
    # Depth 8
    # EndSubSection
    # SubSection "Display"
    # Depth 15
    # EndSubSection
    # SubSection "Display"
    # Depth 16
    # EndSubSection
    # SubSection "Display"
    # Depth 24
    # EndSubSection
    # EndSection
    Section "Extensions"
    # Option "Composite" "disable"
    # Option "RENDER" "disable"
    EndSection

    bump

  • Problem with cache refresh entity bean / server node

    Hello,
    ive got a big problem and not found answer in sdn until now.
    Ive got a job that gets data from maxdb by sapjob - jco - session bean - entity bean - database.
    this job works daily. the data to work with is written directly to database from external.
    on first execute it works, but second etc not. i search for answer and i guess something:
    entity bean is cached (increase percormance?) with results of the select and do not know about new database entries when they are written directly to database. so second select says: there is no new data (but they are there).
    i only get this new data when i restart netweaver server node, then it works, but only for one time. then result is in cache and then i have to do same procedure before it goes (restart server).
    how can i get this data? is there any setting for force node to refresh cache? or any other settings to affect something like this?
    we have to go live with this in august.
    thx for help.
    Version: NW04, SP21

    thanks at first.
    OSS was the next step i consider, enforcedly.
    I hoped that there was a kind of timeout in visual admin or somewhere else where (for example) i can set a special time (seconds?) for refreshig the cache. Or i can set a flag for "do not cache entity beans".
    Someone else any idea?
    Nowadays on test system whe have made a task that starts windows every night so that netweaver also is "fresh". a kind of resolution but not the best and no resolution for the productiv system. or whe have to write a kind of batch job that only restarts server node once a day.
    New Info:
    I think cache was filled directly after restart.
    when we restart, then data are written, and then our application wanted to read them, they are also not seen.
    The data are only seen by bean when the restart takes place AFTER the data are written into db.
    So we change restart time to point after data are written. so we will test if this works, on monday we will see.
    Edited by: Torsten on Jul 11, 2008 11:27 AM

  • ADF bindings are not working with inheritance heirarchy.

    ADF bindings are not working with inheritance heirarchy. I am using embedded OC4J in JDeveloper 10.1.3.2.
    For the data model I have the following objects\attributes.
    1) User (abstract EJB 3.0 POJO)
    - Id
    - userId
    - userName
    2) Employee -> extends User (EJB 3.0 POJO)
    - enabled
    - password
    3) Manager -> extends Employee (EJB 3.0 POJO)
    - numOfEmployees
    4) UserSessionBean (Stateless Session Bean)
    - public User findUserByUserId(String userId)
    - public List<User> queryUserFindAll()
    - Object mergeEntity(Object entity)
    I created 2 JSF pages using ADF.
    1) ListUsers.jspx - Lists all the users of type Employee and Manager in a table. You can select an user and chose to modify the user details using a modify button.
    2) ModifyUser.jspx - Modify the selected user and persist the modified user details.
    I implemented ListUsers.jspx by dragging and dropping queryUserFindAll() method from the ADF datacontrol on to the JSF page and selected ADF Table format with selection enabled.
    Similarly for the ModifyUser.jspx page I dragged and dropped the User object returned by findUserByUserId(String userId) and selected ADF Form format. I selected OutputText field types for userId and userName.
    I then created a navigation case from ListUsers.jspx to ModifyUser.jspx and pass the selected user.
    Now when I try to run the web application, ListUsers.jspx correctly displays all the users. Then I select a user of type Employee and click on the modify button. This brings up the ModifyUser.jspx page. However, the UserId text field displays the value for "Id" field rather than "userId".
    Question that I have is:
    - Why is ADF framework not able to retrieve the appropriate user attribute value for a Employee based on the binding information in case of inheritance ?
    Thanks,
    Piyush

    Hi,
    tried with JDeveloper 10.1.3.3 and this works for me. Try JDeveloper 10.1.3.3 - if it doesn't work, have a closer look at your sessionFacade
    Frank

  • Validation Event Handler Not working with GTC Recon???

    We have implemented a Validation Event Handler on user entity.
    In the code we have implemented both the execute methods i.e. Orchestration andf Bulk Orchestration. We have created a UDF for Manager field and our validation handler checks whether the user in Manager UDF field is an Active user in OIM or not. In case the user is not an Active user, code will throw a Validation Failed Exception.
    At the time of changing the Manager UDF value from the Console directly Validation Event Handler is getting triggered but with GTC Recon Validation Handler is not Working.
    Previously i faced the same issue with the post process event handler but the problem get resoved when i implemented execute method with Bulk Orchestration. As per my understanding Bulk Orchestration exceute method gets called with GTC Recon and execute method with Orchestration gets called when changing the attribute value directly from the console.
    In case of Validation Event Handler i have implemented both but still validation Event handler is not working with GTC.
    Thanks in Advance....

    Any Help????

  • JPA with EclipseLink, error Entity cannot be cast to Entity, any help?

    Hello, I'm currently deploying a JPA project with EclipseLink on a MySQL db, it's been working fine, however, I'm receiving a problem of this type:
    java.lang.ClassCastException: beans.Empleado cannot be cast to beans.Empleado
    Where Empleado is my Entity, basically the problem happens here, where I store a result from a SQL select into a List and then assign the results into variables, it was working with no problems before, but now, everytime I run the code, the error shows up, and the only way to make it work at least 2 - 3 times, is restarting the Glassfish Server, here's the code:
    Query q = em.createNamedQuery("Empleado.findByIdEmpleado");
    q.setParameter("idEmpleado", 2);
    List<Empleado> listaEmpleado = q.getResultList();
    for(Empleado empleado1 : listaEmpleado){
    testString = empleado1.getTecnologia();
    But as I said, it was working fine before, so I don't think is actually a code problem, I guess the "cast" reference is happening here:
    for(Empleado empleado1 : listaEmpleado)
    The errors shows up with every function where I make this kind of casting......
    As a comment, I have a similar project at home, and I don't have these problems, this is happening on a project at work, but both project are the same, it's just I'm doing this one at work and the other at home, which is working fine, thanks in advanced, have a nice day, I just hope I was clear about this!
    Edited by: user3538005 on 08-11-2011 09:08 AM

    Hola,
    It's quite strange stuff :) Mainly the exception, beans.Empleado cannot be cast to beans.Empleado.
    I think it's because of some configuration problem, related to classloader:
    EclipseLink has it's own classloader, if your beans.Empleado is loaded by EclipseLink's classloader, and by a different one (default classloader), you will have two beans.Empleado classes in your JVM, and these classes are different, so you cannot cast them :O
    so your eclipselink's classloader has its beans.Empleado(1) class, and after executing your query you have a list with the results each of them in beans.Empleado(1).
    and your dao class, or whatever, tries to cast the beans.Empleado(1) to the default classloader's beans.Empleado(2).
    what did you change in the config when it started not to work?

  • Oracle Dabase Schema with OC4J CMP Entity EJB

    I have tables in a schema called vsxlib. My Entity EJBs that map to SQL SERVER tables (no schema) work perfectly. My Entity CMP EJBs that connect need to connect to the vsxlib schema only partially work.
    The findAll method works. When I add a where clause, I get no results back.
    When I try a findByPrimaryKey, I get a ObjectNotFoundException.
    Does OC4J version 9.0.3 support database schemas? There were examples posted at http://otn.oracle.com/sample_code/tech/java/j2ee/javacookbook/transactionsample/readme.html#descfiles say that they have an Entity bean working within a db schema.
    Could it be permission related????
    I even tried creating a synonym pointing to the table within the vsxlib schema.. No Luck.
    I had this same problem with JBoss3.2 and found out that they did not support db schemas. That is why I was wanting to switch to OC4J because I thought for sure, being an oracle product that it would support db schemas.
    Any help is greatly appreciated.

    Hi Alex,
    I think you may be misunderstanding the meaning of 'database schemas'. For your information, in the Oracle database, a schema is the same as a database user. For example all the database tables belonging to user SCOTT (TIGER) are said to be in the SCOTT schema.
    OC4J uses the term 'database schema' differently. Here it refers to the mapping of database datatypes to java classes. Look at the "j2ee/home/config/database-schemas" subdirectoryof the OC4J installation for more details. The "data-sources.xml" file has a 'schema' tag (not sure if that's the correct name) which points OC4J to the datatype mapping XML file -- usually one of those that come with the distribution. However, I use OC4J stand-alone version and I don't need to worry about the mappings at all -- OC4J already knows the mappings for an Oracle database (I assume).
    In order to access a particular Oracle schema, I merely have to log in to the database as the appropriate user. So, using the previous example, if I configure the "data-sources.xml" file to use 'scott' as the database login, then OC4J can access the SCOTT schema. You can find more details about Oracle's use of the term 'schema' in the Oracle documentation, which is available from:
    http://tahiti.oracle.com
    Hope this has answered your question.
    Good Luck,
    Avi.

  • How to Work with Composite Primary Key

    Hi All,
    I'm working with Toplink JPA. Here I have A problem with inserting into database table which have composite Primary Key.
    What I'm doing is, I have two tables. to maintain many to many relation between these two tables I created another intermediate table which consists of foreign Keys (reference) of above two tables.
    Now these two foreign Keys in the Intermediate table made as composite Primary Keys.
    When I'm trying to the data in the Intermediate table I'm getting the foreign Keys values are null..
    could anyone suggest me how to work with composite Primary Keys
    Thanks,
    Satish

    I have the same problem, I have 3 tables with a join table joining them all. I have created an intermediate table entity. When I go to create a an entry, it says that I cannot enter null into "ID". Here is the SQl toplink generates:
    INSERT INTO Z_AUTH_USER_AUTHORIZATION (CONTEXT_ID, AUTHORIZATION_ID, USER_ID) VALUES (?, ?, ?)
    bind => [null, null, null]
    Here are the classes:
    -----------------------Join Table-----------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_USER_AUTHORIZATION")
    public class AuthUserAuthorization implements Serializable{
    @EmbeddedId
    private AuthUserAuthorizationPK compId;
    // bi-directional many-to-one association to AuthAuthorization
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "AUTHORIZATION_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthAuthorization authAuthorization;
    // bi-directional many-to-one association to AuthContext
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "CONTEXT_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthContext authContext;
    // bi-directional many-to-one association to AuthUser
    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "USER_ID", referencedColumnName = "ID", nullable = false, insertable = false, updatable = false)
    private AuthUser authUser;
    ---------------------------------------User table--------------------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_USER")
    public class AuthUser implements Serializable, IUser{
    @Id()
    @SequenceGenerator(name = "AUTH_USER_ID_SEQ", sequenceName = "Z_AUTH_USER_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_USER_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 10)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authUser", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    -----------------------------------Context table-----------------------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_CONTEXT")
    public class AuthContext implements Serializable, IContext{
    @Id()
    @SequenceGenerator(name = "AUTH_CONTEXT_ID_SEQ", sequenceName = "Z_AUTH_CONTEXT_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_CONTEXT_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 8)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authContext", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    ----------------------------Authorization table-------------------------------------------------
    @Entity()
    @Table(name = "Z_AUTH_AUTHORIZATION")
    public class AuthAuthorization implements Serializable, IAuthorization{
    @Id()
    @SequenceGenerator(name = "AUTH_AUTHORIZATION_ID_SEQ", sequenceName = "Z_AUTH_AUTHORIZATION_ID_SEQ")
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "AUTH_AUTHORIZATION_ID_SEQ")
    @Column(name = "ID", unique = true, nullable = false, precision = 8)
    private Integer id;
    // bi-directional many-to-one association to AuthUserAuthorization
    @OneToMany(mappedBy = "authAuthorization", fetch = FetchType.EAGER)
    private java.util.Set<AuthUserAuthorization> authUserAuthorizations;
    I have tried to create the new entity several ways. I have tried to create one with the default constructor then set this entity on each of the other entities, I have also tried to pass in the entities to the join entity and set them there, but this doesn't work. Any help would be very appreciated!
    Thanks,
    Bill

  • Problem in working with imported EJBs

    Hi all,
    I have created a ejb module in studio enterprise and want to import it to
    creator. EJB module compose with CMP entity beans from MySQL DB and
    stateess sesssion bean. Then i imported the module and worked with business methods. But they are not working.
    Can anybody plase tell me how to configure JSC to use those EJBs from MySQL.
    Also i successfully add the datasource from MySQL in JSC.
    thanks,
    Kaushalya

    Hi There,
    Take a look at this How to Article, it has instructions on importing EJB's into Creator
    Importing Enterprise JavaBean Components into Your Web Application
    http://developers.sun.com/prodtech/javatools/jscreator/reference/fi/2/ejb-import.html
    also the articles under the section "EJB Components" in the link below will be of help to you.
    http://developers.sun.com/prodtech/javatools/jscreator/reference/index.jsp
    Hope it helps
    Thanks
    K

  • VM Manager's Launch Console not working with OpenJDK and IcedTea

    Fedora 15
    java-1.6.0-openjdk-1.6.0.0-59.1.10.3.fc15.x86_64
    icedtea-web-1.0.4-1.fc15.x86_64
    ICEDTEA-WEB NOTES
    Invalid XML
    An error like
    netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1203)
    indicates that the JNLP file is not valid XML. The error happens because netx uses an XML parser to parse the JNLP file. Other JNLP client implementations may use more lenient parsers and may or may not work with the given JNLP file. Errors caused by malformed JNLP files can often lead to subtle bugs, so it is probably best to fix the JNLP file itself. A tool like xmlproc_parse might be able to pinpoint the error.
    XMLPROC_PARSE OUTPUT
    $ xmlproc_parse ovm_rasproxy-ws.jnlp
    xmlproc version 0.70
    Parsing 'ovm_rasproxy-ws.jnlp'
    E:ovm_rasproxy-ws.jnlp:3:89: Undeclared entity 'machineName'
    E:ovm_rasproxy-ws.jnlp:3:89: ';' expected
    Parse complete, 2 error(s) and 0 warning(s)
    JAVAWS OUTPUT
    $ javaws ovm_rasproxy-ws.jnlp
    netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)
    JAVAWS -VERBOSE OUTPUT
    $ javaws -verbose ovm_rasproxy-ws.jnlp
    No User level deployment.properties found.
    Starting security dialog thread
    JNLP file location: ovm_rasproxy-ws.jnlp
    Status: CONNECTED DOWNLOADED STARTED +(CONNECTED DOWNLOADED STARTED) @ ./ovm_rasproxy-ws.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    line: 2 <jnlp spec="1.0+" codebase="http://192.168.4.21:7001/ovm/rasproxy/"
    line: 3 href="ovm_rasproxy-ws.jnlp?vmachineId=0004fb0000060000046ffdb8a331ce21&machineName=mytestmachine">
    line: 4 <information>
    line: 5 <title>Oracle VM Remote Access Service</title>
    line: 6 <vendor>Oracle</vendor>
    line: 7 <homepage>http://support.oracle.com/</homepage>
    line: 8 </information>
    line: 9 <resources>
    line: 10
    line: 11 <j2se version="1.5+"
    line: 12 href="http://java.sun.com/products/autodl/j2se" />
    line: 13 <jar href="ovm_rasproxy-signed.jar" main="true" />
    line: 14 <jar href="OvmCoreApi.jar" />
    line: 15 <jar href="MgmtUtil.jar" />
    line: 16 <jar href="Odof.jar" />
    line: 17 <jar href="commons-logging-1.1.1.jar" />
    line: 18 </resources>
    line: 19
    line: 20
    line: 21 <application-desc main-class="com.oracle.ovm.ras.proxy.RasProxyApplet">
    line: 22 <argument>-server</argument>
    line: 23 <argument>192.168.4.21</argument>
    line: 24 <argument>-service</argument>
    line: 25 <argument>003600010004fb0000060000046ffdb8a331ce21</argument>
    line: 26
    line: 27 </application-desc>
    line: 28 <security>
    line: 29      <all-permissions/>
    line: 30 </security>
    line: 31 <update check="background"/>
    line: 32 </jnlp>               net.sourceforge.jnlp.ParseException: Invalid XML document syntax.
         at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:177)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:162)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:148)
         at net.sourceforge.jnlp.runtime.Boot.getFile(Boot.java:267)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:196)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
         at java.security.AccessController.doPrivileged(Native Method)
         at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
    Caused by: net.sourceforge.nanoxml.XMLParseException: XML Parse Exception during parsing of a jnlp element at line 32: Unexpected end of data reached
         at net.sourceforge.nanoxml.XMLElement.unexpectedEndOfData(XMLElement.java:1094)
         at net.sourceforge.nanoxml.XMLElement.readChar(XMLElement.java:877)
         at net.sourceforge.nanoxml.XMLElement.resolveEntity(XMLElement.java:1013)
         at net.sourceforge.nanoxml.XMLElement.scanString(XMLElement.java:658)
         at net.sourceforge.nanoxml.XMLElement.scanElement(XMLElement.java:915)
         at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:512)
         at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:464)
         at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1239)
         ... 8 more
    Caused by:
    net.sourceforge.nanoxml.XMLParseException: XML Parse Exception during parsing of a jnlp element at line 32: Unexpected end of data reached
         at net.sourceforge.nanoxml.XMLElement.unexpectedEndOfData(XMLElement.java:1094)
         at net.sourceforge.nanoxml.XMLElement.readChar(XMLElement.java:877)
         at net.sourceforge.nanoxml.XMLElement.resolveEntity(XMLElement.java:1013)
         at net.sourceforge.nanoxml.XMLElement.scanString(XMLElement.java:658)
         at net.sourceforge.nanoxml.XMLElement.scanElement(XMLElement.java:915)
         at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:512)
         at net.sourceforge.nanoxml.XMLElement.parseFromReader(XMLElement.java:464)
         at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1239)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:177)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:162)
         at net.sourceforge.jnlp.JNLPFile.<init>(JNLPFile.java:148)
         at net.sourceforge.jnlp.runtime.Boot.getFile(Boot.java:267)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:196)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
         at java.security.AccessController.doPrivileged(Native Method)
         at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
    netx: Unexpected net.sourceforge.jnlp.ParseException: Invalid XML document syntax. at net.sourceforge.jnlp.Parser.getRootNode(Parser.java:1243)

    Both realvnc 4.1.3 and tigervnc 1.1.0.1 work on the Linux side.
    I was able to get the console to work by wiping the contents of the directory I created at the beginning of this exercise and then copying in a fresh OVM 3.0.2 created ovm_rasproxy-ws.jnlp file.
    [gordon@ufo Downloads]$ rm /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/*
    [gordon@ufo Downloads]$ javaws ovm_rasproxy-ws.jnlp
    java.io.EOFException
         at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
         at java.io.DataInputStream.readUTF(DataInputStream.java:589)
         at java.io.DataInputStream.readUTF(DataInputStream.java:564)
         at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
         at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
         at java.security.KeyStore.load(KeyStore.java:1201)
         at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
         at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
         at net.sourceforge.jnlp.security.VariableX509TrustManager.<init>(VariableX509TrustManager.java:91)
         at net.sourceforge.jnlp.security.VariableX509TrustManager.getInstance(VariableX509TrustManager.java:395)
         at net.sourceforge.jnlp.runtime.JNLPRuntime.initialize(JNLPRuntime.java:210)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:182)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
         at java.security.AccessController.doPrivileged(Native Method)
         at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
    netx: Unexpected java.io.IOException: /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ovm_rasproxy-ws.jnlp (No such file or directory) at net.sourceforge.jnlp.JNLPFile.openURL(JNLPFile.java:255)
    [gordon@ufo Downloads]$ cp ovm_rasproxy-ws.jnlp /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/
    [gordon@ufo Downloads]$ javaws ovm_rasproxy-ws.jnlp
    java.io.EOFException
         at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
         at java.io.DataInputStream.readUTF(DataInputStream.java:589)
         at java.io.DataInputStream.readUTF(DataInputStream.java:564)
         at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
         at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
         at java.security.KeyStore.load(KeyStore.java:1201)
         at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
         at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
         at net.sourceforge.jnlp.security.VariableX509TrustManager.<init>(VariableX509TrustManager.java:91)
         at net.sourceforge.jnlp.security.VariableX509TrustManager.getInstance(VariableX509TrustManager.java:395)
         at net.sourceforge.jnlp.runtime.JNLPRuntime.initialize(JNLPRuntime.java:210)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:182)
         at net.sourceforge.jnlp.runtime.Boot.run(Boot.java:56)
         at java.security.AccessController.doPrivileged(Native Method)
         at net.sourceforge.jnlp.runtime.Boot.main(Boot.java:173)
    java.io.EOFException
         at java.io.DataInputStream.readUnsignedShort(DataInputStream.java:340)
         at java.io.DataInputStream.readUTF(DataInputStream.java:589)
         at java.io.DataInputStream.readUTF(DataInputStream.java:564)
         at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:744)
         at sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:55)
         at java.security.KeyStore.load(KeyStore.java:1201)
         at net.sourceforge.jnlp.security.KeyStores.createKeyStoreFromFile(KeyStores.java:358)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:124)
         at net.sourceforge.jnlp.security.KeyStores.getKeyStore(KeyStores.java:103)
         at net.sourceforge.jnlp.security.KeyStores.getCertKeyStores(KeyStores.java:157)
         at net.sourceforge.jnlp.tools.JarSigner.checkTrustedCerts(JarSigner.java:414)
         at net.sourceforge.jnlp.tools.JarSigner.verifyJars(JarSigner.java:269)
         at net.sourceforge.jnlp.runtime.JNLPClassLoader.verifyJars(JNLPClassLoader.java:946)
         at net.sourceforge.jnlp.runtime.JNLPClassLoader.initializeResources(JNLPClassLoader.java:422)
         at net.sourceforge.jnlp.runtime.JNLPClassLoader.<init>(JNLPClassLoader.java:169)
         at net.sourceforge.jnlp.runtime.JNLPClassLoader.getInstance(JNLPClassLoader.java:283)
         at net.sourceforge.jnlp.Launcher.createApplication(Launcher.java:650)
         at net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:436)
         at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:830)
    Oct 4, 2011 4:13:41 PM com.oracle.ovm.ras.proxy.RasProxyApplet main
    INFO: Server : 192.168.4.16
    Oct 4, 2011 4:13:41 PM com.oracle.ovm.ras.proxy.RasProxyApplet main
    INFO: service id : 003600010004fb0000060000281734f86e6aab47
    Oct 4, 2011 4:13:42 PM com.oracle.ovm.ras.proxy.external.VncViewerLauncherFactory getVncViewerLauncher
    INFO: Os is : linux
    Oct 4, 2011 4:13:53 PM com.oracle.ovm.ras.proxy.ProxyThread setupSSL
    INFO: DONE SSL Handshaking
    The console starts and all is well with the world.
    This is obviously not how one would want to start a console by downloading the .jnlp file and running it on the command line so I am now going to remove the /home/gordon/.icedtea/cache/http/* and see what happens.
    First, let me say that nothing happened. It did not work. I did confirm that it creates the directory structure again /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ but there is only one file in the directory.
    [gordon@ufo rasproxy]$ cat ovm_rasproxy-ws.jnlp.info
    #automatically generated - do not edit
    #Tue Oct 04 16:43:29 EDT 2011
    last-modified=0
    last-updated=1317761009801
    content-length=883
    If I save that ovm_rasproxy-ws.jnlp file instead of opening it and copy it to the /home/gordon/.icedtea/cache/http/192.168.4.16/ovm/rasproxy/ directory the console will now start successfully with one minor drawback - it will only launch that one VM based on the .jnlp file that I downloaded.
    Help?

  • Working with Application Service

    hi 
                     i have been working  CAF some time ,  and iam facing problem
             when  iam working with Application Service in CAF  , 
                               while using the entity service
           CURD operations in the  Application service .
                 can any one please  send me a simple scenario   for working with     
             Application Service using Entity Service Curd operations .
            and  a  simple  Query  ,  is the create  operation  entity service  is used for
                      inserting  .

    Hello Murali,
      Yes you would use the create operation to insert a new object of your entity. there are tutorials that will show this in detail
    SAP Composite Application Framework - CAF Tutorial Center [original link is broken]
    The steps you need to do are the following
    1. Define your entity as a dependency in your application service.
    2. create an operation on the application service
    3. you will get a handle to the entities operation by simple calling the this.getxxxService() where xxx is the name of your entity.
    Hope that helps
    Abdul
    Message was edited by:
            Abdul Razack

  • Working with Object Relational model and Eclipse

    Hello,
    I have mad some types and typed tables in a schema on oracle 10g.
    My database respects the Object Relational model, in which I work with VARRAY, TYPES, NESTED TABLES, PL/SQL,...
    I have already install Enterprise Pack for Eclipse, and also have the Weblogic server, And I can generate tables. But the problem is that it gives to me this tables with wrong types, until they contains in fact other tables as Objet column, and also the types are not supported.
    Please need a help !
    Thank's in advance :)

    nhauge wrote:
    Hi,
    I want to make sure I understand the problem but will try to give you some information as well. So you have an Oracle 10g database in which you are using the object-relational database model with VARRAY's, etc. You say you are also trying to generate tables, but the generation is not working correctly. Are you using the "Generate tables from entities..." functionality? What is the source of the generated tables? I assume you generating from some type of JPA entity? Could you give a small example of the source you are generating from?
    In order to generate proper tables of this type, you would need to be using special TopLink/EclipseLink annotations such as @Array so the persistence provider would know that they are "special" and not just regular entities that would create standard relational tables.
    Neil
    Thank you for your replay,
    well I'm generating that with "Generate tables from entities" of eclipse link.
    this is an example of what I have in the database:
    [DB-SCRIPT|http://www.mediafire.com/view/?n3knwz1o4ggk50n]
    and this is what is generated(eclipselink-orm.xml):
    <?xml version="1.0" encoding="UTF-8"?>
    <entity-mappings version="1.2" xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eclipse.org/eclipselink/xsds/persistence/orm http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_1_2.xsd">
         <entity class="model.Chefterritoire" access="VIRTUAL">
              <attributes>
                   <id name="idChef" attribute-type="long">
                        <column name="ID_CHEF"/>
                   </id>
                   <basic name="lesterritoires" attribute-type="Object">
                   </basic>
                   <basic name="nomChef" attribute-type="String">
                        <column name="NOM_CHEF"/>
                   </basic>
                   <basic name="tel" attribute-type="java.math.BigDecimal">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Client" access="VIRTUAL">
              <attributes>
                   <id name="idClient" attribute-type="long">
                        <column name="ID_CLIENT"/>
                   </id>
                   <basic name="adresseClient" attribute-type="String">
                        <column name="ADRESSE_CLIENT"/>
                   </basic>
                   <basic name="dateP" attribute-type="java.util.Date">
                        <column name="DATE_P"/>
                        <temporal>DATE</temporal>
                   </basic>
                   <basic name="lescommandes" attribute-type="Object">
                   </basic>
                   <basic name="nomClient" attribute-type="String">
                        <column name="NOM_CLIENT"/>
                   </basic>
                   <basic name="profession" attribute-type="String">
                   </basic>
                   <basic name="refrepresentant" attribute-type="Object">
                   </basic>
                   <basic name="telClient" attribute-type="java.math.BigDecimal">
                        <column name="TEL_CLIENT"/>
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Commande" access="VIRTUAL">
              <attributes>
                   <id name="idCommande" attribute-type="long">
                        <column name="ID_COMMANDE"/>
                   </id>
                   <basic name="dateCommande" attribute-type="java.util.Date">
                        <column name="DATE_COMMANDE"/>
                        <temporal>DATE</temporal>
                   </basic>
                   <basic name="dateLivraison" attribute-type="java.util.Date">
                        <column name="DATE_LIVRAISON"/>
                        <temporal>DATE</temporal>
                   </basic>
                   <basic name="refreleve" attribute-type="Object">
                   </basic>
                   <basic name="refrepresentant" attribute-type="Object">
                   </basic>
                   <basic name="refvehicule" attribute-type="Object">
                   </basic>
                   <basic name="reprise" attribute-type="String">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Constructeur" access="VIRTUAL">
              <attributes>
                   <id name="idConstructeur" attribute-type="long">
                        <column name="ID_CONSTRUCTEUR"/>
                   </id>
                   <basic name="adresseConstructeur" attribute-type="String">
                        <column name="ADRESSE_CONSTRUCTEUR"/>
                   </basic>
                   <basic name="lesreleves" attribute-type="Object">
                   </basic>
                   <basic name="nomConstructeur" attribute-type="String">
                        <column name="NOM_CONSTRUCTEUR"/>
                   </basic>
                   <basic name="refvehucule" attribute-type="Object">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.LesccommandesN" access="VIRTUAL">
              <table name="LESCCOMMANDES_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.LescommandessN" access="VIRTUAL">
              <table name="LESCOMMANDESS_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.LescommandesN" access="VIRTUAL">
              <table name="LESCOMMANDES_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.LesoptionsN" access="VIRTUAL">
              <table name="LESOPTIONS_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.LesrepresentantsN" access="VIRTUAL">
              <table name="LESREPRESENTANTS_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.LessclientsN" access="VIRTUAL">
              <table name="LESSCLIENTS_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.LesscommandesN" access="VIRTUAL">
              <table name="LESSCOMMANDES_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.LesterritoiresN" access="VIRTUAL">
              <table name="LESTERRITOIRES_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.LesvehiculesN" access="VIRTUAL">
              <table name="LESVEHICULES_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.Modele" access="VIRTUAL">
              <attributes>
                   <id name="idModele" attribute-type="long">
                        <column name="ID_MODELE"/>
                   </id>
                   <basic name="couleurExterieure" attribute-type="String">
                        <column name="COULEUR_EXTERIEURE"/>
                   </basic>
                   <basic name="couleurInterieure" attribute-type="String">
                        <column name="COULEUR_INTERIEURE"/>
                   </basic>
                   <basic name="lesoptions" attribute-type="Object">
                   </basic>
                   <basic name="lesvehicules" attribute-type="Object">
                   </basic>
                   <basic name="prix" attribute-type="double">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Option" access="VIRTUAL">
              <table name="OPTIONS"/>
              <attributes>
                   <id name="idOption" attribute-type="long">
                        <column name="ID_OPTION"/>
                   </id>
                   <basic name="nomOption" attribute-type="String">
                        <column name="NOM_OPTION"/>
                   </basic>
                   <basic name="refmodele" attribute-type="Object">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Rapportvisite" access="VIRTUAL">
              <attributes>
                   <id name="idRapport" attribute-type="long">
                        <column name="ID_RAPPORT"/>
                   </id>
                   <basic name="dateVisite" attribute-type="java.util.Date">
                        <column name="DATE_VISITE"/>
                        <temporal>DATE</temporal>
                   </basic>
                   <basic name="frais" attribute-type="double">
                   </basic>
                   <basic name="refclient" attribute-type="Object">
                   </basic>
                   <basic name="refrepresentant" attribute-type="Object">
                   </basic>
                   <basic name="resultat" attribute-type="String">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Releve" access="VIRTUAL">
              <attributes>
                   <id name="idReleve" attribute-type="long">
                        <column name="ID_RELEVE"/>
                   </id>
                   <basic name="dateDebut" attribute-type="java.util.Date">
                        <column name="DATE_DEBUT"/>
                        <temporal>DATE</temporal>
                   </basic>
                   <basic name="dateFin" attribute-type="java.util.Date">
                        <column name="DATE_FIN"/>
                        <temporal>DATE</temporal>
                   </basic>
                   <basic name="lescommandes" attribute-type="Object">
                   </basic>
                   <basic name="refconst" attribute-type="Object">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.RelevesN" access="VIRTUAL">
              <table name="RELEVES_N"/>
              <attributes>
              </attributes>
         </entity>
         <entity class="model.Remise" access="VIRTUAL">
              <attributes>
                   <id name="idRemise" attribute-type="long">
                        <column name="ID_REMISE"/>
                   </id>
                   <basic name="remise" attribute-type="double">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Representant" access="VIRTUAL">
              <attributes>
                   <id name="idRepresentant" attribute-type="long">
                        <column name="ID_REPRESENTANT"/>
                   </id>
                   <basic name="lesclients" attribute-type="Object">
                   </basic>
                   <basic name="lescommandes" attribute-type="Object">
                   </basic>
                   <basic name="nomRepresentant" attribute-type="String">
                        <column name="NOM_REPRESENTANT"/>
                   </basic>
                   <basic name="refterritoire" attribute-type="Object">
                   </basic>
                   <basic name="typeRep" attribute-type="String">
                        <column name="TYPE_REP"/>
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Territoire" access="VIRTUAL">
              <attributes>
                   <id name="idTerritoire" attribute-type="long">
                        <column name="ID_TERRITOIRE"/>
                   </id>
                   <basic name="lesrepresentants" attribute-type="Object">
                   </basic>
                   <basic name="nomTerritoire" attribute-type="String">
                        <column name="NOM_TERRITOIRE"/>
                   </basic>
                   <basic name="refchef" attribute-type="Object">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Vehicule" access="VIRTUAL">
              <attributes>
                   <id name="idVehicule" attribute-type="long">
                        <column name="ID_VEHICULE"/>
                   </id>
                   <basic name="lescommandes" attribute-type="Object">
                   </basic>
                   <basic name="nomVehicule" attribute-type="String">
                        <column name="NOM_VEHICULE"/>
                   </basic>
                   <basic name="refavoir" attribute-type="Object">
                   </basic>
                   <basic name="refmodele" attribute-type="Object">
                   </basic>
              </attributes>
         </entity>
         <entity class="model.Visiteav" access="VIRTUAL">
              <attributes>
                   <id name="idVisiteav" attribute-type="long">
                        <column name="ID_VISITEAV"/>
                   </id>
                   <basic name="dateDebut" attribute-type="java.util.Date">
                        <column name="DATE_DEBUT"/>
                        <temporal>DATE</temporal>
                   </basic>
                   <basic name="dateFin" attribute-type="java.util.Date">
                        <column name="DATE_FIN"/>
                        <temporal>DATE</temporal>
                   </basic>
                   <basic name="refclient" attribute-type="Object">
                   </basic>
                   <basic name="refrepresentant" attribute-type="Object">
                   </basic>
              </attributes>
         </entity>
    </entity-mappings>

Maybe you are looking for

  • Error while launching the Relay Server Outbound Enabler for Afaria SP05 components

    Hi Experts, Appreciate your support. I am facing an issue at RSOE side while i run the below script: rsoe -cr <param> -f <farm> -id <id>  - (To launch the RSOE) which after editing turns our to be rsoe.exe -cr "host=bpromobrle100.dmz.nwc;port=80;url_

  • Tax Code field in Cash journal

    Dear All, Can Tax Code field be activated in Cash Journal . If yes how? Useful answers will be rewarded with points. Regards Milind Nair

  • Applying personalization to multiple responsibilities

    Hi, We have personalized some Standard R12 pages. Is there a way to make the personalizations available to multiple reposnibilities without having to login to each responsibility and makie the changes manually? In Oracle forms personaliation we have

  • Changing script to smartforms fro chk priniting

    Hi , I have to do a check priniting using the F110 transaction. We were previously using a Script but then as per one requireemnt where in the number was to displayed in a white colour in a black box ;as this functionality cannot be acheived using th

  • Availability reporting or EWA availbilty data

    Dear all, I need some information about the availabitliy report of a system, urgently.  In my EWA report , the availability of a particular system is showing as 40%, but my system was not down. I do understand the availabilty report calculates the av