Topic: SAXParserFactory.getSchema() Excep

Exception :
javax.security.auth.login.LoginException: java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()Ljavax/xml/validation/Schema;
Version Used in the application :
Tomcat : 5.0.28 Axis : 1.1 JDK(sun) : 1.4.2 Weblogic : 9.1
SOAP : 1.1 Xerces : 2.6
We are facing above failures,when trying to connect to weblogic server using Tomcat server as a web service.
Our application is deployed in the weblogic, when we directly access the application on weblogic server it is working fine.. but when we try to connect through Tomcat Server (Web service - SOAP and axis is deployed)
we getting javax.security.auth.login.LoginException.
at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.<init>(SAXParserImpl.java:124)
at com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl.newSAXParser(SAXParserFactoryImpl.java:98)
at weblogic.xml.jaxp.WebLogicSAXParser.<init>(WebLogicSAXParser.java:45)
at weblogic.xml.jaxp.WebLogicSAXParserFactory.newSAXParser(WebLogicSAXParserFactory.java:51)
at weblogic.rmi.internal.DescriptorManager.getDescriptorAsMap(DescriptorManager.java:176)
at weblogic.rmi.internal.DescriptorManager.getDescriptorAsMap(DescriptorManager.java:162)
at weblogic.rmi.internal.DescriptorManager.createRuntimeDescriptor(DescriptorManager.java:107)
at weblogic.rmi.internal.DescriptorManager.getBasicRuntimeDescriptor(DescriptorManager.java:88)
at weblogic.rmi.internal.DescriptorManager.getDescriptor(DescriptorManager.java:54)
at weblogic.rmi.extensions.server.ServerHelper.getRuntimeDescriptor(ServerHelper.java:332)
at weblogic.common.internal.RMIBootServiceStub.<clinit>(RMIBootServiceStub.java:29)
at weblogic.security.acl.internal.Security.authenticate(Security.java:177)
at weblogic.security.acl.internal.Security.authenticate(Security.java:146)
at weblogic.security.auth.Authenticate.authenticate(Authenticate.java:112)
It is working in Weblogic 8 version with same set-up.
We don't know why it gives this such exception.Can please help in this issue.

