The hunt for the lost Config.dtd

Does anyone know if there's a link to the real config.dtd file anywhere?
Perhaps it's just me misunderstanding the "rules" about xml, that you're
supposed to refer to a link to the dtd file used for an xml file.
I'm aware off the fact that BEA has the link
edocs.bea.com/wls/docs60/config_xml/config.html#326936, in which the dtd
is included in an html document, however, I would like to have it as a
real dtd file without links and stuff.
For example, web.xml, http://java.sun.com/j2ee/dtds/web-app_2_2.dtd.
If anyone knows the whereabouts off config.dtd, I would be very grateful
for a tip.
sincerely,
Christopher Suarez
[email protected]

You actually don't HAVE to include a DTD declaration in your XML doc unless
you want to use a parser in validating mode. In fact, I never do DTD
validation since it's a big performance hit....
- Navneet
"Christopher Suarez" <[email protected]> wrote in message
news:[email protected]..
Does anyone know if there's a link to the real config.dtd file anywhere?
Perhaps it's just me misunderstanding the "rules" about xml, that you're
supposed to refer to a link to the dtd file used for an xml file.
I'm aware off the fact that BEA has the link
edocs.bea.com/wls/docs60/config_xml/config.html#326936, in which the dtd
is included in an html document, however, I would like to have it as a
real dtd file without links and stuff.
For example, web.xml, http://java.sun.com/j2ee/dtds/web-app_2_2.dtd.
If anyone knows the whereabouts off config.dtd, I would be very grateful
for a tip.
sincerely,
Christopher Suarez
[email protected]

