Dublin Core and JAXB

If I try to compile this schema using xjc (1.0.4-b18-fcs):
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema  xmlns:xs="http://www.w3.org/2001/XMLSchema"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            elementFormDefault="qualified"
            attributeFormDefault="unqualified">
   <xs:import namespace="http://purl.org/dc/elements/1.1/"
              schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd"/>
   <xs:element name="simpledc" type="dc:elementContainer"/>
</xs:schema>from http://dublincore.org/schemas/xmls/
I get an error while parsing the imported schema:
[ERROR] the property "Content" is empty and contains no value
line 45 of dc.xsd
What does this mean? I have no idea what it's referring to. Line 45 of dc.xsd is just the start of the definition of a complexType.
This schema is valid, according to http://tools.decisionsoft.com/schemaValidate.html
Any ideas why JAXB is unhappy?
Thanks,
J

I am also getting the same error. for some reason.
are you using the JAXB 1.5?
Jin

Similar Messages

  • Enter Dublin Core XMP in Bridge metadata window

    Someone in the general discussion area suggested I cross-post this question here:
    I'm trying to find the best way to add some Dublin Core into TIFF files. Basically I'd like to add data to the dc:identifier and dc:relation fields while I'm adding other data in Bridge.  Is there a way to create a tab for Dublin Core in the metadata window?
    Currently we're using Bridge and IPTC core was working okay, but now we need to add some metadata that would fit better in Dublin Core.  I know it has a namespace in XMP, but can't figure out a way to use Bridge or Photoshop to enter it.
    I have tried to adapt a script created by Paul Riggott in this thread, but have been unable to make it work.
    I also tried the "add identifier" script in this thread, but I'm not seeing how it works... probably because it was written for the Mac and I'm working in Windows. Any suggestions?
    Thanks.

    Sorry, I should probably include the code as I amended it:
    // ADOBE SYSTEMS INCORPORATED
    // Copyright 2008 Adobe Systems Incorporated
    // All Rights Reserved
    // NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the
    // terms of the Adobe license agreement accompanying it.  If you have received this file from a
    // source other than Adobe, then your use, modification, or distribution of it requires the prior
    // written permission of Adobe.
    @fileoverview Shows how to create a TabbedPalette in Bridge with ScriptUI components.
    @class Shows how to create a TabbedPalette in Bridge with ScriptUI components.
    <h4>Usage</h4>
    <ol>
    <li>    Run the snippet in the ExtendScript Toolkit (see Readme.txt), with Bridge CS4 as the target.
    <li>You should find that a tabbed palette has been added to the Bridge browser window.
    </ol>
    <h4>Description</h4>
    <p>Adds a script-defined tabbed palette to the Bridge browser window. 
    <p>The palette is of the "script" type, and contains ScriptUI components,
    text fields and buttons. The buttons have event handlers that
    change the values in the text fields.
    <p>The new palette appears in the default upper-left position in the browser. It can be
      dragged to other positions. <br />
    @see SnpCreateWebTabbedPalette
    @constructor Constructor.
    function SnpCreateTabbedPaletteScriptUI()
         The context in which this snippet can run.
         @type String
        this.requiredContext = "\tExecute against Bridge main engine.\nBridge must not be running";
        $.level = 1; // Debugging level
        this.paletteRefs = null;
    Functional part of this snippet. 
    Creates the TabbedPalette object, defining the content with
    ScriptUI components, and adds the palette to all open Bridge browser windows.
        @return True if the snippet ran as expected, false otherwise. 
        @type Boolean
    SnpCreateTabbedPaletteScriptUI.prototype.run = function()
        var retval = true;
        if(!this.canRun())
            retval = false;   
            return retval;
        this.paletteRefs = new Array();
        var wrapper = this;
        // Create and add the TabbedPalette object and its contents.
        function addScriptPalette(doc)
            // Create the TabbedPalette object, of type "script"
            var scriptPalette = new TabbedPalette( doc, "SnpCreateTabbedPaletteScriptUI", "SnpSUIPalette", "script" );
            wrapper.paletteRefs.push(scriptPalette);   
            // Create a ScriptUI panel to be displayed as the tab contents.
            var tbPanel = scriptPalette.content.add('panel', [25,15,255,130], 'The Panel');
            // Add the UI components to the ScriptUI panel
            tbPanel.txtFieldLbl = tbPanel.add('statictext', [15,15,105,35], 'Times Clicked:');
            tbPanel.txtField = tbPanel.add('edittext', [115,15,215,35], '0');
            tbPanel.addBtn = tbPanel.add('button', [15,65,105,85], 'Add');
            tbPanel.subBtn = tbPanel.add('button', [120, 65, 210, 85], "Sub");
            // Define event listeners that implement behavior for the UI components
            tbPanel.addBtn.onClick = function()
    // This only works on bridge!!
    loadXMPLib();
    // Here put the namepace and the prefix (you can create also your own new namespace and prefix)
    // In this case, it uses the Dublin Core Properties
    var psNamespace = "http://purl.org/dc/elements/1.1/";
    var psPrefix = "dc:";
    XMPMeta.registerNamespace(psNamespace, psPrefix);
    // Here you have to choose 1, 2, or multiple thumbnails. In this case it chooses all tiff files found on content pane.
    var sels = app.document.visibleThumbnails;
    for (var b in sels) {
        // Here I choose tif files, but you can set (cr2|raw|dng|nef/jpg) for raw and jpg files leave it empty for any file except folders
        if (sels[b].spec instanceof File && sels[b].name.match(/\.(cr2|raw|dng|nef)$/i)) {
            var xmp = new XMPMeta(sels[b].synchronousMetadata.serialize());      
            // I can create new Properties in Dublin Core and add values to them
            xmp.setProperty(psNamespace, "MyProp01", 'some text here');
            xmp.setProperty(psNamespace, "MyProp02", 'false');
            xmp.setProperty(psNamespace, "MyProp03", '32895665');
            xmp.setProperty(psNamespace, "MyProp04", 'label2');
            // Or, you can use the DublinCore native properties.
            // In this case, I want to ADD some text to 'Descrition' existing text ('Description is a 'langAlt' property)
            // First, I read any Descrition value and add it to a var
            var Description =  xmp.getArrayItem(XMPConst.NS_DC, "description",1);
            // Then I add may new tex to that existing value:
            // (I wanted to put the return '\r' (or new line '\n') to add new paragraphs in the middle of text: "\rline2\rline3")
            xmp.setLocalizedText(XMPConst.NS_DC, "description", null, "x-default", Description + "\rlinha2\nlinha3");
            // If you want to delete any existing value and create new value directly use this instead:
            // xmp.setLocalizedText(XMPConst.NS_DC, "description", null, "x-default", "Nota");
            var updatedPacket = xmp.serialize(XMPConst.SERIALIZE_OMIT_PACKET_WRAPPER | XMPConst.SERIALIZE_USE_COMPACT_FORMAT);
            sels[b].metadata = new Metadata(updatedPacket);
    unloadXMPLib();
    // Functions needed:
    function loadXMPLib() {
        if( xmpLib == undefined ) {
              if( Folder.fs == "Windows" ) {
                  var pathToLib = Folder.startup.fsName + "/AdobeXMPScript.dll";
              } else {
                  var pathToLib = Folder.startup.fsName + "/AdobeXMPScript.framework";
              var libfile = new File( pathToLib );
              var xmpLib = new ExternalObject("lib:" + pathToLib );
    function unloadXMPLib() {
        if ( ExternalObject.AdobeXMPScript ) {
            try {
                ExternalObject.AdobeXMPScript.unload();
                ExternalObject.AdobeXMPScript = undefined;
            }catch (e) { }
            tbPanel.subBtn.onClick = function()
                var txt = tbPanel.txtField;
                txt.text = parseInt(txt.text) - 1;
        // Add the palette to all open Bridge browser windows
        for(var i = 0;i < app.documents.length;i++)
            addScriptPalette(app.documents[i]);
        return retval;
      Determines whether snippet can be run given current context.  The snippet
      fails if these preconditions are not met:
      <ul>
      <li> Must be running in Bridge
      </ul>
      @return True is this snippet can run, false otherwise
      @type boolean
    SnpCreateTabbedPaletteScriptUI.prototype.canRun = function()
        // Must run in Bridge
        if(BridgeTalk.appName == "bridge")
            return true;       
        // Fail if these preconditions are not met. 
        // Bridge must be running,
        $.writeln("ERROR:: Cannot run SnpCreateTabbedPaletteScriptUI");
        $.writeln(this.requiredContext);
        return false;
    "main program": construct an anonymous instance and run it
      as long as we are not unit-testing this snippet.
    if(typeof(SnpCreateTabbedPaletteScriptUI_unitTest) == "undefined") {
        new SnpCreateTabbedPaletteScriptUI().run();

  • Problems with Custom File Info Panel and Dublin Core

    I'm creating a custom file info panel that uses the values of the dublin core description and keywords (subject) for two of it's own fields.  I'm having problems with the panel saving if they enter the description on the custom panel first, and with the keywords not echoing each other, or reappearing after a save.<br /><br />Here is the code for the panel<br /><br /><?xml version="1.0"><br /><!DOCTYPE panel SYSTEM "http://ns.adobe.com/custompanels/1.0"><br /><panel title="$$$/matthew/FBPanelName=Testing for Matthew" version="1" type="custom_panel"><br />     group(placement: place_column, spacing:gSpace, horizontal: align_fill, vertical: align_top)<br />     {<br />          group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top)<br />          {<br />               static_text(name: '$$$/matthew/keywords = Keywords', font: font_big_right, vertical: align_center);<br />               edit_text(fbname: '$$$/matthew/keywordsFB = Keywords', locked: false, height: 60, v_scroller: true, horizontal: align_fill, xmp_ns_prefix: 'dc', xmp_namespace: <br />'http://purl.org/dc/elements/1.1/', xmp_path: 'subject');<br />          }<br />          group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top)<br />          {<br />               static_text(name: '$$$/matthew/description = Description', font: font_big_right, vertical: align_center);<br />               edit_text(fbname: '$$$/matthew/descriptionFB = Description', locked: false, height: 60, v_scroller: true, horizontal: align_fill, xmp_ns_prefix: 'dc', xmp_namespace: <br />'http://purl.org/dc/elements/1.1/', xmp_path: 'description');<br />          }<br />          group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top)<br />          {<br />               static_text(name: '$$$/matthew/season = Season', font: font_big_right, vertical: align_center);<br />               popup(fbname: '$$$/matthew/seasonFB = Season', items: '$$$/matthew/Season/Items={};option 3{option 3};option 2{option 2};option 1{option 1}', xmp_namespace:'http://monkeys.com/demo/testingmatthew/namespace/', xmp_ns_prefix:'matthew', xmp_path:'season');<br />          }<br />          group(placement: place_row, spacing: gSpace, horizontal: align_fill, vertical: align_top)<br />          {<br />               static_text(name: '$$$/matthew/ltf = Limited Text Field', font: font_big_right, vertical: align_center);<br />               edit_text(fbname: '$$$/matthew/ltf = Limited Text Field', locked: false, horizontal: align_fill, xmp_namespace:'http://monkeys.com/demo/testingmatthew/namespace/ ', <br />xmp_ns_prefix:'matthew', xmp_path:'ltf');<br />          }<br />     }<br /></panel><br /><br />Thanks for the help

    To answer my own question:
    The documentation really sucks.
    I found this reply from Adobe <http://forums.adobe.com/message/2540890#2540890>
    usually we recommend to install custom panels into the "user" location at:
    WINDOWS XP: C:\Documents and Settings\username\Application Data\Adobe\XMP\Custom File Info Panels\2.0\panels\
    WINDOWS VISTA: C\Users\username\AppData\Roaming\Adobe\XMP\Custom File Info Panels\2.0\panels\
    MAC OS: /user/username/Application Data/Adobe/XMP/Custom File Info Panels/2.0/panels/
    The reason why your panels did not work properly was a missing Flash trust file for that user location. Without such a trust file the embedded flash player refuses to "play" your custom panel.
    Please see section "Trust files for custom panels" in the XMPFileInfo SDK Programmer's Guide on page 50 for all details on how to create such trust files.
    After many wasted hours I have now the simple panels running.
    Cheers,
    H.Sup

  • WLCS and Dublin Core

    I was looking at the docs for WLCS, specifically the Product catalog
    schema:
    http://e-docs.bea.com/wlcs310/catalog/schema.htm
    .. and saw the reference to Dublin Core. I'm no expert with regards to
    the Dublin Core initiative, but are there any documents/notes which
    explain which specific Dublin Core Document/Recommendation that the
    product catalog schema is specifically referring to? ... and how they
    are related to each other?
    .. and what happens if you need (oh, no) to modify the schema to your
    specific needs (are you even allowed to do that at all? ... as the code
    in WLCS, I assume, is 'tied' to that schema? )
    Thanks,
    John

    Hi,
    I am not an expert of Oracle XMLDB, but I am replying your problem becuase I also faced the similar problem, and I managed to solve that.
    You dont need to register xml.xsd, it is pre-registered in oracle. In OEM, you can see it registered under XDB schema.
    The problem you are facing has to do something with the Oracle version you are using. If it is pre-version than 9.2.0.3.0, you need to upgrade it to at least 9.2.
    0.3.0. I hope it will solve the reference to lang problem.
    You can also check with the problem statement I posted under the subject "registering GML schemas" in this forum.
    Good luck.
    Vik

  • Updating XMP Dublin Core using Adobe Acrobat 5.0?

    I am very interested in using XMP to better describe my documents; I've also read that Adobe Acrobat 5.0 supports XMP. As such, how would I go about modifying the values of the Dublin Core properties using Acrobat 5.0?

    Dublin Core is a standard schema with set properties and associated values. There's a bunch of them including Graphics, Basic (xap), Media Management, and so on. They're described by a unique name(space) called a URI and not meant to be messed with, otherwise they would not be standards. In order to do what you want today you have to create your own schema namespace, properties associated with it, and values associated with the properties. In order to get them integrated into Acrobat, or any application, you have to build a plug-in that reads and writes the metadata to the pdf or eps output files.

  • Adding Dublin Core metadata to the XMP namespace in Bridge CS5

    I have tried to adapt a script created by Paul Riggott in another thread/discussion, but have been unable to make it work.
    Basically I'd like to add data to the dc:identifier and dc:relation fields while I'm adding other data in Bridge.  Is there a way to create a tab for Dublin Core in the metadata window?
    I also tried the "add identifier" script in this thread/discussion, but I'm not seeing how it works... probably because it was written for the Mac and I'm working in Windows.
    Any suggestions? Thanks.

    You might try the scripting forum at http://forums.adobe.com/community/bridge/bridge_scripting?view=discussions

  • Using IPTC/Dublin Core information

    Hi!
    I am in process of building a slideshow with Encore, my pictures have description information, wich can be seen in the Dublin Core section of the metadata.
    Is it a way to get them ii the slideshow, with out retyping them.
    Thanks
    Edgar

    Strange? No. Metadata interchange with content is not common. But becoming more so? Certainly the presence of metadata is growing by leaps and bounds, and I suspect we would all like to see access to it.
    But submitting a feature request is the current status of this. I just submitted one for this!
    I would be surprised is there is not a free tool out there somewhere that will extract such info to a text file, but I have not researched. Let us know if you find one.

  • Dublin Core XMP is not stamped

    For some reason Dublin Core XMP is not stamped to this image unless you open this image in Photoshop, re-save it and then it begins to work. Apparently, Photoshop corrects something in this image file but I am not sure what that is at this point.  Any information you can share about possible causes and solutions would be extremely helpful.

    For some reason Dublin Core XMP is not stamped to this image unless you open this image in Photoshop, re-save it and then it begins to work. Apparently, Photoshop corrects something in this image file but I am not sure what that is at this point.  Any information you can share about possible causes and solutions would be extremely helpful.

  • What is the difference between Azure RemoteApp Basic vs Standard Plans in terms of compute cores and memory?

    So our customer has asked us to compare compare Amazon Workspace and Azure RemoteApp offerings for them to choose from. While looking at Amazon Workspace, it clealy defines bundles with specific CPU cores, memory and user storage. However, Azure RemoteApp
    only specifies user storage and vaguely compares its basic vs. standard plans in terms of "task worker" vs. "information worker"
    I tried looking up its documentation but couldn't find specific CPU cores that are dedicated per user in basic vs. standard plans. I have following questions:
    Can anyone point me in the right direction or help understand how many CPU cores and memory are dedicated (or shared) per user in each plan?
    Our customer would most likely need a "custom" image for their custom apps. Is it possible for us to choose specific CPU cores and memory for the users to be able to run their apps in azure remoteapp?
    In case i am misunderstanding the basic difference between AWS workspace and Azure RemoteApp, i'd appreciate some help in understanding it as well.
    Thanks!

    Hi,
    With Azure RemoteApp users see just the applications themselves, and the applications appear to be running on their local machine similar to other programs.  With Workspaces users connect to a full desktop and launch applications within that.
    1. Azure RemoteApp currently uses size A3 Virtual Machines, which have 4 vCPUs and 7GB RAM.  Under Basic each VM can have a maximum of 16 users using it whereas under Standard each VM is limited to 10 users.  The amount of CPU available
    to a user depends on what the current demands are on the CPU at that moment from other users and system processes that may be on the server.
    For example, say a user is logged on to a VM with 3 other users and the other users are idle (not consuming any CPU).  At that moment the user could use all 4 vCPUs if a program they are running needed to.  If a few moments later
    the other 3 users all needed lots of CPU as well, then the first user would only have approximately 1 vCPU for their use.  The process is dynamic and seeks to give each user their fair share of available CPU when there are multiple users demanding CPU.
    Under the Standard plan a user will receive approximately a minimum of .4 vCPU assuming that the VM has the maximum number of users logged on and that all users are using as much CPU as possible at a given moment.  Under the Basic plan the approximate
    minimum would be .25 vCPU.
    2. You cannot choose the specific number of cores and memory.  What you can do is choose the Azure RemoteApp billing plan, which affects the user density of each VM as described above.  If you need a lower density than Standard you
    may contact support.
    -TP

  • 4 cores or 8 cores and which video card to choose

    My father and I are presented with a dilemma. Should we get 8 core model or the 4 core model at several hundred dollars cheaper?
    I have never actually bought for myself a computer, and I want to make this one last. At the moment, 8 cores is completely top of the line, and assuming I choose such a model, I will probably have an exceptionally well computer that will last be many, many years.
    I am most likely going to at all times be running Windows and Leopard side by side using Parallels and have a game running in Windows and developing, browsing, chatting, watching movies, ventrilo, etc. in the other space.
    For this reason, would it be wise to purchase the 8 core model? It is considerably cheaper to add the extra quad core with Apple as it is nearly half the price of one found on newegg or a dell configuration. I really want this computer to last and use it for a long time and play the most top of the line games with my friends such as Age of Conan, Crysis, etc. Also, I will have a 24 inch monitor that I will also need my computer to power.
    My current computer cannot even run Age of Conan at the lowest quality settings. I figure if I want to be able to run this game at 1920x1200 resolution in Parallels while running applications on Leopard, shelling out the extra three or four hundred dollars would be worth it. Seeing as I will be using this computer for years, even though most applications do not use 8 cores now, they will then.
    I believe that the 4 core model of the Mac Pro does not allow for an additional xeon quad core, so if I did buy the single quad core model, I would not be able to add another quad core, thus limiting me. Also, even if there were, it would void my warranty.
    Also, I have heard of the 8800 GT causing some problems in the Mac Pro, typically in the first generation ones, however, I had seen cases of people noting problems in the January edition. I want to do a lot of gaming in this rig, and the 8800 is the de facto card of choice for most gamers, at a reasonable price. However, will it give me problems? I have heard of some people having 0 problems at all with this card. Will it give me those occasional blue and green lines through my monitor? Has Apple fully developed the drivers for this card? Will I have problems with it?
    Thanks for any help and I await your responses.

    Fromethius,
    you cannot assing CPUs to the VM in Parallels. In VMware you can select 1 or 2 virtual CPU for the guest OS, though that doesn't neccessarily translate 1:1 with your physical CPUs.
    As for games, neither VM nor Parallels with run most later games well; remember, shader support is only experimental right now, so your results will vary.
    I play games on Mac natively, but it depends on which ones you are after.
    The is no problem with the 8800 card. The issues talked about - which is valid - is it's subpar CORE performance. That hopefully will be addressed in a driver, but won't affect you.
    As for the system - get all you can afford. Don't wait for 'upgrades' - you'll never buy s system otherwise as something new is always on the way.
    I work with a lot of video so I have an 8 core 3.2 with 16GB or RAM - and would never want less. Does that mean you need that? Or someone else doesn't even need more? Not at all - you just need to see what you really mean to do. 4 cores and the 8800 should be just fine for you. IF you can afford the 8 core, in case you will do a lot of work at the same time, great. Otherwise, rather not skimp on memory. Anything under 4GB, IMHO, ain't good enough.
    Cheers,
    dan

  • [solved] pacman apart from core and extra repos

    I just can't get pacman to update any other repos apart from core and extra since I am on arch64 - tried to change servers directly in pacman.conf and in the include files, unpacked the databases manually to /var/lib/pacman - can't seem to persue it though - what am I missing here?
    Last edited by mykey (2008-01-07 14:19:05)

    sure! - pacman.conf:
    # /etc/pacman.conf
    # See the pacman manpage for option directives
    # GENERAL OPTIONS
    [options]
    LogFile = /var/log/pacman.log
    NoUpgrade = etc/passwd etc/group etc/shadow etc/sudoers
    NoUpgrade = etc/fstab etc/raidtab etc/ld.so.conf
    NoUpgrade = etc/rc.conf etc/rc.local
    NoUpgrade = etc/modprobe.conf etc/modules.conf
    NoUpgrade = etc/lilo.conf boot/grub/menu.lst
    HoldPkg = pacman glibc
    IgnorePkg = kernel26
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    #[testing]
    #Include = /etc/pacman.d/testing
    [core]
    # Add your preferred servers here, they will be used first
    #Server = ftp://archlinux.puzzle.ch/core/os/x86_64
    Include = /etc/pacman.d/core
    [extra]
    # Add your preferred servers here, they will be used first
    #Server = ftp://archlinux.puzzle.ch/extra/os/x86_64
    Include = /etc/pacman.d/extra
    #[community]
    # Add your preferred servers here, they will be used first
    #Server = ftp://archlinux.puzzle.ch/community/os/x86_64
    Include = /etc/pacman.d/community
    #[unstable]
    # Add your preferred servers here, they will be used first
    #Server = ftp://archlinux.puzzle.ch/unstable/os/x86_64
    Include = /etc/pacman.d/unstable
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs
    and - pacman -Sy:
    :: Synchronizing package databases...
    core is up to date
    extra 303.3K 373.6K/s 00:00:01 [#####################] 100%
    local database is up to date

  • Upgraded mac mini to 2.33ghz duo core and 2gbram

    ok I made a mistake in my previous post. I upgraded my mac mini to 2.33ghz duo core and 2gb ram and still can't download and install my purchased copy of Lion, not mountain lion as I stated before, any how the specs saay I need a duo core cpu and 2 gb seems I am meeting the minimum requirements anyone know why I can't install it?

    See:
    http://osxdaily.com/2011/04/08/hack-mac-os-x-lion-for-core-duo-core-solo-mac/

  • Bgm.ser and jaxb.properties not created

    Is there a particular reason to why the bgm.ser and jaxb.properties files are not created when a schema only consists of a simpletype and I run the binding compiler???
    The two files seem to be created when I include a 'dummy' complextype in the schema. Is a complextype needed in order for the files to be created?
    Cheers.
    Anders
    <simpleType name="Values">
        <restriction base="string">
            <enumeration value="ValueOne"/>
            <enumeration value="ValueTwo"/>
            <enumeration value="ValueThree"/>
            <enumeration value="ValueFour"/>
        </restriction>
    </simpleType>

    I've had the same exact problem! I had the property file in my JAR file properly, but the JAXBContext.newInstance( "package.name" ) call was failing - while at the same time I could load the property file via the ClassLoader just fine, by hand.
    I played around with source for the jaxb beta a bit and I think I found the problem. I recompiled the JAR file after changing the "fileSep" variable in the "searchforcontextPath" method from "file.separatorChar" to "/".
    This seemed to fix the problem. Well, the problem of it not finding the properties file that is... now I've got some kinda non-marshalable exception (but I haven't even spent 3 minutes on that problem yet, as opposed to the hours wasted on this bug).
    I'm not sure if this bug only cropped up when running under a Windows env or not (my test was running under JBoss on XP... though I was building/compiling under Linux).
    Anyway... to fix this just change that variable.. it's on line 228 (i think... i might have added some debug lines of my own in the code) of the javax/xml/bind/ContextFinder.java file. Then just re-jar it over the old JAR -- oh yeah, you'll need a few Message.property files from the jaxb-api.jar file for the new jar file to work (so make sure you unjar the old file 1st or back it up or whatnot).

  • Is WebEx Enabled TelePresence supported with Expressway Core and Edge?

    Is WebEx Enabled TelePresence supported with the Expressway Core and Edge instead of using a VCS Control and Expressway? This is one thing I'm not sure of, as the scheduled conferences will have to register to the Expressway Core and wasn't sure if this was possible.

    Hi,
    It is supported, see the following release notes here:
    http://www.cisco.com/c/en/us/td/docs/telepresence/infrastructure/tms/release_note/cmr_hybrid_RNs_14_4.html#pgfId-164481
    Expressway-E/C use is also covered in the deployment guide:
    http://www.cisco.com/c/dam/en/us/td/docs/telepresence/infrastructure/tms/config_guide/cmr_hybrid_config_guide_tms_14_4.pdf
    -Jonathan
    Edit - links

  • [svn:bz-trunk] 16967: Bug: BLZ-549 - cyclic dependencies between core and remoting projects

    Revision: 16967
    Revision: 16967
    Author:   [email protected]
    Date:     2010-07-19 00:41:00 -0700 (Mon, 19 Jul 2010)
    Log Message:
    Bug: BLZ-549 - cyclic dependencies between core and remoting projects
    QA: Yes
    Doc: No
    Checkintess: Pass
    Details:
    -Removed the unnecessary dependency between core module tests and remoting module. Code module, including its tests, should not depend on any other module other than common module.
    -Remove blazeds-unittests project, instead added a test folder to blazeds-core project.
    -Fixed a minor bug in MessageDestination that I found during JUnit testing.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-549
    Modified Paths:
        blazeds/trunk/development/eclipse/projects/java/blazeds-core/.classpath
        blazeds/trunk/development/eclipse/projects/java/blazeds-core/.project
        blazeds/trunk/modules/core/src/flex/messaging/MessageDestination.java
        blazeds/trunk/modules/core/test/src/flex/messaging/DestinationTest.java
        blazeds/trunk/modules/core/test/src/flex/messaging/MessageBrokerTest.java
        blazeds/trunk/modules/core/test/src/flex/messaging/services/AbstractServiceTest.java
        blazeds/trunk/modules/core/test/src/flex/messaging/services/ServiceAdapterTest.java
    Removed Paths:
        blazeds/trunk/development/eclipse/projects/java/blazeds-unittests/.classpath
        blazeds/trunk/development/eclipse/projects/java/blazeds-unittests/.project

Maybe you are looking for

  • Unable to edit info in itunes????

    Hi, I have recently got a new PC, and I am having problems with itunes. Here is the details: The hard drive which contains itunes music folder has been put into the new PC has a secondary drive. I added folder within itunes and all my music is now th

  • Error in Reportin Agent job shedule.

    HI All, When i try to run Reporting Agent job i can see below  error message. Job started Step 001 started (program RSRA_JOB, variant , user ID K237830) Start package Q_RECON_SP_AUTO_4000_10 - Start setting Q_RECON_RA_AUTO_4000_10 with variant CC4000

  • Error in push sccm client CcmSetup failed with error code 0x80070643 ccmsetup sccm 2012

    i want to push sccm client for all computer i enable automatic side-wide client installation   some computer get error code 0x80070643 ccmsetup sccm 2012 this  when i tray manual installation get same error and ccmsetup.exe stopped 

  • HELP!! Upgrade software 4.5 messed up my Pearl

    I received an email from RIM telling me that 4.5 was available for my BB 8110.  I went to the website to downloads, plugged in my phone, selected 4.5 update.  The application opened and started working, at 8 of 10 task it said it had an error. Now my

  • How to transform a byte[] variable to a Integer variable?

    Can anybody do me a favor to tell me how to trasform a byte[]variable to a Integer or String variable? Thank you very much