Unable to load the XML Report

Hi,
I am using TestStand 3.1. Someone before me has developped a lot of things in our application : specific steps, specific process model, ... . Now this person is not here anymore and I have a test report display problem.
After an execution, the execution window cannot display the test report and displays the following message :
"Unable to load the XML Report.
At line 285 End tag 'NOBR' does not match the start tag 'BR'."
Also with Internet Explorer, the test report cannot be displayed (and he locates the error at lign 287) .
Needless to say that I am a poor guy in XML code that's why I am asking you some help.
But, I opened the .xml with a text editor and that is the part of the code which causes the problem :
284 </Prop>
285 <BLOCKQUOTE>
286 <H5><NOBR>Begin Sequence: MainSequence
287 <BR>(X:\DATA_Utilisateur\Florian DENEVE\04_GENERIC\GenericTestMainSeq\GenericTestMainSeq.seq)<BR></BR></H5>
288 <table BORDERCOLOR=#000000 FRAME=BOX RULES=ALL WIDTH=70%><TBODY>
(please, be careful with the lines numbers, because i don't think that IE and TestStand have the same numbering)
I don't know if it's a problem of basic TestStand or if it's due to the new process model and modifications realized by my previous colleague.
Any ideas ?
Thanks in advance for your help.

Ok, here they are.
There is a file called Addons.cfg.sources but I had to rename it to get it to attach
Attachments:
Addons.cfg.sources.txt ‏1 KB
Addons.cfg ‏53 KB
ResultProcessing.cfg ‏189 KB

Similar Messages

  • Unable to Load the XML data file in to RTF template

    Hi Team,
    We are working on the XML publisher reports,where the xml data is containing the Japanese Characters.
    I am facing an error while loading my xml data which has the japanese characters values in between the XML tags into the RTF Template.Though i have installed Japan fonts in my system,still unable to load the data.
    Could any one please help me out in this regard.
    Thanks in Advance.

    Hi;
    Hi please clearfy below question for can make you fast help
    1. What is your OS?
    2. What is your EBS verison?
    3. What is your DB version and Db character set?
    Also check:
    About Oracle XML Publisher Release 5.6.3 [ID 422508.1]
    Regard
    Helios

  • Unable to load the package as XML because of package does not have a valid XML format

    I have SSIS package and I would like to let SQL Server Agent Job to run it.
    However I get Unable to load the package as XML because of package does not have a valid XML format
    What could be wrong?
    Kenny_I

    Hi Kenny,
    What's the version of your SSIS? Please refer to the following methods to solve this issue:
    Hard code the path of SQL Server 2008's DTEXEC while calling the SSIS package as shown below:
    C:\Program Files\Microsoft SQL Server\100\DTS\Binn\DTEXEC.exe /F "D:\MyFolder\MyPackage.dtsx"
    Rename the old exe in the 2005 path to a different name (Example:- C:\Program Files\Microsoft SQL Server\90\DTS\Binn\DTEXEC_Old.exe)
    Go to PATH environmental variable and edit it in such a way that "C:\Program Files\Microsoft SQL Server\100\DTS\Binn" path appears well before the "C:\Program Files\Microsoft SQL Server\90\DTS\Binn" path.
    For more detail information, please refer to the blog below:
    Failed to open package file due to error 0x80070020. The process cannot access the file because it is being used by another process. This happens when loading a package and the file cannot be opened or loaded correctly into the XML document:
    http://blogs.msdn.com/b/ramoji/archive/2009/08/28/failed-to-open-package-file-due-to-error-0x80070020-the-process-cannot-access-the-file-because-it-is-being-used-by-another-process-this-happens-when-loading-a-package-and-the-file-cannot-be-opened-or-loaded-correctly-into-the.aspx
    A similar thread about this topic for your reference:
    http://social.technet.microsoft.com/Forums/en-US/b2987df5-8c9b-4797-bdce-b9ec308731f6/i-am-getting-error-when-running-ssis-package-using-sql-server-agent-error-description-is-unable-to?forum=sqlintegrationservices
    If you have any feedback on our support, please click
    here.
    Elvis Long
    TechNet Community Support

  • HT204053 does the icloud service work in middle east(lebanon) area or just in USA?coz it isn't working on my mac;it logs in,but when clicking any category like calendar,mail or find my iPhone,it tells"service unable to load,send a report..."

    does the icloud service work in middle east(lebanon) area or just in USA?coz it isn't working on my mac;it logs in,but when clicking any category like calendar,mail or find my iPhone,it tells"service unable to load,send a report..."..... so, the problem is..????

    Wow, just posting and it seems that there is a solution that is working for me...
    What I've did is I turned off iTunes Match on my iPhone, then turned in on again. Now in my iTunes library on my mac I can get the duplicates to be matched or uploaded to iCloud with a right-click, add to iCloud. iTunes Match starts to check the songs and everything is done correctly. Pretty nice!

  • Unable to load any XML from JAR - Please help!!

    Hi All,
    I am a student in the final days of my degree. I have been working on my final project for some time now, an applet which converts input text to a signal plot for line encoding schemes - AMI, NRZ etc. It is pretty much finished, but one small bug threatens to scuttle the entire project! I have been searching the web all day long for answers with little success, and as the castor forum still appears to be down I am posting here. Any suggestions or advice would be greatly appreciated.
    The applet uses the castor databinding framework to load various XML data. I am using Eclipse 3.01 for development - when the program is run locally as an applet, everything works fine. When the program is bundled into a JAR file and nested into a clean folder with a html page and the jar file, when the command to read in XML is given, a NullPointerException occurs, indicating that castor was unable to access the XML files.
    Below is one of the methods used to make castor load XML data:
         public CodeSet loadCodeXML(String _codesetFilename)
              String _mappingURI = "schema/codes/codesets-mapping.xml";
              String _codesetURI = "schema/codes/" + _codesetFilename;
                    // Create a new Castor mapping object
              Mapping mapping = new Mapping();                         
            try                                                                 // Attempt to load in the selected XML character set
                 mapping.loadMapping(_mappingURI);                    // Initialize 'mapping' with the map file
                Unmarshaller unmar = new Unmarshaller(mapping); // Create a new XML Unmarshaller that uses 'mapping'
                // The line below creates a new CharSet object called _codeset and populates it with the XML data
                CodeSet _codeset = (CodeSet)unmar.unmarshal(new InputSource(new FileReader(_codesetURI)));
                // The character set was successfully loaded, so pass new CharSet object back to caller and end
                return _codeset;
            } catch (Exception e) {
                 // If an error occurs while extracting the XML data, this block will execute:
                JOptionPane.showMessageDialog(null, e);               // Display a message dialog containing the exception error
                return null;                                             // Do not return a CharSet object to caller
         }It would seem to me the problem lies within
              String _mappingURI = "schema/codes/codesets-mapping.xml";
              String _codesetURI = "schema/codes/" + _codesetFilename;I have read that files inside a JAR can be accessed in this way ( http://archive.codehaus.org/castor/user/msg00025.html ) but it won't appear to work.
    If these are set to a full system path (outside any JAR) i.e. "/home/me/proj/schema/codes/codesets-mapping.xml", the application operates fine. Clearly this is no good however, as the XML data must reside within the JAR package. I have tried many permutations such as "jar://schema/..." , "/schema/..", "schema/..", with no success. I have read of using InputStream and getResource methods to access files within the jar but have had no success. I have checked the schema dir is being put into the JAR archive.
    Could anyone suggest an appropriate way of loading XML files from within a JAR file in this context?
    Thanks in advance for any replies.

    Hi, me again..
    Re: mr_doghead - the filename of the file is passed from the calling function
    public CodeSet loadCodeXML(String _codesetFilename)eg loadCodeXML(ami.xml) will return a CodeSet object containing the ami xml data
    Anyway, I've manged to fix it up. The problem actually lies within castor, not my code at all. This is a known bug in castor that the dev's deemed 'not important' to fix, but I have to say the work around is EXTREMLY poorly documented online. Hence, this post is just to say how to fix it up if ne1 else is having trouble...
    To load mappings, use:
    mapping.loadMapping(getClass().getResource(_mappingURI).toString());where _mappingURI is a string such as "/xml/mapfile.xml"
    However, the unmarshalling method takes in a file object, so getResourceAsStream must be used:
    CharSet _charset = (CharSet)unmar.unmarshal(new InputSource(getClass().getResourceAsStream(_charsetURI)));Where CharSet is your custom object you are marshalling into, and _charsetURI is a relative path to your xml file.
    Ugly as hell? Very.
    Does it work? Perfectly.
    take it ez guys, time for me to go hand this sht in! ;D

  • The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.

    Hi Guys,
    I am creating the library using object model with custom content type.  When i am opening document from custom content type, the meta data fields are not displaying in the document and throwing below error.
    The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.
    Document Information Panel cannot open a new form.
    The form contains schema validation errors.
    Content for element '{http://schemas.microsoft.com/office/2006/metadata/propertiesRoot}properties' is incomplete according to the DTD/Schema.
    Expecting: {http://schemas.microsoft.com/office/2006/metadata/properties}properties.
    But after saving the document, then meta data is enabled.
    Thanks in advance for suggested solutions.
    thanks
    Santhosh G

    Hi,
    For a better troubleshooting, I suggest to do as follows:
    1. Please try to update the Location column's schema by following the steps below.
     1) Go to Site Settings -> "Site Columns"
     2) Click on "Location", after the page is opened. Don't modify any settings, click "OK"  to forcibly update the field's schema.
    2. Re-edit the document information panel template to see if the issue still occurs.
    Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
    3. Here are some similar links about your issue, please take some time to look at them:
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomizationlegacy/thread/243b4852-3f17-4a3a-b6d7-187d65a5f088/
    http://blogs.msdn.com/b/raresm/archive/2010/03/30/document-information-panel-cannot-open-the-form.aspx
    https://joranmarkx.wordpress.com/2012/02/10/sharepoint-document-information-panel-cannot-create-a-new-blank-form/
    If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
    Apply-Fix -siteUrl "http://your site URL "
    function Apply-Fix($siteUrl)
    clear
    Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
    [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
    foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
    Write-Host "Checking Web: " $spwTarget.Url
    $list = $spwTarget.Lists["your library name"]
    $fields = $list.fields
    foreach($field in $fields)
    if($field.SourceId -eq '{$ListId:your library name;}')
    $schemaxml = $field.SchemaXML
    $schemaxmldata = [xml]$schemaxml
    $schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
    $schemaxml = $schemaxmldata.get_InnerXml()
    $field.SchemaXML = $schemaxml
    $field.Update()
    Write-Host "Fixed" $field.Title "field in the library"
    Write-Host "Done."
    More information:
    SharePoint 2010: Creating a Custom Content Type using Visual Studio
    http://www.codeproject.com/Articles/410880/SharePoint-Creating-a-Custom-Content-Type-usi
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Dennis Guo
    TechNet Community Support

  • Unable to load the dll essapinu.dll (Integration Of essbase and OBI)

    Hi,
    I am facing an issue in generating the Hyperion-Essbase report in OBI presentation service.
    I have integrated essbase DB in OBI RPD and after that I dragged the catalogs of Essbase to BMM-->PL.Then made the consistency check and till this point its perfect.
    After that I restarted the service.Then opened the Essbase Subject area through Answers and pulled a column from Essbase table in Answers->Criteria window.But when I click the get Result button, automatically my OBI Server is getting stopped and in Server Log I am getting the following error report :
    36007 Loading repository D:\OracleBI\server\Repository\OracleBIAnalyticsApps.rpd.
    2009-10-08 18:57:43
    14055 Loading subject area: Core ...
    2009-10-08 18:57:43
    14055 Loading subject area: Usage Tracking ...
    2009-10-08 18:57:43
    14056 Finished loading subject area: Usage Tracking.
    2009-10-08 18:57:43
    14055 Loading subject area: ABC Plan ...
    2009-10-08 18:57:44
    14056 Finished loading subject area: ABC Plan.
    2009-10-08 18:58:06
    14056 Finished loading subject area: Core.
    2009-10-08 18:58:06
    nQSError: 43059 Init block 'SUB_VAR_BLOCK_10.12.68.37': Dynamic refresh of repository scope variables has failed.
    The specified module could not be found.
    **nQSError: 36001 Unable to load the dll essapinu.dll.**
    Please help me in resolving the Issue.
    Thanks.

    Which version of OBIEE? Which Essbase components are installed on the OBI machine which opnes the connection to the Essbase server? You need at least a 9.3.1 client.
    Cheers,
    C.

  • [Solved] Problem with Xorg, unable to load the right keymap

    Hi, people,
    I recently installed arch on a desktop, but there is a problem installing X: for whatever reason, Xorg seems unable to load the correct keymap (fr-latin9) and instead, loads the default one.
    I can see what seems to be the problem in the Xorg logs, but I actually absolutely don't know how to solve it. Here my /var/log/Xorg.0.log
    root@kgentoo keikoz # cat /mnt/tmp/var/log/Xorg.0.log
    [ 9.900]
    X.Org X Server 1.12.4
    Release Date: 2012-08-27
    [ 9.900] X Protocol Version 11, Revision 0
    [ 9.900] Build Operating System: Linux 3.4.8-1-ARCH x86_64
    [ 9.900] Current Operating System: Linux kdesktop 3.4.9-1-ARCH #1 SMP PREEMPT Wed Aug 15 18:59:31 CEST 2012 x86_64
    [ 9.901] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=7d2d3ed4-6903-4845-b70d-9462f52f4329 ro quiet
    [ 9.901] Build Date: 27 August 2012 08:04:39AM
    [ 9.901]
    [ 9.901] Current version of pixman: 0.26.2
    [ 9.901] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 9.901] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 9.901] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Sep 26 16:32:35 2012
    [ 9.950] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 9.967] (==) No Layout section. Using the first Screen section.
    [ 9.967] (==) No screen section available. Using defaults.
    [ 9.967] (**) |-->Screen "Default Screen Section" (0)
    [ 9.967] (**) | |-->Monitor "<default monitor>"
    [ 9.969] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 9.969] (==) Automatically adding devices
    [ 9.969] (==) Automatically enabling devices
    [ 10.002] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 10.002] Entry deleted from font path.
    [ 10.006] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 10.007] Entry deleted from font path.
    [ 10.007] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 10.007] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 10.007] Entry deleted from font path.
    [ 10.007] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 10.007] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 10.007] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 10.007] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 10.007] (II) Loader magic: 0x7c8b00
    [ 10.007] (II) Module ABI versions:
    [ 10.007] X.Org ANSI C Emulation: 0.4
    [ 10.007] X.Org Video Driver: 12.1
    [ 10.007] X.Org XInput driver : 16.0
    [ 10.007] X.Org Server Extension : 6.0
    [ 10.008] (--) PCI:*(0:3:0:0) 10de:0141:107d:200d rev 162, Mem @ 0xcc000000/67108864, 0xd0000000/268435456, 0xcb000000/16777216, BIOS @ 0x????????/131072
    [ 10.008] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 10.008] (II) LoadModule: "extmod"
    [ 10.018] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 10.033] (II) Module extmod: vendor="X.Org Foundation"
    [ 10.033] compiled for 1.12.4, module version = 1.0.0
    [ 10.033] Module class: X.Org Server Extension
    [ 10.033] ABI class: X.Org Server Extension, version 6.0
    [ 10.033] (II) Loading extension MIT-SCREEN-SAVER
    [ 10.033] (II) Loading extension XFree86-VidModeExtension
    [ 10.033] (II) Loading extension XFree86-DGA
    [ 10.033] (II) Loading extension DPMS
    [ 10.033] (II) Loading extension XVideo
    [ 10.033] (II) Loading extension XVideo-MotionCompensation
    [ 10.033] (II) Loading extension X-Resource
    [ 10.033] (II) LoadModule: "dbe"
    [ 10.033] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 10.034] (II) Module dbe: vendor="X.Org Foundation"
    [ 10.034] compiled for 1.12.4, module version = 1.0.0
    [ 10.034] Module class: X.Org Server Extension
    [ 10.034] ABI class: X.Org Server Extension, version 6.0
    [ 10.034] (II) Loading extension DOUBLE-BUFFER
    [ 10.034] (II) LoadModule: "glx"
    [ 10.034] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 11.016] (II) Module glx: vendor="NVIDIA Corporation"
    [ 11.016] compiled for 4.0.2, module version = 1.0.0
    [ 11.016] Module class: X.Org Server Extension
    [ 11.016] (II) NVIDIA GLX Module 304.37 Wed Aug 8 20:16:03 PDT 2012
    [ 11.016] (II) Loading extension GLX
    [ 11.016] (II) LoadModule: "record"
    [ 11.016] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 11.026] (II) Module record: vendor="X.Org Foundation"
    [ 11.026] compiled for 1.12.4, module version = 1.13.0
    [ 11.026] Module class: X.Org Server Extension
    [ 11.026] ABI class: X.Org Server Extension, version 6.0
    [ 11.026] (II) Loading extension RECORD
    [ 11.026] (II) LoadModule: "dri"
    [ 11.026] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 11.049] (II) Module dri: vendor="X.Org Foundation"
    [ 11.049] compiled for 1.12.4, module version = 1.0.0
    [ 11.049] ABI class: X.Org Server Extension, version 6.0
    [ 11.049] (II) Loading extension XFree86-DRI
    [ 11.049] (II) LoadModule: "dri2"
    [ 11.050] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 11.050] (II) Module dri2: vendor="X.Org Foundation"
    [ 11.050] compiled for 1.12.4, module version = 1.2.0
    [ 11.050] ABI class: X.Org Server Extension, version 6.0
    [ 11.050] (II) Loading extension DRI2
    [ 11.051] (==) Matched nouveau as autoconfigured driver 0
    [ 11.051] (==) Matched nvidia as autoconfigured driver 1
    [ 11.051] (==) Matched nv as autoconfigured driver 2
    [ 11.051] (==) Matched vesa as autoconfigured driver 3
    [ 11.051] (==) Matched fbdev as autoconfigured driver 4
    [ 11.051] (==) Assigned the driver to the xf86ConfigLayout
    [ 11.051] (II) LoadModule: "nouveau"
    [ 11.059] (WW) Warning, couldn't open module nouveau
    [ 11.059] (II) UnloadModule: "nouveau"
    [ 11.059] (II) Unloading nouveau
    [ 11.059] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 11.059] (II) LoadModule: "nvidia"
    [ 11.060] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 11.274] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 11.274] compiled for 4.0.2, module version = 1.0.0
    [ 11.274] Module class: X.Org Video Driver
    [ 11.300] (II) LoadModule: "nv"
    [ 11.301] (WW) Warning, couldn't open module nv
    [ 11.301] (II) UnloadModule: "nv"
    [ 11.301] (II) Unloading nv
    [ 11.301] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 11.301] (II) LoadModule: "vesa"
    [ 11.301] (WW) Warning, couldn't open module vesa
    [ 11.301] (II) UnloadModule: "vesa"
    [ 11.301] (II) Unloading vesa
    [ 11.301] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 11.301] (II) LoadModule: "fbdev"
    [ 11.302] (WW) Warning, couldn't open module fbdev
    [ 11.302] (II) UnloadModule: "fbdev"
    [ 11.302] (II) Unloading fbdev
    [ 11.302] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 11.302] (II) NVIDIA dlloader X Driver 304.37 Wed Aug 8 19:54:47 PDT 2012
    [ 11.302] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 11.303] (++) using VT number 7
    [ 11.317] (II) Loading sub module "fb"
    [ 11.317] (II) LoadModule: "fb"
    [ 11.317] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 11.330] (II) Module fb: vendor="X.Org Foundation"
    [ 11.330] compiled for 1.12.4, module version = 1.0.0
    [ 11.330] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.330] (II) Loading sub module "wfb"
    [ 11.330] (II) LoadModule: "wfb"
    [ 11.331] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 11.347] (II) Module wfb: vendor="X.Org Foundation"
    [ 11.347] compiled for 1.12.4, module version = 1.0.0
    [ 11.347] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.347] (II) Loading sub module "ramdac"
    [ 11.347] (II) LoadModule: "ramdac"
    [ 11.347] (II) Module "ramdac" already built-in
    [ 11.366] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 11.366] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 11.366] (==) NVIDIA(0): RGB weight 888
    [ 11.366] (==) NVIDIA(0): Default visual is TrueColor
    [ 11.366] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 11.367] (**) NVIDIA(0): Enabling 2D acceleration
    [ 13.308] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 13.308] (II) NVIDIA(GPU-0): Vision stereo.
    [ 13.311] (II) NVIDIA(0): NVIDIA GPU GeForce 6600 (NV43) at PCI:3:0:0 (GPU-0)
    [ 13.312] (--) NVIDIA(0): Memory: 262144 kBytes
    [ 13.312] (--) NVIDIA(0): VideoBIOS: 05.43.02.64.68
    [ 13.312] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 13.312] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 13.312] (--) NVIDIA(0): Valid display device(s) on GeForce 6600 at PCI:3:0:0
    [ 13.312] (--) NVIDIA(0): CRT-0
    [ 13.312] (--) NVIDIA(0): CRT-1
    [ 13.312] (--) NVIDIA(0): TV-0
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0) (connected)
    [ 13.312] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): TV-0: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): TV encoder: (null)
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0): 155.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0): Internal Single Link TMDS
    [ 13.312] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 13.312] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 13.312] (**) NVIDIA(0): been enabled on all display devices.)
    [ 13.312] (==) NVIDIA(0):
    [ 13.312] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 13.312] (==) NVIDIA(0): will be used as the requested mode.
    [ 13.312] (==) NVIDIA(0):
    [ 13.312] (II) NVIDIA(0): Validated MetaModes:
    [ 13.313] (II) NVIDIA(0): "DFP-0:nvidia-auto-select"
    [ 13.313] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    [ 13.314] (WW) NVIDIA(0): Unable to support custom viewPortOut 1280 x 720 +0 +152
    [ 13.328] (--) NVIDIA(0): DPI set to (85, 86); computed from "UseEdidDpi" X config
    [ 13.328] (--) NVIDIA(0): option
    [ 13.328] (--) Depth 24 pixmap format is 32 bpp
    [ 13.338] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 13.338] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 13.338] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 13.338] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 13.338] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 13.338] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 13.338] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 13.338] (II) NVIDIA(0): Config Options in the README.
    [ 13.338] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
    [ 13.486] (II) Loading extension NV-GLX
    [ 13.541] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 13.541] (==) NVIDIA(0): Backing store disabled
    [ 13.541] (==) NVIDIA(0): Silken mouse enabled
    [ 13.541] (==) NVIDIA(0): DPMS enabled
    [ 13.542] (II) Loading extension NV-CONTROL
    [ 13.542] (II) Loading extension XINERAMA
    [ 13.542] (II) Loading sub module "dri2"
    [ 13.542] (II) LoadModule: "dri2"
    [ 13.542] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 13.542] (II) Module dri2: vendor="X.Org Foundation"
    [ 13.542] compiled for 1.12.4, module version = 1.2.0
    [ 13.542] ABI class: X.Org Server Extension, version 6.0
    [ 13.542] (II) NVIDIA(0): [DRI2] Setup complete
    [ 13.542] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 13.543] (--) RandR disabled
    [ 13.543] (II) Initializing built-in extension Generic Event Extension
    [ 13.543] (II) Initializing built-in extension SHAPE
    [ 13.543] (II) Initializing built-in extension MIT-SHM
    [ 13.543] (II) Initializing built-in extension XInputExtension
    [ 13.543] (II) Initializing built-in extension XTEST
    [ 13.543] (II) Initializing built-in extension BIG-REQUESTS
    [ 13.543] (II) Initializing built-in extension SYNC
    [ 13.543] (II) Initializing built-in extension XKEYBOARD
    [ 13.543] (II) Initializing built-in extension XC-MISC
    [ 13.543] (II) Initializing built-in extension SECURITY
    [ 13.543] (II) Initializing built-in extension XINERAMA
    [ 13.543] (II) Initializing built-in extension XFIXES
    [ 13.543] (II) Initializing built-in extension RENDER
    [ 13.543] (II) Initializing built-in extension RANDR
    [ 13.543] (II) Initializing built-in extension COMPOSITE
    [ 13.543] (II) Initializing built-in extension DAMAGE
    [ 13.547] (II) Initializing extension GLX
    [ 14.003] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 14.003] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 14.003] (II) LoadModule: "evdev"
    [ 14.004] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 14.022] (II) Module evdev: vendor="X.Org Foundation"
    [ 14.022] compiled for 1.12.3.901, module version = 2.7.3
    [ 14.022] Module class: X.Org XInput Driver
    [ 14.022] ABI class: X.Org XInput driver, version 16.0
    [ 14.023] (II) Using input driver 'evdev' for 'Power Button'
    [ 14.023] (**) Power Button: always reports core events
    [ 14.023] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 14.023] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 14.023] (--) evdev: Power Button: Found keys
    [ 14.023] (II) evdev: Power Button: Configuring as keyboard
    [ 14.023] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 14.023] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 14.023] (**) Option "xkb_rules" "evdev"
    [ 14.023] (**) Option "xkb_model" "evdev"
    [ 14.023] (**) Option "xkb_layout" "fr"
    [ 14.023] (**) Option "xkb_variant" "latin-9"
    [ 14.076] (EE) Error loading keymap /var/lib/xkb/server-0.xkm
    [ 14.076] (EE) XKB: Failed to load keymap. Loading default keymap instead.
    [ 14.121] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 14.121] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 14.121] (II) Using input driver 'evdev' for 'Power Button'
    [ 14.121] (**) Power Button: always reports core events
    [ 14.121] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 14.121] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 14.121] (--) evdev: Power Button: Found keys
    [ 14.121] (II) evdev: Power Button: Configuring as keyboard
    [ 14.121] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 14.121] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 14.121] (**) Option "xkb_rules" "evdev"
    [ 14.121] (**) Option "xkb_model" "evdev"
    [ 14.121] (**) Option "xkb_layout" "fr"
    [ 14.121] (**) Option "xkb_variant" "latin-9"
    [ 14.122] (II) config/udev: Adding input device Genius Multimedia Keyboard (/dev/input/event0)
    [ 14.122] (**) Genius Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 14.122] (II) Using input driver 'evdev' for 'Genius Multimedia Keyboard'
    [ 14.122] (**) Genius Multimedia Keyboard: always reports core events
    [ 14.122] (**) evdev: Genius Multimedia Keyboard: Device: "/dev/input/event0"
    [ 14.122] (--) evdev: Genius Multimedia Keyboard: Vendor 0x458 Product 0x708
    [ 14.122] (--) evdev: Genius Multimedia Keyboard: Found keys
    [ 14.122] (II) evdev: Genius Multimedia Keyboard: Configuring as keyboard
    [ 14.122] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input0/event0"
    [ 14.122] (II) XINPUT: Adding extended input device "Genius Multimedia Keyboard" (type: KEYBOARD, id 8)
    [ 14.122] (**) Option "xkb_rules" "evdev"
    [ 14.122] (**) Option "xkb_model" "evdev"
    [ 14.122] (**) Option "xkb_layout" "fr"
    [ 14.122] (**) Option "xkb_variant" "latin-9"
    [ 14.123] (II) config/udev: Adding input device Genius Multimedia Keyboard (/dev/input/event1)
    [ 14.123] (**) Genius Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 14.123] (II) Using input driver 'evdev' for 'Genius Multimedia Keyboard'
    [ 14.123] (**) Genius Multimedia Keyboard: always reports core events
    [ 14.123] (**) evdev: Genius Multimedia Keyboard: Device: "/dev/input/event1"
    [ 14.123] (--) evdev: Genius Multimedia Keyboard: Vendor 0x458 Product 0x708
    [ 14.124] (--) evdev: Genius Multimedia Keyboard: Found keys
    [ 14.124] (II) evdev: Genius Multimedia Keyboard: Configuring as keyboard
    [ 14.124] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/input/input1/event1"
    [ 14.124] (II) XINPUT: Adding extended input device "Genius Multimedia Keyboard" (type: KEYBOARD, id 9)
    [ 14.124] (**) Option "xkb_rules" "evdev"
    [ 14.124] (**) Option "xkb_model" "evdev"
    [ 14.124] (**) Option "xkb_layout" "fr"
    [ 14.124] (**) Option "xkb_variant" "latin-9"
    [ 14.125] (II) config/udev: Adding input device ImExPS/2 Logitech Explorer Mouse (/dev/input/event5)
    [ 14.125] (**) ImExPS/2 Logitech Explorer Mouse: Applying InputClass "evdev pointer catchall"
    [ 14.125] (II) Using input driver 'evdev' for 'ImExPS/2 Logitech Explorer Mouse'
    [ 14.125] (**) ImExPS/2 Logitech Explorer Mouse: always reports core events
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: Device: "/dev/input/event5"
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Vendor 0x2 Product 0x6
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found 9 mouse buttons
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found scroll wheel(s)
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found relative axes
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found x and y relative axes
    [ 14.125] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Configuring as mouse
    [ 14.125] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Adding scrollwheel support
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: YAxisMapping: buttons 4 and 5
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 14.125] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event5"
    [ 14.125] (II) XINPUT: Adding extended input device "ImExPS/2 Logitech Explorer Mouse" (type: MOUSE, id 10)
    [ 14.137] (II) evdev: ImExPS/2 Logitech Explorer Mouse: initialized for relative axes.
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) keeping acceleration scheme 1
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration profile 0
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration factor: 2.000
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration threshold: 4
    [ 14.138] (II) config/udev: Adding input device ImExPS/2 Logitech Explorer Mouse (/dev/input/mouse0)
    [ 14.138] (II) No input driver specified, ignoring this device.
    [ 14.138] (II) This device may have been added with another device file.
    [ 14.138] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 14.138] (II) No input driver specified, ignoring this device.
    [ 14.138] (II) This device may have been added with another device file.
    [ 14.305] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 14.306] (II) NVIDIA(GPU-0): Vision stereo.
    [ 14.306] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 14.306] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 14.306] (**) NVIDIA(0): been enabled on all display devices.)
    [ 19.774] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 19.774] (II) NVIDIA(GPU-0): Vision stereo.
    [ 19.774] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 19.774] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 19.774] (**) NVIDIA(0): been enabled on all display devices.)
    [ 41.273] (II) evdev: Power Button: Close
    [ 41.273] (II) UnloadModule: "evdev"
    [ 41.290] (II) evdev: Power Button: Close
    [ 41.290] (II) UnloadModule: "evdev"
    [ 41.293] (II) evdev: Genius Multimedia Keyboard: Close
    [ 41.293] (II) UnloadModule: "evdev"
    [ 41.300] (II) evdev: Genius Multimedia Keyboard: Close
    [ 41.300] (II) UnloadModule: "evdev"
    [ 41.303] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Close
    [ 41.303] (II) UnloadModule: "evdev"
    [ 41.793] Server terminated successfully (0). Closing log file.
    The error appear to be where it says
    [ 14.076] (EE) Error loading keymap /var/lib/xkb/server-0.xkm
    [ 14.076] (EE) XKB: Failed to load keymap. Loading default keymap instead.
    This file (server-0.xkm) actually does not exist on the system, BUT: it also does not exist on my others Arch installations and it works fine, without errors.
    By the way: here is the keyboard-entry in the /etc/X11/xorg.conf.d/10-evdev.conf
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    Option "XkbLayout" "fr"
    Option "XkbVariant" "latin-9"
    EndSection
    Et voilà. Can somebody help ?
    Last edited by kero (2012-09-27 17:39:38)

    Probably because "latin-9" doesn't exist?
    # nano /usr/share/X11/xkb/symbols/fr
    xkb_symbols "latin9" {
    include "latin"
    include "nbsp(level3)"
    name[Group1]="French (legacy, alternative)";
    key <TLDE> { [ oe, OE, leftdoublequotemark, rightdoublequotemark ] };
    key <AE01> { [ ampersand, 1, dead_acute, periodcentered ] };
    key <AE02> { [ eacute, 2, asciitilde, Eacute ] };
    Try it without the dash (without the "-").
    And don't forget to mark it as solved (by editing the first post).

  • Unable to load the pof configuration

    Hi all,
    Im trying with pof serialization but unable to load the pof configuration and im getting the following error:
    2013-06-12 14:41:49,582 [catalina-exec-1] ERROR com.distcachedemo.KnCacheDemoServlet - doPost(HttpServletRequest, HttpServletResponse)::
    (Wrapped) java.io.NotSerializableException: com.distcachedemo.dto.KnMasterListResponse
        at com.tangosol.util.ExternalizableHelper.toBinary(ExternalizableHelper.java:215)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ConverterValueToBinary.convert(PartitionedCache.CDB:3)
        at com.tangosol.util.ConverterCollections$ConverterMap.put(ConverterCollections.java:1674)
        at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ViewMap.put(PartitionedCache.CDB:1)
        at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1)
        at com.distcachedemo.KnCorpContactInfoControllerDemo.getMasterList(KnCorpContactInfoControllerDemo.java:183)
        at com.distcachedemo.KnCacheDemoServlet.doPost(KnCacheDemoServlet.java:60)
    Please let me know what is that i need to correct in the below:
    NOTE: I have also tried Proxy Scheme with serializer and it too did not work
              From the coherence logs i havent found the log of POF configuration being loaded.
    Configuration used:
    ============
    cache-config.xml::
    <?xml version="1.0"?>
    <cache-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
       xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd">
       <caching-scheme-mapping>
          <cache-mapping>
             <cache-name>nspoc*</cache-name>
             <scheme-name>distributed-ns</scheme-name>
          </cache-mapping>
         <cache-mapping>
             <cache-name>poc*</cache-name>
             <scheme-name>distributed</scheme-name>
          </cache-mapping>
       </caching-scheme-mapping>
    <caching-schemes>
          <distributed-scheme>
             <scheme-name>distributed-ns</scheme-name>
             <service-name>DistributedCache-ns</service-name>
             <thread-count>4</thread-count>
             <request-timeout>60s</request-timeout>
             <backing-map-scheme>
                        <external-scheme>
                            <nio-memory-manager>
                                <initial-size>1MB</initial-size>
                                <maximum-size>100MB</maximum-size>
                            </nio-memory-manager>
                            <high-units>100</high-units>
                            <unit-calculator>BINARY</unit-calculator>
                            <unit-factor>1048576</unit-factor>
                        </external-scheme>
             </backing-map-scheme>
             <autostart>true</autostart>
          </distributed-scheme>
          <distributed-scheme>
             <scheme-name>distributed</scheme-name>
             <service-name>DistributedCache</service-name>
             <thread-count>4</thread-count>
             <request-timeout>60s</request-timeout>
             <backing-map-scheme>
                <read-write-backing-map-scheme>
                    <internal-cache-scheme>
                        <external-scheme>
                            <nio-memory-manager>
                                <initial-size>1MB</initial-size>
                                <maximum-size>100MB</maximum-size>
                            </nio-memory-manager>
                            <high-units>100</high-units>
                            <unit-calculator>BINARY</unit-calculator>
                            <unit-factor>1048576</unit-factor>
                        </external-scheme>
                  </internal-cache-scheme>
                  <cachestore-scheme>
                    <class-scheme>
                        <class-factory-name>com.distcachedemo.KnPocCacheStoreFactory</class-factory-name>
                        <method-name>loadCacheStore</method-name>
                        <init-params>
                          <init-param>
                            <param-type>java.lang.String</param-type>
                            <param-value>{cache-name}</param-value>
                          </init-param>
                        </init-params>
                    </class-scheme>
                   </cachestore-scheme>
                </read-write-backing-map-scheme>
             </backing-map-scheme>
             <autostart>true</autostart>
          </distributed-scheme>
          <local-scheme>
             <scheme-name>LocalSizeLimited</scheme-name>
             <eviction-policy>LRU</eviction-policy>
             <high-units>5000</high-units>
             <expiry-delay>1h</expiry-delay>
          </local-scheme>
       </caching-schemes>
    </cache-config>
    =================
    tangosol-coherence-override.xml:
    <?xml version='1.0'?>
    <coherence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns="http://xmlns.oracle.com/coherence/coherence-operational-config"
       xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-operational-config coherence-operational-config.xsd">
       <cluster-config>
          <member-identity>
             <cluster-name system-property="tangosol.coherence.cluster">kn_test</cluster-name>
          </member-identity>
          <unicast-listener>
             <well-known-addresses>
                <socket-address id="719">
                   <address>192.168.7.19</address>
                   <port>8088</port>
                </socket-address>
                <socket-address id="3246">
                   <address>192.168.3.246</address>
                   <port>8088</port>
                </socket-address>
                <socket-address id="77">
                   <address>192.168.7.7</address>
                   <port>8088</port>
                </socket-address>
             </well-known-addresses>
             <address system-property="tangosol.coherence.localhost">192.168.7.7</address>
             <port system-property="tangosol.coherence.localport">8088</port>
             <port-auto-adjust system-property="tangosol.coherence.localport.adjust">true</port-auto-adjust> 
          </unicast-listener>
    <serializers>
          <serializer id="java">
             <class-name>com.tangosol.io.DefaultSerializer</class-name>
          </serializer>
          <serializer id="pof">
             <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
            <init-params>
                <init-param>
                   <param-type>String</param-type>
                   <param-value>pof-config.xml</param-value>
                </init-param>
             </init-params>
          </serializer>
       </serializers>
       </cluster-config>
       <configurable-cache-factory-config>
          <init-params>
             <init-param>
                <param-type>java.lang.String</param-type>
                <param-value system-property="tangosol.coherence.cacheconfig">cache-config.xml</param-value>
             </init-param>
          </init-params>
       </configurable-cache-factory-config>
    </coherence>
    ======================
    pof-config.xml:
    <?xml version='1.0'?>
    <pof-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns="http://xmlns.oracle.com/coherence/coherence-pof-config"
       xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-pof-config
       coherence-pof-config.xsd">
       <user-type-list>
          <include>coherence-pof-config.xml</include>
          <user-type>
            <type-id>1001</type-id>
            <class-name>com.distcachedemo.dto.KnMasterListResponse</class-name>
          </user-type>
       </user-type-list>
    </pof-config>
    ============
    Java Code:
    package com.distcachedemo.dto;
    import com.tangosol.io.pof.PofReader;
    import com.tangosol.io.pof.PofWriter;
    import com.tangosol.io.pof.PortableObject;
    import java.io.IOException;
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Map;
    public class KnMasterListResponse implements PortableObject {
      private static final long serialVersionUID = -9114918011531875153L;
      private KnHierarchyListDTO hierarchyListDTO;
      private Map subsMap;
      public KnHierarchyListDTO getHierarchyListDTO() {
      return hierarchyListDTO;
      public void setHierarchyListDTO(KnHierarchyListDTO hierarchyListDTO) {
      this.hierarchyListDTO = hierarchyListDTO;
      public Map getSubsMap() {
      return subsMap;
      public void setSubsMap(Map subsMap) {
      this.subsMap = subsMap;
      public String toString() {
      StringBuilder strBuffer = new StringBuilder(100);
      if (hierarchyListDTO.getHierachyDTOs() != null) {
      strBuffer.append(" hierarchyListDTO - ").append(hierarchyListDTO.getHierachyDTOs().size());
      if (subsMap != null) {
      strBuffer.append(" subsMap - ").append(subsMap.size());
      return strBuffer.toString();
      @Override
      public void readExternal(PofReader pofReader) throws IOException {
      subsMap = pofReader.readMap(0, new HashMap<>());
      hierarchyListDTO = (KnHierarchyListDTO) pofReader.readObject(1);
      @Override
      public void writeExternal(PofWriter pofWriter) throws IOException {
      pofWriter.writeMap(0, subsMap);
      pofWriter.writeObject(1, hierarchyListDTO);
    Thanks,
    Ravi Shanker

    Hi Ravi,
    it is generally recommended that all new classes support POF in this or that way. This or that means either implementing PortableObject or to provide a PofSerializer implementation to be able to optimally serialize their state. Obviously it is not always possible but you should try to achieve that.
    If it is not possible, then you can still convert them to byte[] or String by some other means. If that other means is Java serialization, then Coherence provides a different PofContext implementation (SafeConfigurablePofContext) which you can use instead of ConfigurablePofContext and which is able to fall back to Java serialization for Serializable classes (and also for types not registered in POF configuration but which implement PortableObject). However it is recommended that SafeConfigurablePofContext is not used in production, typically because Java serialization is generally inferior to POF serialization when looking at performance and serialized size, and SafeConfigurablePofContext does not force you to do the right thing, and finally because Java serialization is not platform-independent whereas POF is.
    Best regards,
    Rob

  • Unable to load the user interface-please reinstall the application-Audigy 2 zs Platinum

    unable to load the user interface-please reinstall the application---this is the message I get when my pc starts------Someone messing around with my computer tried to delete creative media source player 3 when they saw I had both 3 and 5 in folder and i get this error message every time I start my pc. In addition to this I have lost my EAX and THX consoles and my speaker settings are gone so I cannot adjust my 5. system at all. After I delete that error message when I click on the creative icon is sys tray instead of opening up the creative media player I get the error message--unable to load needed componants. Please reinstall the application. this is media player 3[version 3.32.]. I dont know why during the auto?updates through the last couple of years I have media player 3 in sys tray and if I need version 5 it is in file with 3--start-all programs-creative--any way my pc is a Cyberpower AMD FX-53 using win xp pro-32 bit-- and of course its a OEM product so they tell me the only way to get it to work is use the restoration cd they gave me when I bought the pc and it will revert back to its original state as when purchased. I would lose all my games, music, pictures?ect and would have to start from scratch.[ OR of course back everything up on a portable hard dri've]?It seems like there should be an easier way --hell I might as well buy a new soundcard and it would make it easier. If anyone?has an answer for someone who is not a tech head so I can understand please help !!--thank you in advance for any assistance as it is greatly appreciated. Sorry this message is so long winded, just irritating to have spen so much for a pc and not have the original installation disc.-tried moving to another slot and the fixes I saw posted here with no luck---thank you folks again--Tom

    All the issues you guys are talking about have been reported in beta stage of these new drivers. I would say none of them has been fixed yet. The only solution for now is to use previous drivers which work fine or use some modified drivers which fixes some issues, but not all. Your choice.
    [url="http://connect.creativelabs.com/windows/Lists/Audigy%20Issues/AllItems.aspx">Bug List[/url]
    Message Edited by ronon0 on 08-07-2008 :47 AM

  • Unable to load the transactions"

    Hi All,
    I have established the JCO connection between SAP and xMII. However, in the Routing Rules tab of iDOC listener, I am getting the error as " Unable to load the transactions"
    Can anyone help me in this?
    Best Regards,
    Ajit Dubal.

    Hi,
      It is not some default transaction. But it would have been set by someone in it. So I don't know the details. Please check the JCO log file if it can help.
    Here <b>IDOC_XMII</b> is the iDocListener. So match server name with ur Listener name.
    C:\Lighthammer\JCO\jcoservers.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    - <Servers>
    - <Server name="<b>IDOC_XMII</b>">
      <ServerProps gwhost="xxx" gwserv="sapgw00" progid="IDOC_XMII" trace="1" unicode="0" />
      <ClientProps ashost="xxx" client="xxx" lang="en" passwd="xxx=" sysnr="xx" user="xxx" />
      <Routing>
      <Rule input="Input_Material" legacy="false" msgtype="*" password="" path="C:/Lighthammer/JCO/Output/" server="localhost" <b>transaction="training/bapi_mat"</b> username="" />
      </Routing>
      </Server>
    <Servers>
    Regards,
    Harini S

  • How to load the XML file to BW3.5

    Hi Gurus,
    i am following the steps for extracting the data from XML to 3.5 following the steps in the HOWTOSENDXMLDATATOBW.doc. i have a doubt at the 22 nd Point where in the document given that jump to point 26 for 3.5 version. But where we need to specify the path of the XML file. Used the Tcode WSADMIN to test the Webservices, but i am unable to load the delta due to the above problem. what are the steps i need to follow in WSADMIN. We are using SOAPservice in BW.
    Please help me for finding the soluction for XML loading of the delta data to BW.
    Thanks,
    James
    Message was edited by:
            james winslet

    Hi,
    I am sending you a link that will provide you with some good idea on XML File Uploading....
    How to upload XML flat file
    Hope this helpful... award points
    regards,
    raj
    Message was edited by:
            gangaraju mullapudi

  • Unable to load the data into Cube Using DTP in the quality system

    Hi,
    I am unable to load the data from PSA to Cube using DTP in the quality system for the first time
    I am getting the error like" Data package processing terminated" and "Source TRCS 2LIS_17_NOTIF is not allowed".
    Please suggest .
    Thanks,
    Satyaprasad

    Hi,
    Some Infoobjects are missing while collecting the transport.
    I collected those objects and transported ,now its working fine.
    Many Thanks to all
    Regards,
    Satyaprasad

  • Unable to load the kernel module 'nvidia.ko' [SOLVED]

    After my most recent kernel upgrade, I can't get my GUI to run. I've tried reinstalling the nvidia driver to no avail.
    Any insight would be greatly appreciated. I'm using a GeForce 8400 GS
    cat /var/log/nvidia-installer.log
    ERROR: Unable to load the kernel module 'nvidia.ko'. This happens most
    frequently when this kernel module was built against the wrong or
    improperly configured kernel sources, with a version of gcc that differs
    from the one used to build the target kernel, or if a driver such as
    rivafb/nvidiafb is present and prevents the NVIDIA kernel module from
    obtaining ownership of the NVIDIA graphics device(s), or NVIDIA GPU
    installed in this system is not supported by this NVIDIA Linux graphics
    driver release.
    Please see the log entries 'Kernel module load error' and 'Kernel
    messages' at the end of the file '/var/log/nvidia-installer.log' for
    more information.
    -> Kernel module load error: insmod: error inserting './usr/src/nv/nvidia.ko':
    -1 No such device
    -> Kernel messages:
    NVRM: This can occur when a driver such as nouveau, rivafb,
    NVRM: nvidiafb, or rivatv was loaded and obtained ownership of
    NVRM: the NVIDIA device(s).
    NVRM: Try unloading the conflicting kernel module (and/or
    NVRM: reconfigure your kernel without the conflicting
    NVRM: driver(s)), then try loading the NVIDIA kernel module
    NVRM: again.
    NVRM: No NVIDIA graphics adapter probed!
    NVRM: The NVIDIA probe routine was not called for 1 device(s).
    NVRM: This can occur when a driver such as nouveau, rivafb,
    NVRM: nvidiafb, or rivatv was loaded and obtained ownership of
    NVRM: the NVIDIA device(s).
    NVRM: Try unloading the conflicting kernel module (and/or
    NVRM: reconfigure your kernel without the conflicting
    NVRM: driver(s)), then try loading the NVIDIA kernel module
    NVRM: again.
    NVRM: No NVIDIA graphics adapter probed!
    NVRM: The NVIDIA probe routine was not called for 1 device(s).
    NVRM: This can occur when a driver such as rivafb, nvidiafb or
    NVRM: rivatv was loaded and obtained ownership of the NVIDIA
    NVRM: device(s).
    NVRM: Try unloading the rivafb, nvidiafb or rivatv kernel module
    NVRM: (and/or reconfigure your kernel without rivafb/nvidiafb
    NVRM: support), then try loading the NVIDIA kernel module again.
    NVRM: No NVIDIA graphics adapter probed!
    ERROR: Installation has failed. Please see the file
    '/var/log/nvidia-installer.log' for details. You may find suggestions
    on fixing installation problems in the README available on the Linux
    driver download page at www.nvidia.com.
    Last edited by wsims (2010-06-22 15:06:04)

    if you used the packages from repos, the blacklist is done automatically in nvidia,
    $ pacman -Qo /etc/modprobe.d/nouveau_blacklist.conf
    /etc/modprobe.d/nouveau_blacklist.conf is owned by nvidia 195.36.31-1
    $ cat /etc/modprobe.d/nouveau_blacklist.conf
    blacklist nouveau
    but i guess you just want to mess your system by using unsupported and very bad ways and you are way smarter than the devs if you used that installer
    Last edited by wonder (2010-06-22 14:10:01)

  • Unable to load the vertipaq engine because there was a COM exception . Return argument has an invalid type.

    Hi All,
    I have been using powerpivot for months (2010 PowerPivot on Excel 2010, with Sql 2008).  I tried to open powerpivot today and get the following below.  I have already tried uninstalling powerpivot and reinstalling it to no avail.  
    Any suggestions would be appreciated.  Thanks, Ivan
    Unable to load the vertipaq engine because there was a COM exception while loading....
    ============================
    Error Message:
    ============================
    Return argument has an invalid type.
    ============================
    Call Stack:
    ============================
       at System.Runtime.Remoting.Proxies.RealProxy.ValidateReturnArg(Object arg, Type paramType)
       at System.Runtime.Remoting.Proxies.RealProxy.PropagateOutParameters(IMessage msg, Object[] outArgs, Object returnValue)
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.Office.Interop.Excel.WorkbookConnection.get_OLEDBConnection()
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadOLEDBConnection(Boolean raiseCompleteEvent, String errorCache)
    ============================

    Hi All,
    For anyone who this happens to, what ended up fixing it was uninstalling and reinstalling excel.  I was using excel 2010, so I did this 
    Go to add/remove programs 
    Highlight Microsoft Office Professional 2010 
    Click Change
    ensure Add remove features is selected and click continue 
    click on the little arrow beside excel and click on Not Available, click continue
    After it is done, excel will be uninstalled.  
    When this is done, you can do the same process again, but this time chose the other appropriate selection
    instead of not available.  I chose Run All from My Computer.  

Maybe you are looking for

  • Is it possible to add a newline to a column?

    Hi, So I am wondering if it is possible to add a newline to a column in a SQL report? For example I have 4 columns I am selecting. I want the first two columns to be on one line then have a <br> then the next two columns to be on the next line. Is so

  • Xml parsing in iphone

    Hi Experts I am using a web service in iphone application,the response of the service is coming in console in the form of XML. I want to separate the response and show it in ui. The problem is that the response is a list and for  each element there a

  • 6500 Slide screensaver no coming on

    Hi all, I have my 6500 Slide connected via Bluetooth to my work PC and my home PC, for syncing contacts and to-do items. This works fine. When I first hooked it up to the work PC, the sync worked with no problems, but the screensaver stopped working

  • Photosmart 6520 all in one not printing

    Hello, My HP Photosmart 6520 all in one printer will not print anything in black and it has a brand new cartrige in it. I have tried restarting the printer, and the computer and it is not helping. Please help.

  • How do I uninstall MacTune Pro ?

    MacTune Pro just automatically downloaded itself on to my MacBookAir 10.7.5 !! It happened in a flash!  I clicked on a link from another site, and got MacTune Pro. I went back to my original site and clicked again, and again it went to MacTune Pro an