Similar Messages

  • Serveradmin lost config after restart

    hi
    my problem is that on a restart of one of my 10.6.8 Servers parts of the Serveradmin configs are gone while some of them persists. The lost configs are everytime the same: VPN (complete) and iChat (a secondary but very important Host-Domain). Of course a can restore them from a backup but that shouldn't the standard procedure after a restart....
    maybe someone has the same issue?
    henning

    Just checked the logs of a restart. There are issues with the preferences of the vpnd. the log is full of this:
    com.apple.ppp.l2tp[1195]
    2012-04-05 23:48:34 CEST
    Server 'com.apple.ppp.l2tp' starting...
    vpnd[1195]
    No valid client IP addresses
    vpnd[1195]
    Error while reading PPP preferences
    vpnd[1195]
    Error processing prefs file
    com.apple.launchd[1]
    (com.apple.ppp.l2tp[1195]) Exited with exit code: 2
    com.apple.launchd[1]
    (com.apple.ppp.l2tp) Throttling respawn: Will start in 10 seconds
    vpnd[1237]
    Server 'com.apple.ppp.l2tp' starting...
    com.apple.ppp.l2tp[1237]
    2012-04-05 23:48:44 CEST
    Server 'com.apple.ppp.l2tp' starting...
    vpnd[1237]
    No valid client IP addresses
    vpnd[1237]
    Error while reading PPP preferences
    vpnd[1237]
    Error processing prefs file
    com.apple.launchd[1]
    (com.apple.ppp.l2tp[1237]) Exited with exit code: 2
    i checked the pref (/Library/Preferences/SystemConfiguration/com.apple.RemoteAccessServers.plist ) with plutil and it is okay and there are valid client IP adresses inside that plist. strange.
    I will restart the server and have a look at that file then..
    still no idea about the lost ichat domain...

  • Compacting the cache-config.xml for multiple cache-store

    Hi,
    I have a cache-config.xml that has various ReadWriteBackingMaps with different CacheLoader implementations. I was wondering of the best way to compact this xml using the scheme-ref tag, as all I really need is schemes, with different cache stores. e.g. I have an InstrumentCacheStore and a CurrencyCacheStore .. which invoke different CacheLoaders. they are both distributed caches.
    I thought the below would work, but it dosen't.. :( when loading a currency, the InstrumentCacheStore gets invoked.
    is there a way to compact this XML? Else, for 6 different cache loaders that I have, do I have to specify the whole distributed-scheme again and again?
    <cache-config>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>instrument-*</cache-name>
    <scheme-name>distributed-instrument-scheme</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>currency-*</cache-name>
    <scheme-name>distributed-currency-scheme</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>distributed-instrument-scheme</scheme-name>
    <scheme-ref>distributed-scheme</scheme-ref>
    </distributed-scheme>
    <distributed-scheme>
    <scheme-name>distributed-currency-scheme</scheme-name>
    <scheme-ref>distributed-scheme</scheme-ref>
    <!-- THIS DOES NOT OVERRIDE THE DEFAULT distributed-scheme? -->
    <cachestore-scheme>
    <class-scheme>
    <class-name>coherence.cachestore.CurrencyCacheStore</class-name>
    </class-scheme>
    </cachestore-scheme>
    </distributed-scheme>
    <distributed-scheme>
    <scheme-name>distributed-scheme</scheme-name>
    <service-name>DistributedCache</service-name>
    <backing-map-scheme>
    <read-write-backing-map-scheme>
    <internal-cache-scheme>
    <local-scheme>
    <scheme-ref>LocalSizeLimited</scheme-ref>
    </local-scheme>
    </internal-cache-scheme>
    <cachestore-scheme>
    <class-scheme>
    <class-name>coherence.cachestore.InstrumentCacheStore</class-name>
    </class-scheme>
    </cachestore-scheme>
    </read-write-backing-map-scheme>
    </backing-map-scheme>
    <serializer>
    <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
    </serializer>
    <partition-count>5557</partition-count>
    <backup-count>1</backup-count>
    <thread-count>10</thread-count>
    <autostart>true</autostart>
    </distributed-scheme>
    <local-scheme>
    <scheme-name>LocalSizeLimited</scheme-name>
    <high-units>500000000</high-units>
    <low-units>10000</low-units>
    <unit-calculator>BINARY</unit-calculator>
    </local-scheme>
    </caching-schemes>
    </cache-config>
    --------------------------------------------------------------------------------------------------------------

    There are two possible ways to sort this out
    1. The cache configuration for the distributed-currency-scheme shown in the original post is wrong and does not correctly override the cache store, it should look like this:.
    <distributed-scheme>
      <scheme-name>distributed-currency-scheme</scheme-name>
      <scheme-ref>distributed-scheme</scheme-ref>
      <backing-map-scheme>
        <read-write-backing-map-scheme>
          <internal-cache-scheme>
            <local-scheme>
              <scheme-ref>LocalSizeLimited</scheme-ref>
            </local-scheme>
          </internal-cache-scheme>
          <cachestore-scheme>
            <class-scheme>
              <class-name>coherence.examples.CurrencyCacheStore</class-name>
            </class-scheme>
          </cachestore-scheme>
        </read-write-backing-map-scheme>
      </backing-map-scheme>
    </distributed-scheme> 2. You can use a single scheme and parameterise it like this:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
      <caching-scheme-mapping>
        <cache-mapping>
          <cache-name>instrument-*</cache-name>
          <scheme-name>distributed-scheme</scheme-name>
          <init-params>
            <init-param>
              <param-name>cache-store-class-name</param-name>
              <param-value>coherence.examples.InstrumentCacheStore</param-value>
            </init-param>
          </init-params>
        </cache-mapping>
        <cache-mapping>
          <cache-name>currency-*</cache-name>
          <scheme-name>distributed-scheme</scheme-name>
          <init-params>
            <init-param>
              <param-name>cache-store-class-name</param-name>
              <param-value>coherence.examples.CurrencyCacheStore</param-value>
            </init-param>
          </init-params>
        </cache-mapping>
      </caching-scheme-mapping>
      <caching-schemes>
        <distributed-scheme>
          <scheme-name>distributed-scheme</scheme-name>
          <service-name>DistributedCache</service-name>
          <backing-map-scheme>
            <read-write-backing-map-scheme>
              <internal-cache-scheme>
                <local-scheme>
                  <scheme-ref>LocalSizeLimited</scheme-ref>
                </local-scheme>
              </internal-cache-scheme>
              <cachestore-scheme>
                <class-scheme>
                  <class-name>{cache-store-class-name}</class-name>
                </class-scheme>
              </cachestore-scheme>
            </read-write-backing-map-scheme>
          </backing-map-scheme>
          <serializer>
            <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
          </serializer>
          <partition-count>5557</partition-count>
          <backup-count>1</backup-count>
          <thread-count>10</thread-count>
          <autostart>true</autostart>
        </distributed-scheme>
        <local-scheme>
          <scheme-name>LocalSizeLimited</scheme-name>
          <high-units>500000000</high-units>
          <low-units>10000</low-units>
          <unit-calculator>BINARY</unit-calculator>
        </local-scheme>
      </caching-schemes>
    </cache-config>Parameter names from the init-params part of each cache mapping can be used inside curly brackets in the cache scheme part.
    Hope that helps,
    JK

  • Despite my Javascript for Firefox 23 being "enabled" ( I checked re the "about:config" steps), some websites are still asking me to enable my Javascript.

    Despite my Javascript for Firefox 23 being "enabled" ( I checked re the "about:config" steps), some websites are still asking me to enable my Javascript to view content. Safari works without any problem. OS/X 10.8.4

    These files are hidden to me because my OS/X is 10.8.4 and I cannot make them appear. This is way, way more trouble than it's worth. Thanks for your help. Firefox has lost me.

  • When the about:config setting for swipe are changed to allow changing tabs with swipe it does not repond and performs the default back and forward in browsing history action on the selected window instead of switching tabs. How do I get it to work?

    In about:config, the values I changed to for the preference name browser.gesture.swipe.left was Browser:PrevTab and for browser.gesture.swipe.right was Browser:NextTab.
    I have the latest synaptics touch pad on my laptop and it supports three touch swipe on windows pcs and on firefox. The about:config setting seem to be specific for MACs and so does not responds to windows changes.

    Hi,
    I suggest you try the steps in this thread for test:
    Disable Suggested Sites does not work.
    http://answers.microsoft.com/en-us/ie/forum/ie9-windows_7/disable-suggested-sites-does-not-work/4ba064b1-1c6e-43f1-939e-2db1d335b2ef
    Regards,
    Vincent Wang
    TechNet Community Support

  • When closing Firefox windows, I would like a warning before the last window closes. The about:config settings do nothing. There is a warning for multiple tabs..

    When closing Firefox windows, I would like a warning before the last window closes. The about:config settings do nothing. There is a warning for multiple tabs... why not for the last window? I do not use tabs... just windows... I have a mouse button programmed for that. It is really irritating to have to restart Firefox all the time and then open the history window because no warning was issued!

    This is ridiculous. I've had this problems for years now and I'm finally walking away from Firefox. I use my keyboards more than my mouse, and how many times does your finger slip and hit Command Q instead of W. How come FF can't reset something as trivial as this? So many people are having problems with this?
    Feels like FF has become too big, too slow and just not cooperative anymore. What a shame, I've been using Netscape/Firefox for 13 years. This is silly.

  • I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info in apps) and reverted back to all my old data.  How can I retrieve all the lost data??

    I got the new iPhone5 back in Dec, I hooked it up to my computer for the 1st time this wk.  It deleted all new data added since Dec (notes,contacts,texts,pics, info added to apps) and reverted back to all my old data (literally uploaded all of my old texts and 1400 old pics and deleted anything new).  How can I retrieve all the lost data?? Please help!!

    SkyDaughter29 wrote:
    My current situation: I have soooo many texts on my iphone and I haven't deleted many because I need the information contained in them for future reference and for legal purposes.  I would really like to find a means and way to save them other than on the phone itself. I've done searches for various apps yet I'm not finding what I think I would need.  It appears Apple does not sync the texts between the iphone and my MacBook Pro.
    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Best of luck.

  • My favicons are not showing up for all my imported bookmarks as well as certain current bookmarks and when I open the about:config it says "browser.chrome.favicons;false". Shouldn't this be true and how to I change it?

    I had to rebuild my computer and when I imported all of my bookmarks they had no favicons. I started getting some of the favicons when I would go to the websight it would reconnect, but now I can't seem to see almost any of them. I did a search on Google and one tech site suggested the about:config file and that the "browser.chrome.favicons;false" should be set to true. But when I toggle it to true and restart Firefox it is once more set to false. I know it doesn't seem like much, but it is really annoying not having those favicons.
    Help me Obi Wan Firefox you are my only hope.

    The browser.chrome.favicons preference should be set to true, as it is not retaining the value when you restart Firefox, see the [[Preferences are not saved]] article for possible causes.

  • How can i cancel a password i set in the html config utility for laserjet p1102w under mac osx 10.6?

    After setting a password in the Networking tab of the HTML Config Utility for HP Laserjet P1102w under MAC OSx 10.6, I cannot access either the settings or the Networking tabs again. How can I access them or just cancel the password I set?

    hi,
    I beleive your question has been answered in a different post
    http://h30434.www3.hp.com/t5/Printer-Networking-and-Wireless/Reset-the-admin-password-on-the-web-pag...
    hope this helps
    Russ@HP
    Say thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution
    (Although I am employed by HP, I am speaking for myself and not for HP)
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++

  • I lost my iPhone a few days ago and I put it on the lost mode. I don't want to give up looking for it. If a person stole it, is there a way for them to get into it or is it locked? I don't want to give up!!!

    I lost my iPhone a few days ago and I put it on the lost mode. I don't want to give up looking for it. If a person stole it, is there a way for them to get into it or is it locked? I don't want to give up!!! But if there is a way that they could get in and take over my phone with a new number without me deactivating the iPhone and activating a different phone with my number.

    lost mode don't depend of the sim card. If you take your Iphone on Lost mode... anybody can use it with the original card sim or with an other one.
    Did you try to localise it ?
    But hope that thief don't make a restore of the Iphone... Call your Mobile Operator to try to block the IMEI Number.

  • TS4006 my iphone has gone into the lost mode and i have tried to reactivate it with itunes but its not working. itunes says i should insert the simcard pin code but there is no option for me to do that on the phone or itunes. please help........

    please help my iphone 4s has gone into the lost mode and i cant re-activate it i dont know what to do. Itunes needs me to put the Simcard pin but i dont have any option for that.

    Hello Buzzy78,
    Try to put your iPhone in Recovery mode and then Restore it to Factory settings and see if you are able to get into your iPhone.
    Recovery Mode : http://support.apple.com/kb/HT1808

  • I cannot get photos placed in InDesign CS5 to show up only as grayscale/black. When a separation is done, part of the photos show up on both parts of the color separation. I've been hunting for a solution for hours.

    I cannot get photos placed in InDesign CS5 to show up only as grayscale/black. When a separation is done, part of the photos show up on both parts of the color separation. I've been hunting for a solution for hours. !

    ALSO, on the iPod under Settings>General>iTunes Sync, you may need to back out of the "iTunes Wi-fi Sync," and reopen it to get it to update.
    (I use iTunes 11.1.5.5)

  • What value to put in for a preference in the about:config forlder that would allow me to use the f12 key to enable/disable a firefox add-on.

    Im trying to set it up so hitting the F12 key will enable/disable Addblock Plus because their are some web sites I need it disabled completely on.
    The preference is already there in the about:config screen but the value is left blank for you to fill in if you want to use the feature.
    I just need to know what value would represent pressing the F12 Key

    '''F12''' is what you need as the string Value for '''extensions.adblockplus.enable_key'''

  • I am using Aurora, but I can't find out how to ask a question for it and not firefox. My real question is how to reach the about: config page in Aurora.

    For some reason, Mozilla Support has no section for me to ask a question about Mozilla Aurora. I need to know how to reach the about: config page in Aurora and no one has apparently asked this question before. Someone please help me on this issue because no one seems to know

    Note that your System Details List shows that you have a user.js file in the profile folder to initialize prefs each time Firefox starts.
    The user.js file is only present if you or other software has created this file and normally it wouldn't be there.
    You can check its content with a plain text editor (right-click: Open with) if you didn't create this file yourself.
    The user.js file is read each time Firefox is started and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    *http://kb.mozillazine.org/Preferences_not_saved

  • How do I set the about:config settings for all users? iprism keeps prompting from authentication for users.

    When users log on and try to open Firefox 23.0.1, users are prompted with Iprism Authentication. We made changes to the firefox about:config values "network.automatic-ntlm-auth.allow.-non-fqdn" and "Network.negotiate-auth.allow-non-fqdn" to true and it works, but only works on a per user basis. How can we set this up for all users?

    I would think the about:config entries discussed are ex-factory set to values each user has to change individually, after the installation has run its course. The solution could be to have patched files ready to install post factum:
    [https://developer.mozilla.org/en-US/docs/Mozilla/Preferences/A_brief_guide_to_Mozilla_preferences A Brief Guide to Mozilla Preferences - MDN]

Maybe you are looking for