You get this Exception if you use an incompatible JAXP implementation.
If you use the (ancient) jaxp implementation bundled with jdk1.4..2, one of the things you miss is the javax.xml.parsers.SAXParserFactory.getSchema() method. (see the lack of it at http://java.sun.com/j2se/1.4.2/docs/api/javax/xml/parsers/SAXParserFactory.html )
In order to use a recent version of jaxp (e.g. 1.3, bundled with JWSDP) you will need to install the libraries (jaxp-api.jar, sax.jar, dom.jar, xercesImpl.jar, xalan.jar) and make sure they're preferred (by your classloader) above the default classpath by using the endorsed mechanism. See the jaxp faq for more info http://java.sun.com/webservices/jaxp/reference/faqs/index.html
Good luck!

Similar Messages

  • NoSuchMethod: javax.xml.parsers.SAXParserFactory.getSchema()

    Hi All,
    In a servlet I have created a SOAPMessage object based on the request received, and when I execute
    message.getSOAPBody I get the message:
    java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()
    I am running tomcat with jdk 1.5 and I am using saaj-api.jar, saaj_imp.jar and Fastinfoset.jar from jwsdp 1.6
    Anyone got any ideas what to do ?
    Kind regards,
    Marco Laponder

    Along with jdk1.4.2, Sun has bundled a currently ancient version of JAXP.
    So, get a recent version of a JAXP implementation (e.g. with JWSDP1.6), probably contained in jar-files called jaxp-api.jar, dom.jar, sax.jar, xalan.jar and xercesImpl.jar, and add these to your classpath when you're compiling/running.
    You're not done yet! Because the old jaxp libraries are bundled with your JVM, the classloader will find them through your bootclasspath, and they will be prefered above the new implementation you just added to the classpath. To resolve this, the JVM creators came up with the endorsed mechanism. This allows you to provide new classes for a list of predefined packages. These classes are already included in the jvm distribution, but are foreseen to be updated. See for more information about the endorsed mechanism: http://java.sun.com/j2se/1.4.2/docs/guide/standards/ .
    So to be short, you also have to make the jvm recognise them as endorsed libraries. E.g. by adding them to the <java-home>/lib/endorsed directory or by setting the java.endorsed.dirs property to the directories which include the new jar files.
    Your commandline to run app.class would become: java -Djava.endorsed.dirs=/home/endorsedDir;/anotherDir app

  • I am not able to create a JMS connection from a custom component in UCM

    I am trying to create a custom component which makes a JMS connection and inserts messages in JMS Queue.
    THe JMS server is hosted on Weblogic Application Server.
    When the code runs I am getting the factory object and the queue object.
    But when I try to get a connection it throws an error as pasted below.
    WHen I googled the same error It has shown a simliar problem in TOmcat in sun thread
    It said two jar files xerces.jar and xml-apis.jar are obsolete.
    I replaced with the new version.
    still the same problem occurred
    Please help
    Pasting the code and exception here
    Code __________________________________________
    import java.util.Date;
    import java.util.Hashtable;
    import javax.jms.*;
    import javax.naming.*;
    import weblogic.jms.client.WLConnectionImpl;
    import weblogic.jms.extensions.*;
    import javax.rmi.PortableRemoteObject;
    public class SimpleProducer {
    public static void drive() {
    final int NUM_MSGS;
         NUM_MSGS = 93;
    Context jndiContext = null;
    Hashtable<String, String> ht;
              ht = new Hashtable<String, String>();
              ht.put(Context.INITIAL_CONTEXT_FACTORY,
                        "weblogic.jndi.WLInitialContextFactory");
              ht.put(Context.PROVIDER_URL, "t3://punitp52975d:7001");
    try {
         jndiContext = new InitialContext(ht);
    } catch (NamingException e) {
    System.out.println("Could not create JNDI API context: " +
    e.toString());
    System.exit(1);
    ConnectionFactory connectionFactory = null;
    Destination dest = null;
    try {
                   Object home = jndiContext.lookup("CNFT"); // where iiopTestDS is jndi name for my DataSource.
    connectionFactory =(ConnectionFactory)PortableRemoteObject.narrow(home , ConnectionFactory.class);
         Object home1 = jndiContext.lookup("QUEUE2"); // where iiopTestDS is jndi name for my DataSource.
    dest =(Destination)PortableRemoteObject.narrow(home1 , Destination.class);
         /*connectionFactory = (ConnectionFactory) jndiContext.lookup(
    "CNFT");
    dest = (Destination) jndiContext.lookup("QUEUE2");
    System.out.println("connectionFactory,dest "+connectionFactory+dest);*/
    } catch (Exception e) {
    System.out.println("JNDI API lookup failed: " + e.toString());
    e.printStackTrace();
    System.exit(1);
    //WLConnectionImpl connection = null;
    WLConnection connection = null;
    WLMessageProducer producer = null;
    try {
                   System.out.println("Getting Connection "+(WLConnection) connectionFactory.createConnection());
    //connection = (WLConnection) connectionFactory.createConnection();
                   System.out.println("Connection created");
    WLSession session =
    (WLSession) connection.createSession(false, Session.CLIENT_ACKNOWLEDGE);
    producer = (WLMessageProducer) session.createProducer(dest);
    WLMessage message = (WLMessage) session.createTextMessage();
    //TextMessage message = session.createTextMessage();
    for (int i = 91; i < NUM_MSGS; i++) {
    ((TextMessage) message).setText("This is message " + (i + 1));
    Long l = new Date().getTime();
    message.setLongProperty("ReleasedDate",l );
    System.out.println("Sending message: " + ((TextMessage) message).getText());
    producer.send(message);
    producer.send(session.createMessage());
    } catch (Exception e) {
    System.out.println("Exception occurred: " + e.toString());
    } catch (Throwable et) {
    System.out.println("Exception occurred: " + et.toString());
    et.printStackTrace();
    finally {
    if (connection != null) {
    try {
    connection.close();
    } catch (Exception e) {
                             System.out.println("*************Instantiating Producer***************");
    Exception_________________________________________________________________
    Exception occurred: java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()Ljavax/xml/validation/Schema;
    java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()Ljavax/xml/validation/Schema;
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.<init>(SAXParserImpl.java:124)
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl.newSAXParserImpl(SAXParserFactoryImpl.java:115)
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl.setFeature(SAXParserFactoryImpl.java:143)
    at weblogic.xml.jaxp.WebLogicSAXParserFactory.<init>(WebLogicSAXParserFactory.java:62)
    at weblogic.rmi.internal.wls.WLSRMIEnvironment.getSAXParser(WLSRMIEnvironment.java:136)
    at weblogic.rmi.internal.DescriptorManager.getDescriptorAsMap(DescriptorManager.java:170)
    at weblogic.rmi.internal.DescriptorManager.getDescriptorAsMap(DescriptorManager.java:159)
    at weblogic.rmi.internal.DescriptorManager.createRuntimeDescriptor(DescriptorManager.java:104)
    at weblogic.rmi.internal.DescriptorManager.getBasicRuntimeDescriptor(DescriptorManager.java:85)
    at weblogic.rmi.internal.DescriptorManager.getDescriptor(DescriptorManager.java:51)
    at weblogic.rmi.internal.DescriptorManager.getDescriptor(DescriptorManager.java:37)
    at weblogic.rmi.internal.OIDManager.makeServerReference(OIDManager.java:194)
    at weblogic.rmi.internal.OIDManager.getReplacement(OIDManager.java:175)
    at weblogic.rmi.utils.io.RemoteObjectReplacer.replaceRemote(RemoteObjectReplacer.java:120)
    at weblogic.rmi.utils.io.RemoteObjectReplacer.replaceObject(RemoteObjectReplacer.java:103)
    at weblogic.rmi.extensions.server.ServerHelper.exportObject(ServerHelper.java:223)
    at weblogic.rmi.internal.OIDManager.initializeDGCServer(OIDManager.java:231)
    at weblogic.rmi.internal.OIDManager.getReplacement(OIDManager.java:144)
    at weblogic.rmi.utils.io.RemoteObjectReplacer.replaceRemote(RemoteObjectReplacer.java:120)
    at weblogic.rmi.utils.io.RemoteObjectReplacer.replaceObject(RemoteObjectReplacer.java:103)
    at weblogic.rmi.extensions.server.ServerHelper.exportObject(ServerHelper.java:223)
    at weblogic.corba.server.naming.ReferenceHelperImpl.exportObject(ReferenceHelperImpl.java:233)
    at weblogic.rmi.extensions.PortableRemoteObject.exportObject(PortableRemoteObject.java:34)
    at weblogic.messaging.dispatcher.DispatcherImpl.export(DispatcherImpl.java:85)

    This is probably related to this other issue http://www.adobeforums.com/webx/.59b7fbab/0.
    Jasmin

  • JAXB Demo Crashes - using JDK 1.4.2

    I have installed the pack (1.6) with JDK 1.4.2. That finished 'ok'.
    Now I am getting the error: [java] java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()Ljavax/xml/validation/Schema;
    when trying to run the bind choice jaxb demo.
    As far as I can tell the javax.xml libraries in the java jdk1.4 are too old. How will this work with jdk 1.4 ?
    Thanks.

    Just FYI -
    (This issue is also discussed in this forum, named Java Forums - JAXB JDK requirement.)
    I had a hard time trying to figure out the -D and the build file config. I am using Eclipse 3.1, so it is supposed to take care of all this for me, right?
    In Eclipse, if you click on the right side of the Run button to open it up, then from the dropdown select Run, a new window will open up that has all of your projects displayed. Select your JAXB project (which might already be highlighted) and you'll see some tabs.
    Select the Classpath tab.
    Here you'll see Bootstrap Entries. On the right you'll see an Add Jars button. Click on it.
    Add the JAXB and JAXP jar files, per the Sun specs:
    jaxb-api.jar
    jaxb-impl.jar
    jaxb-libs.jar
    jaxb-xjc.jar
    jaxp-api.jar
    dom.jar
    sax.jar
    xalan.jar
    xercesImpl.jar
    ....basically all the jars in the JAXB and JAXP lib directories, including the endorsed files, will do.
    This will take care of this issue with JAXB and the 1.4.2 issue when you use Eclipse 3.1. Hope this helps, as it took an experienced Eclipse developer to show me this...

  • Problem with JAXB

    I am trying to run a simple test program to unmarshall and XML doc and am getting the following error:
    [erdos OpenOfficeDev]$ ./java_jaxb.sh unmarshall sampleDoc.xml
    JAXBLIB /opt/tomcat50-jwsdp/jaxb/lib
    CLASSPATH /opt/tomcat50-jwsdp/jaxb/lib/jaxb-api.jar:/opt/tomcat50-jwsdp/jaxb/lib/jaxb-impl.jar:/opt/tomcat50-jwsdp/jaxb/lib/jaxb-libs.jar:/opt/tomcat50-jwsdp/jaxb/lib/jaxb-xjc.jar:/usr/java/j2sdk1.4.2_08/jre/lib/ext/xml-apis.jar:.:/opt/tomcat50-jwsdp/jwsdp-shared/lib/jax-qname.jar:/opt/tomcat50-jwsdp/jwsdp-shared/lib/namespace.jar:/opt/tomcat50-jwsdp/jwsdp-shared/lib/relaxngDatatype.jar:/opt/tomcat50-jwsdp/jaxp/lib/endorsed/dom.jar:/opt/tomcat50-jwsdp/jaxp/lib/endorsed/sax.jar:/opt/tomcat50-jwsdp/jaxp/lib/endorsed/xalan.jar:/opt/tomcat50-jwsdp/jaxp/lib/endorsed/xercesImpl.jar:/home/nscharfe/netbeans-4.1/ide5/modules/autoload/ext/xerces-2.6.2.jar:/home/nscharfe/resolver.jar:/home/nscharfe/xercesImpl.jar:/home/nscharfe/xercesSamples.jar:/home/nscharfe/xml-apis.jar:/opt/tomcat50-jwsdp/jaxp//jaxp-api.jar
    args.length =1
    unmarshall.Main file=sampleDoc.xml
    JAXBContext
    jc ood_jaxb.impl.runtime.DefaultJAXBContextImpl@d2906a
    u ood_jaxb.impl.runtime.UnmarshallerImpl@1434234
    Exception in thread "main" java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()Ljavax/xml/validation/Schema;
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.<init>(Unknown Source)
    at com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl.newSAXParser(Unknown Source)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.getXMLReader(AbstractUnmarshallerImpl.java:80)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:131)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:178)
    at unmarshall.main(unmarshall.java:56)
    Any ideas what the problem is? Do I need to include anything else in my classpath?
    I am running redhat linux.
    Any help is GREATLY appreciated

    Since I am running java 1.5.x, it seems like the only solution that the above thread suggests is to add rt.jar to my classpath. I did that and it did not help so my path is now;
    CLASSPATH /opt/tomcat50-jwsdp/jaxb/lib/jaxb-api.jar:/opt/tomcat50-jwsdp/jaxb/lib/jaxb-impl.jar:
    /opt/tomcat50-jwsdp/jaxb/lib/jaxb-libs.jar:/opt/tomcat50-jwsdp/jaxb/lib/jaxb-xjc.jar:
    /usr/java/j2sdk1.4.2_08/jre/lib/ext/xml-apis.jar:.:/opt/tomcat50-jwsdp/jwsdp-shared/lib/jax-qname.jar:
    opt/tomcat50-jwsdp/jwsdp-shared/lib/namespace.jar:/opt/tomcat50-jwsdp/jwsdp-shared/lib/relaxngDatatype.jar:
    /home/nscharfe/jdk1.5.0_04/jre/lib/rt.jar:/home/nscharfe/jdk1.5.0_04/jre/lib/javaws.jar:/home/nscharfe/jdk1.5.0_04/jre/lib/jce.jar:
    /home/nscharfe/jdk1.5.0_04/jre/lib/jsse.jar:/home/nscharfe/jdk1.5.0_04/jre/lib/plugin.jar:
    /home/nscharfe/jdk1.5.0_04/jre/lib/deploy.jar:/home/nscharfe/jdk1.5.0_04/jre/lib/charsets.jar:
    /opt/tomcat50-jwsdp/jaxp/lib/endorsed/dom.jar:/opt/tomcat50-jwsdp/jaxp/lib/endorsed/sax.jar:
    /opt/tomcat50-jwsdp/jaxp/lib/endorsed/xalan.jar:/opt/tomcat50-jwsdp/jaxp/lib/endorsed/xercesImpl.jar:
    /home/nscharfe/netbeans-4.1/ide5/modules/autoload/ext/xerces-2.6.2.jar:/home/nscharfe/resolver.jar:
    /home/nscharfe/xercesImpl.jar:/home/nscharfe/xercesSamples.jar:/home/nscharfe/xml-apis.jar:
    /opt/tomcat50-jwsdp/jaxp//jaxp-api.jar
    Did I miss any important info on the above thread? Any other suggestions?
    thanks so much for the help.

  • AS2 , Hermes2 SOAP ERROR ???

    Hi to all expert .
    iam new to java as well we AS2 .
    i have installed Hermes2 on my Fedora system with java JDK 1.5.06 i know its old but its the most recommended version , i have installed as well JCE since this program depends on it.
    i keep facing a strange error :
    javax.xml.soap.SOAPException: SOAP-ENV:Server java.lang.NoSuchMethodError: javax.xml.parsers.SAXParserFactory.getSchema()Ljavax/xml/validation/Schema;
    at hk.hku.cecid.piazza.commons.soap.SOAPSender.run(SOAPSender.java:655)
    at hk.hku.cecid.corvus.http.AS2EnvelopQuerySender.listAvailableMessage(AS2EnvelopQuerySender.java:124)
    at hk.hku.cecid.corvus.http.AS2EnvelopQuerySender.main(AS2EnvelopQuerySender.java:238)
    i think it has something with SAAJ .i used to have saaj-imp-1.3.jar and saaj-api-1.3.jar ..
    but i updatd them and still it dose not work ..
    thanks for your help .
    Regrads,
    MaaS

    Dont worry about it . I fixed it .
    By the way JAVA SDK , from 5.0.7 and up all the way to 6.0.13 are all buggy.
    Specially with SOAP , even if your get the SAAJ.jar updated . it would cause problems to other application you have.
    Regards,
    MaaS

  • How do I get a Up One Level in the Topics page of my screen layout?

    I am trying to insert an "Up One Screen" on my Topic page in my screen layouts and it's only allowing me to add a hyperlink to the Table of Contents. Any suggestions?

    What do you mean by Up One Screen? Where is Rh only allowing you to add a hyperlink to the TOC?
    What sort of help are you generating?
    What version of Rh are you using?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Is there a way to create a report of topics with missing images?

    If I move all images in a project to a different directory,
    is there a way to print out which topics have missing images?
    I would like to have all images in the HTMLHelp folder, since
    this is the default folder that images are copied to when I insert
    them from another source folder. If I move all images from my
    "Images" folder to the HTMLHelp folder, is there a way to generate
    a report that lists all topics with missing images?
    Normally, I've been using the "Images" report to determine
    which topics used that image before I moved them, but I'd like a
    report that denotes which topics are missing images, period.
    thanks in advance,
    ChristyG

    Hi ChristyG
    As long as you only move the images within the RoboHelp
    project, none should go missing!
    Unfortunately, I don't believe you have an easy report at
    your disposal that will advise which topics contain missing images.
    Cheers... Rick

  • Is there a way to expand all drop-down text in a single topic in the editor?

    I'm going through all the topics in a large RH10 project manually checking various things. A lot of topics contain drop-down text and to view the contents, I'm having to right click on each one and select 'Drop-down text properties'. Which is taking FOREVER. So:
    a) is there an option to expand all drop-down text in the current topic? I'm sure I remember this from a previous version but can't find it now.
    b) is there a keyboard shortcut to open drop-down text?
    Please say yes.

    a] Yes.
    b] No.
    There is nothing in Rh but there is a method on my site and on htttp://wvanweelden.eu The same scripts, just different explanations.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to search a specific topic in a forum?

    How to search a specific topic in a forum? who can offer me a solution. I'm really appreciate it.

    Enter something in the box next to the words Advanced Search at the upper right and click on the button to display a list of search hits. Then, in the box to the right of the list, click on the word help to bring this Search Help and Tips page up:
    http://search.java.sun.com/search/java/help.jsp

  • Upon upgrading iPhoto, iPhoto Help no longer works.  It gives the error message:  "The selected topic is currently unavailable. To see all iPhoto Help, you must be connected to the Internet." Help!?

    Upon upgrading iPhoto, iPhoto Help no longer works.  It gives the error message:  "The selected topic is currently unavailable. To see all iPhoto Help, you must be connected to the Internet."   I am obviously connected to the internet since you are reading this.
    I tried upgrading permissions but it did not help!?  Can anyone tell me what is wrong?  Thanks

    Try
    Reboot the computer, see if that fixes it.
    Then try:
    Backup your files off the computer (not TimeMachine) and disconnect
    Hold c boot off the 10.6 disk and simply reinstalling OS X
    Log in and update to 10.6.8
    c boot off the 10.6 disk again and use Disk Utility >Repair Disk
    reboot and all should be fine, except some third party programs that install kext files, those will have to be reinstalled from fresh sources.

  • Can not view topics in infolink

    Can not access topics from the Table of contents, they will
    show as Page can not be displayed. However when we try and access
    the same topic for another page it will display.

    Looking back at your original post, I am a bit confused. You
    say that some topics accessed from the TOC don't display but go on
    to say that these topics do display when viewed from "another
    page". Do you mean that links to these topics do display them and
    that it is just when you view them from the TOC that the problem
    occurs? Can you also confirm that none of the topics in the TOC
    display when viewed from it?
    If this the case I have to admit to being a little unsure
    what to suggest. Is "Infolink" some sort of in house browser
    platform or does it use a browser. If so, which one?

  • Unable to display topics in OHW

    Greetings,
    I am using OHW 2.0.2 and having problems displaying topics. My ohwconfig.xml looks like...
    <?xml version='1.0' encoding='UTF-8'?>
    <helpConfiguration
    version="2.0"
    xmlns="http://xmlns.oracle.com/help/web/config">
    <!-- Page branding based on ResourceBundle -->
    <brandings>
    <branding text="HP OpenView Web Console Help" />
    </brandings>
    <!-- Different locale setups. -->
    <locales>
    <!-- English: -->
    <locale language="en">
    <books>
    <helpSet id="ovwebhelp"
    location="http://localhost/ohs/?type=ov_web&amp;locale=en&amp;port=80" >
    <contentLocation baseURI="http://localhost/help/en/ov_web/ui/gStart/" id="1" />
    </helpSet>
    </books>
    </locale>
    </locales>
    <navigatorAliases>
    <!-- Uncomment for Tree Based TOC Navigator
    <alias name="oracle.help.navigator.tocNavigator.TOCNavigator"
    value="oracle.help.web.navigator.tocNavigator.TOCTreeNavigator" /> --
    </navigatorAliases>
    <parameters>
    <combineBooks>false</combineBooks>
    <useLabelInfo>true</useLabelInfo>
    <!--
    Number of locales that are kept in memory all the time.
    Please see the OHW documentation for more information on
    this parameter.
    <cacheSize>3</cacheSize>
    -->
    </parameters>
    </helpConfiguration>
    Unfortunately while ohw displays the table of contents correctly, I can't select any topic and see the table of contents. The URL for the helpset is a generated helpset with just one subhelpset:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <helpset>
    <title>Openview Help</title>
    <subhelpset location="http://peony:80/help/en/ov_web/ui/gStart/getStarted.hs" order="2147483647" />
    </helpset>
    I'm running all of this on a single Windows XP machine peony with JDK 1.4.2. What do I need to do to ensure OHW displays the content of my topics? I thought the <contentLocation> element was the only additional thing I needed to do, but that's not working.
    thanks,
    Elizabeth Dyer.

    Greetings,
    I am still pursuing problems with OHW and displaying the help content correctly. All the subhelpsets are under the same directory structure, e.g. help/en/ov_web/ui/hoh, help/en/ov_web/ui/usingHelp, etc. The html files in the subhelpsets usually reference a shared jpg file in their html file...
    <body leftmargin="10px" topmargin="12px" marginheight="12px">
    <img class="bannerrightimage" src="../../../common/image/banner_graphic.jpg" alt
    ="Library logo">
    where banner_graphic.jpg resides in the help/en/ov_web/common/image directory. Note that the common directory itself contains no subhelpsets, but stylesheets and graphics shared by all the help html files.
    I have added all the subhelpset locations to ohwconfig.xml with the <contentLocation> element (including the common/image directory). All subhelpsets are referenced via an apache alias that points to the help directory. OHW is not displaying images that are referenced in the html for the topic. If I look in my access_log for apache, I find that the URL to banner_graphic.jpg is wrong...
    15.2.113.125 - - [01/Mar/2005:13:12:18 -0700] "GET /ohw/help/common/image/banner_logo.gif HTTP/1.1" 302 -
    This should be /help/en/ov_web/common/image/banner_logo.gif
    So, what do I need to add to my ohwconfig.xml to get it to reference URLs that are shared by multiple html files, but still within a directory specified by a contentLocation element. If needed, I can mail you my ohwconfig.xml and portions of the subhelpsets to reproduce the problem.
    thanks,
    Elizabeth Dyer.

  • Apple support "We're sorry. We are unable to process this topic. Please choose the topic again." Why?

    I am trying to report a different problem through apple support but keep getting sent around in circles as whenever I make a submission for a response by email, I get the message in the title. I have tried submitting under different topics and it makes no difference.
    Alternatives: start a chat online? Wait time only 2 minutes? Or by phone, wait also only 2 minutes? Blatant lies.
    What on earth is going on? How can they get away with this? At best it's a farce, at worst it's malicious.
    Can anyone offer me some enlightenment?
    By the way, my real problem is to do with my Apple ID being disabled, an issue I am given to understand through research that many others are struggling to resolve, even if they can submit the problem in the first place.

    They are having high traffic due to the launch later today.  That could be the issue.  On a side note, if you Apple ID is disabled,  you have done a password reset and it is still showing disabled, you will need to call Apple to have them enable the account.  800-694-7466  or https://www.apple.com/contact/

  • Unable to create new topics in RH 9 Word

    Since the switch from RH 5X to RH 9, new topics are not publishing.  Typically the title would always be preceded by charachters, ex. "* # $ K > @ Pacer Contacts," however, now when new topics are created the title formats differently, ex. "*loc_cnt #Test $Test +CONTACTS:0 KTest @Status|0|||0||Testing 123|||| Test."  Also, when I look at the properties of the new page, the Topic Title & the Topic ID are blank. 

    Hi David,
    No, unfortunately not.  I’m in the process of converting the projects to html and I can create new topics there.  I never really figured out why it suddenly stopped.  I hope you have better luck that I had.
    Best regards,
    Michelle Bosu
    American President Lines Ltd.
    JP & S Trainer
    APL-Moving Business Forward
    Visit us at www.apl.com

Maybe you are looking for

  • Error when save date in SQL database

    Hi all, I try to save a date in to a sql database, but when I run my program I get following error: Invalid object 11/21/05 9:32 AM of type java.sql.Date assigned to host variable 3. In my database table I have a fields date (type Data)en time type(T

  • EXIF data for PNG files

    I seem to have lost all EXIF data for pictures that I first converted to PNG format, and then edited in iPhoto. The EXIF data is still there in the copies of the files in the "Originals" folder in the iPhoto Library. If I open these files with Graphi

  • ORA-31223

    I rely heavily on ldap authorization and have begun getting ORA-31223 errors. Searching the forums I see others with the same problem and indications that it may be a bug in the code for wwv_flow_ldap.is_member() but no conclusions or solutions. Have

  • Steps to assign new key combination to existing output type

    Hi, Can anyone share details about how to create a new key combination for existing output type. Regards, Dharmesh

  • Unable to fax between two ATA 187 attached fax machines

    I have two fax machines attached to the VOIP network using ATA 187's using the T38 fax relay.  I am unable to send faxes between the two devices.  Has anybody experienced this issue and if so what did you do to resolve the issue.  Tried fax passthrou