Is It legal to use Jakarta I18N Tag Library in my projects on work?

I'm a JSP pages developer on my work and Jakarta I18N Tag Library is very usefull for me.
But I'm not sure about licensing. Can I use this library in commercial projects?

I am not a lawyer, but ys, the Apache Lisence allows you to use the library for such a purpose.

Similar Messages

  • Jakarta i18n Tags

    I'm trying to use tag libs to i18n my jsp based site. I,m using jakarta i18n based tags. This is what I understand/done so far.
    Changed the page encoding on all pages to UTF-8.
    Searched through all of the pages for text/data that has to be i18n. Placed all this in a message tag. The message tag contains a key to the text/data that I have written/translated into property files.
    I understand that ResourceBundles in the form of i18n:bundle tag, which are used in conjunction with the property files that I have. I just don't understand how? Or where the property files should be stored.
    Also from what I've read, a locale setting is required, i18n:locale, however I don't understand how to use this tag.
    Any help would be much appreciated.
    Regards

    You might look at an article just posted to the main page on java.sun.com.
    http://developer.java.sun.com/developer/technicalArticles/Intl/MultilingualJSP/
    The article is titled, "Developing Multilingual Web Applications Using JavaServer Pages Technology" and does cover the use of the JSTL tags you mention.
    -David

  • Using a tomahawk tag library.

    The problem of displaying rows as columns in h:dataTable has been solved using the t:dataList tag.
    I need a way to be able to rearrange components (dynamically) and display. I need some examples using the tomahawk tags. help will be appreciated.

    take a look at this this

  • How use the pager tag library for multi pagin

    hi,
    in fact i be new in the Jsp World so i want to use the multi pagin in my jsp can you help me.
    best regards

    So, what do you mean by "multi pagin"? Could you please explain
    it a little clearly?
    Regards
    greenidiot

  • Need to use hyperlink with tracking code in Edge project, not working

    I have been using test URL's inserted on invisible "hot spot" elements in my edge animate project that have been opening fine in the browser. Now I need to update those URLs with tracking syntax, but when I change it in Edge (replace the URL in the actions panel for that element) and then run the animation in the browser, the link will not open.
    Any thoughts or suggestions?

    Never mind, the URL itself had quotation marks that needed to be removed; once that was done the URL's opened properly.

  • How to use JSP custom tag lib in PAR file?

    Hi All,
    I am trying to customize mastheaderpar file. For that I have downloaded relevant par file and making the changes accordingly.
    As part of the changes I would require to use JSP custom tag library in my par file.
    I have the TLD file and relevant classes in the jar file. I would like to know where and what kind of modifications have to be done to use the jsp custom tag library.
    I tried modifying some things in portalapp.xml but was not successful.
    Please help me on how to proceed with this? It would be great if you can provide the xml entry to use this tag library
    Thanks
    Santhosh

    Hi Johny,
    Thanks for the reply. Actually I am able to change colors etc. with out any problem.
    My requirement is to use XMLTaglib in mastheader par file. This tag lib is from apache tomcat. I have the relevant TLD and class files. I copied TLD file into taglib dir of portal-inf and class file in src api.
    And I have added the following line in portalapp.xml under component-profile section of default
    <property name="tlxtag" value="/SERVICE/Newmastheader/taglib/taglibs-xtags.tld">
    Is this the right way to use tag lib? Actually before adding this line I used to get the error saying "Error parsing taglib", but now the error does not occur and I am getting new error. This is an exception in one of the taglib classes.
    Could any one provide me some inputs on how to check this error?
    Thanks
    Santhosh

  • How to use the JRun Custom tag library wiith Weblogic 5.1?

    Hello,
    is it possible to use the JRUN Tag Library with Bea Weblogic 5.1? We
    got an error message like:
    weblogic.servlet.jsp.JspException: (line -1): Error in tag library at:
    'jrun': T
    here is no setter method for property 'code', for Tag class
    'allaire.taglib.Serv
    letTag'
    Thank you for any info!
    Stefan

    Hi Joe,
    I don't know, however someone that follows the JSP newsgroup [1] may be
    able to help. Could you try your post there.
    Thanks,
    Bruce
    [1]
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=xover&group=weblogic.developer.interest.jsp
    Joe Kamenar wrote:
    >
    I have a question. I need to do a sort on news articles in our database, sorting
    by the date they were posted. I then want to take only the top 6 articles. We
    are using Weblogic 5.1. When I use the following statement, 6 articles are taken
    from the database, then sorted, which ends up leaving out the most recent articles:
    <cm:select contentHome="com.beasys.commerce.axiom.document.Document" query="<%=contentQuery%>"
    sortby = "creationDate DESC, headlineDate DESC" max="6" id="contentList" />
    I need to get ALL the articles for the sort, then just take the most recent 6.
    So, I know that I can use the following code and monitor the counter variable,
    "i". But, how do i do this to only display the top 6 items?
    <es:foreachinarray id="content" array="contentList" type="com.beasys.commerce.axiom.content.Content"
    counterId="i">
    <% myStr=content.getIdentifier(); %>
    <% if (i<6) {
    %>
    <div class="marginText">
    <cm:printproperty id="content" name="title" encode="html" />  
    <a href="<%=new String(news_display.jsp?id="+myStr)%">">more</a>
    </div>
    <% } %>
    </es:foreachinarray>
    However, when I run this, no results show up. What is the correct way to do this?
    - Joe</a>

  • How to use the JRun Custom tag library with Weblogic 5.1?

    Hello,
              is it possible to use the JRUN Tag Library with Bea Weblogic 5.1? We
              got an error message like:
              weblogic.servlet.jsp.JspException: (line -1): Error in tag library at:
              'jrun': T
              here is no setter method for property 'code', for Tag class
              'allaire.taglib.Serv
              letTag'
              Thank you for any info!
              Stefan
              

    Hi Joe,
    I don't know, however someone that follows the JSP newsgroup [1] may be
    able to help. Could you try your post there.
    Thanks,
    Bruce
    [1]
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=xover&group=weblogic.developer.interest.jsp
    Joe Kamenar wrote:
    >
    I have a question. I need to do a sort on news articles in our database, sorting
    by the date they were posted. I then want to take only the top 6 articles. We
    are using Weblogic 5.1. When I use the following statement, 6 articles are taken
    from the database, then sorted, which ends up leaving out the most recent articles:
    <cm:select contentHome="com.beasys.commerce.axiom.document.Document" query="<%=contentQuery%>"
    sortby = "creationDate DESC, headlineDate DESC" max="6" id="contentList" />
    I need to get ALL the articles for the sort, then just take the most recent 6.
    So, I know that I can use the following code and monitor the counter variable,
    "i". But, how do i do this to only display the top 6 items?
    <es:foreachinarray id="content" array="contentList" type="com.beasys.commerce.axiom.content.Content"
    counterId="i">
    <% myStr=content.getIdentifier(); %>
    <% if (i<6) {
    %>
    <div class="marginText">
    <cm:printproperty id="content" name="title" encode="html" />  
    <a href="<%=new String(news_display.jsp?id="+myStr)%">">more</a>
    </div>
    <% } %>
    </es:foreachinarray>
    However, when I run this, no results show up. What is the correct way to do this?
    - Joe</a>

  • Tag instances - same instance being used across multiple tags

    Hi
              I am using BEA WebLogic Server 6.1 SP2
              Problem:
              Tag instances - same instance being used across multiple tags
              The problem is that when I use the same jsp tag several times in a page,
              The tag is being instantiated only one time, as a result the class
              attributes
              retain their values when activating the tags.
              Example:
              A code that demonstrates the problem (not sure that it is compiled)
              public FooTag extends TagSupport {
              private boolean isValid = true;
              private String name;
              public setName(String x){
              name = x;
              public int doStartTag() throws JspException
              if (name.equals("x"){
              isValid = false;
              return SKIP_BODY;
              public int doEndTag() {
              if (isValid){
              return EVAL_PAGE;
              <table>
              <tr>
              <td><mpower:FOOTAG name="x"/>
              <!-- isValid attribute is set to false -->
              A FOOTAG implmented in FooTag </td>
              </tr>
              <tr>
              <td><mpower:FOOTAG name="y"/>
              <!-- isValid attribute still false (we expected it to be true) ! -->
              A FOOTAG implmented in FooTag </td>
              </tr>
              </table>
              P.S.
              I am using the same tags library with Tomcat and iPlanet Application severs,
              I did not get this problem there !!
              

              What should I do to reinitialize the tag? We have the same problem on custom tag.
              We have TabSet tag, which contains a set of Tab tag. In Weblogic 5.1, everything
              works ok, however when we run it in weblogic 6.1, Tab object seems like share the
              same instance, say if I have 2 Tabs in the TabSet, it ends up shows 2 same tabs with
              the apperance of the last tab added to the tabset on the web browser. We do implement
              release() method to call super.release() of TagSupport class.
              Any help is very appreciated.
              Thanks,
              Kimberly
              "Simon Spruzen" <[email protected]> wrote:
              >
              >This is allowed. You must implement public void release() on your tag, and
              >WLS will
              >call it before this method if WLS elects to reuse the tag instance. Your
              >release
              >method just reinitialises the tag as required.
              >
              >simon.
              >
              >"Eyal H" <[email protected]> wrote:
              >>Hi
              >>
              >>I am using BEA WebLogic Server 6.1 SP2
              >>
              >>Problem:
              >>
              >>Tag instances - same instance being used across multiple tags
              >>
              >>The problem is that when I use the same jsp tag several times in a page,
              >>
              >>The tag is being instantiated only one time, as a result the class
              >>
              >>attributes
              >>
              >>retain their values when activating the tags.
              >>
              >>Example:
              >>
              >>A code that demonstrates the problem (not sure that it is compiled)
              >>
              >>public FooTag extends TagSupport {
              >>
              >>private boolean isValid = true;
              >>
              >>private String name;
              >>
              >>public setName(String x){
              >>
              >>name = x;
              >>
              >>}
              >>
              >>public int doStartTag() throws JspException
              >>
              >>if (name.equals("x"){
              >>
              >>isValid = false;
              >>
              >>}
              >>
              >>return SKIP_BODY;
              >>
              >>}
              >>
              >>public int doEndTag() {
              >>
              >>if (isValid){
              >>
              >>......
              >>
              >>}
              >>
              >>return EVAL_PAGE;
              >>
              >>}
              >>
              >>}
              >>
              >>
              >>
              >>
              >>
              >><table>
              >>
              >><tr>
              >>
              >><td><mpower:FOOTAG name="x"/>
              >>
              >><!-- isValid attribute is set to false -->
              >>
              >>A FOOTAG implmented in FooTag </td>
              >>
              >></tr>
              >>
              >><tr>
              >>
              >><td><mpower:FOOTAG name="y"/>
              >>
              >><!-- isValid attribute still false (we expected it to be true) ! -->
              >>
              >>A FOOTAG implmented in FooTag </td>
              >>
              >></tr>
              >>
              >></table>
              >>
              >>
              >>
              >>P.S.
              >>
              >>I am using the same tags library with Tomcat and iPlanet Application severs,
              >>
              >>I did not get this problem there !!
              >>
              >>
              >>
              >
              

  • Pagination using pager tag library (logical groupings)

    I'm currently trying to achieve pagination using the pager tag library provided by jsptags.com.
    Instead of the usual breaking up the records into a fix number to be displayed per page, I need to display these records by grouping per page. E.g., my records are grouped by countries, so each group varies in size.
    I would not be accessing the database directly from the JSP page, in fact, the JSP page will get a collection of the objects that I want to display per page.
    Has anyone done anything like this before? Would appreciate very much if you could share with me how you implement this.
    Thanks!

    Hi there,
    I am wondering if you found the solution for your question with paging in JSP. if so i will really appreciate if you can let me know, how you did it. I am using Pager tag lib from JSPTags as well and i used collection object to iterate through. But i have some problems. I am wondeinf if you can help me with this
    Thanks
    Vik

  • The legality of using a student version of CS6 at home (legal) and also using it at work (?)

    Whilst I know it is legal to use my student bought version of CS6 for commercial work at home I don't know for sure if it is legal to also install the suite at my workplace (an architect firm).
    I found two licencing answers which seem to imply that I could use the suite at home and at work (though not at the same time).
    Can I use my software on two computers?
    If you own, or are the primary user of, a single-user or volume license Adobe product that is installed on a computer at work, you can also install and use the software on one secondary computer of the same platform at home or on a portable computer. However, you may not run the software simultaneously on both the primary and secondary computers. No more than one user can use a single-user license Adobe product.
    *Copied from: http://helpx.adobe.com/x-productkb/policy-pricing/end-user-license-agreements-faq.html
    Can I use Adobe Student and Teacher Edition software on more than one computer?
    Adobe Student and Teacher Edition software may be used on two computers only. This is ensured through a product activation procedure, which is performed online.
    Perhaps posting here is not a definitive way of finding out an answer to my question... if so, where else could I go?
    Thanks

    We have a saying here in Germany: "Wer viel fragt, geht viel irre." Meaning the more you ask, the more you get confused. The simple legal interpretation is, that what is not explicitly precluded/ exempted in any sort of contract is considered as never having been part of this contract and thus nil and void. While going on at some length about the secondary install, neither the edu FAQ nor the EULA make any mention of what your primary computer actually needs to be or where it must be located. So for all intents and purposes a computer provided by a company where you intern could be considered just that as long as the license you install on it can only be used by you, meaning no other person can use it under a differtent user account on the same machine, which is technically perfectly doable by eitehr managing the Activation/ Adobe ID yourself or using the operating system's user privileges and file permissions to prevent access to e.g. the license store folders. Beyond that, you cannot expect any 100% definite answer, only taking this to court on a case by case basis could, but I guess that's not the point in the first place. People do weird things with their licenses all the time and depending on where in the world you live or even use a program at any given time, half of that stuff may be invalid, regardless. The only personal observation I will make here: A company that is dependent on a student's own PS license is probably not a place I would consider a good place for getting my career started...
    Mylenium

  • Connection Pooling and JSP Custom Tag Library - is code (inside) the best way/correc?

    Hi, can anyone advise as to whether my tag library code (based
    on Apache Jakarta Project) will actually achieve connection
    pooling functionality across my entire JSP based application? I
    am slightly concerned that my OracleConnectionCacheImpl object
    may exist multiple times, hence rendering my conection pooling
    attempt useless.
    package com.solved.tag.dbtags.connection;
    import java.io.IOException;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.servlet.jsp.tagext.TagSupport;
    import javax.servlet.jsp.JspTagException;
    import javax.sql.DataSource;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import oracle.jdbc.pool.OracleConnectionCacheImpl;
    * <p>JSP tag connection, used to get a
    * java.sql.Connection object.</p>
    * <p>JSP Tag Lib Descriptor
    * <pre>
    * &lt;name>connection&lt;/name>
    &lt;tagclass>com.solved.tag.dbtags.connection.ConnectionTag&lt;/t
    agclass>
    * &lt;bodycontent>JSP&lt;/bodycontent>
    &lt;teiclass>com.solved.tag.dbtags.connection.ConnectionTEI&lt;/t
    eiclass>
    * &lt;info>Opens a connection based on a jndiName.&lt;/info>
    * &lt;attribute>
    * &lt;name>id&lt;/name>
    * &lt;required>true&lt;/required>
    * &lt;rtexprvalue>false&lt;/rtexprvalue>
    * &lt;/attribute>
    * </pre>
    * @author Matt Shannon
    public class ConnectionTag extends TagSupport {
    static private OracleConnectionCacheImpl cache = null;
    public int doStartTag() throws JspTagException {
    try {
    Connection conn = null;
    if (cache == null) {
    try {
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup
    ("jdbc/pool/OracleCache");
    cache = (OracleConnectionCacheImpl)ds;
    catch (NamingException ne) {
    throw new JspTagException(ne.toString());
    conn = cache.getConnection();
    pageContext.setAttribute(getId(),conn);
    catch (SQLException e) {
    throw new JspTagException(e.toString());
    return EVAL_BODY_INCLUDE;
    package com.solved.tag.dbtags.connection;
    import java.sql.Connection;
    import java.sql.SQLException;
    import javax.servlet.jsp.tagext.TagSupport;
    * <p>JSP tag closeconnection, used to close the
    * specified java.sql.Connection.<p>
    * <p>JSP Tag Lib Descriptor
    * <pre>
    * &lt;name>closeConnection&lt;/name>
    &lt;tagclass>com.solved.tag.dbtags.connection.CloseConnectionTag&
    lt;/tagclass>
    * &lt;bodycontent>empty&lt;/bodycontent>
    * &lt;info>Close the specified connection. The "conn"
    attribute is the name of a
    * connection object in the page context.&lt;/info>
    * &lt;attribute>
    * &lt;name>conn&lt;/name>
    * &lt;required>true&lt;/required>
    * &lt;rtexprvalue>false&lt;/rtexprvalue>
    * &lt;/attribute>
    * </pre>
    * @author Matt Shannon
    * @see ConnectionTag
    public class CloseConnectionTag extends TagSupport {
    private String _connId = null;
    * The "conn" attribute is the name of a
    * page context object containing a
    * java.sql.Connection.
    * @param connectionId
    * attribute name of the java.sql.Connection to
    close.
    * @see ConnectionTag
    public void setConn(String connectionId) {
    _connId = connectionId;
    public int doStartTag() {
    try {
    Connection conn = (Connection)pageContext.getAttribute
    (_connId);
    conn.close();
    } catch (SQLException e) {
    // failing to close a connection is not fatal
    e.printStackTrace();
    return EVAL_BODY_INCLUDE;
    public void release() {
    _connId = null;
    package com.solved.tag.dbtags.connection;
    import javax.servlet.jsp.tagext.TagData;
    import javax.servlet.jsp.tagext.TagExtraInfo;
    import javax.servlet.jsp.tagext.VariableInfo;
    * TagExtraInfo for the connection tag. This
    * TagExtraInfo specifies that the ConnectionTag
    * assigns a java.sql.Connection object to the
    * "id" attribute at the end tag.
    * @author Matt Shannon
    * @see ConnectionTag
    public class ConnectionTEI extends TagExtraInfo {
    public final VariableInfo[] getVariableInfo(TagData data)
    return new VariableInfo[]
    new VariableInfo(
    data.getAttributeString("id"),
    "java.sql.Connection",
    true,
    VariableInfo.AT_END
    data-sources.xml:
    <?xml version="1.0"?>
    <!DOCTYPE data-sources PUBLIC "Orion data-
    sources" "http://xmlns.oracle.com/ias/dtds/data-sources.dtd">
    <data-sources>
    <data-source
    class="oracle.jdbc.pool.OracleConnectionCacheImpl"
    name="jdbc/pool/OracleCache"
    location="jdbc/pool/OracleCache"
    url="jdbc:oracle:thin:@oracle1:1521:pdev"
    >
    <property name="maxLimit" value="15" />
    <property name="cacheScheme" value="2" />
    <property name="user" value="console" />
    <property name="password" value="console" />
    <description>
    This DataSource is using an Oracle-native DataSource Class so as
    to allow Oracle Specific extensions.
    A getConnection() call on this DataSource will return
    oracle.jdbc.driver.OracleConnection.
    The connection returned is a logical connection.
    The caching scheme in place is Fixed Wait. Refer below to
    possible values.
    Dynamic 1
    Fixed Wait 2
    Fixed Return Null 3
    </description>
    </data-source>
    </data-sources>
    many thanks,
    Matt.

    Hi. Show me your pool definition.
    Joe
    Ramamurthy wrote:
    I am using the jsp custom tag library from BEA called sqltags.tld which came with Weblogic 5.1. Currently I am using Weblogic6.1 sp2 on Solaris.
    I have created a Connection Pool for Sybase database using the driver com.sybase.jdbc.SybDriver.
    When I created jsp page to connect to the connection pool using sqltags custom tag library, I am getting the error
    "javax.servlet.jsp.JspException: Failed to write body content
    at weblogic.taglib.sql.ConnectionTag.doAfterBody(ConnectionTag.java:43)
    at jsp_servlet.__hubwcdata._jspService(__sampletest.java:1014)"
    After this message, whenever I try to access the same jsp page I am getting the message
    "javax.servlet.jsp.JspException: Failed to load JDBC driver: weblogic.jdbc.pool.D
    river
    at weblogic.taglib.sql.ConnectionTag.doStartTag(ConnectionTag.java:34)
    at jsp_servlet.__hubwcdata._jspService(__sampletest.java:205)".
    Can you please help me the reason why this problem is happening and how to fix this ?
    This problem doexn't happen consistently. This occurs once in a while.
    I tried to increase Login delay Seconds parameter in the Connection Pool to 15 sec. It didn't help me much.
    Thanks for your help !!!
    Ram

  • Struts tag library instead of JSTL

    My developers here are not very well versed with JSTL .
    Is it advisable to use the Struts tag library instead of JSTL.

    For JSTL you need two jar files in your web-inf/lib directory.
    standard.jar
    jstl.jar
    You only mentioned standard.jar - make sure the other is there as well.
    There are also some libraries requried. I think they were included with JDK1.4, but am not entirely certain.
    Check out the requirements on this page:
    http://jakarta.apache.org/taglibs/doc/standard-1.0-doc/standard-1.0/GettingStarted.html
    Particularly those related to JAXP.
    I am think EOFException might be a trouble with parsing the c.tld file in the standard.jar
    Hope this helps,
    evnafets

  • My app can't see the tag library

    Hi everybody,
    I am developing an application in JSP which accesses an Oracle database and display the results to the user.
    I am using the tag "exceltag.jar" taken from "http://www.servletsuite.com/servlets/exceltag.htm" to convert an html table to an excel sheet. This works fine on my computer but it fails after we installed the application to our web server, running Tomcat 4.1.12.
    The "exceltag.jar" file has been placed under 'WEB-INF\lib' and the classpath has been set to point to that location. However when I attempt to convert the html table to an excel sheet by clicking a button, I get the following error:
    java.lang.NoClassDefFoundError:
    javax/servlet/jsp/tagext/BodyTagSupport at java.lang.ClassLoader.defineClass0(Native Method) at
    java.lang.ClassLoader.defineClass(ClassLoader.java:509)
    It seems like the application can't see the "exceltag.jar" file.
    What do I need to do to overcome this problem?
    Thank you very much.

    The servlet.jar is in TOMCAT_HOME/common/lib. Since all the JARs in that directory are automatically added to the CLASSPATH and are visible to all applications running under Tomcat, you don't have to do anything for the class loader to find it.
    Your app's WEB-INF/lib directory JARs are also automatically added to to the CLASSPATH. That's the correct place to put that exceltag.jar, by the way, not the TOMCAT_HOME/common/lib.
    As a matter of fact, if you have a system CLASSPATH, be sure that Tomcat ignores it completely. You shouldn't even have one, IMO. (I don't.)
    When I open up the servlet.jar in my TOMCAT_H0ME/common/lib, I can see a class named BodyTagSupport with path javax.servlet.jsp.tagext. You should, too.
    In your exceltag.jar, you should find a TLD for the library. Open that with a text editor and make sure that the text under the <uri> tag matches that in your JSP. For example, I use the JSTL tag library. The c.tld has this <uri> tag:
      <uri>http://java.sun.com/jstl/core</uri>My JSPs that want to use the core tag library have this near the top of the page:
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>Notice how the URIs match. That's what yours should do, too.
    If you don't find a TLD inside the exceltag.jar, that means they didn't package it properly. - MOD

  • Merged projects - topic-level tag problems in sub-projects

    I am working on an extensive help file in RoboHelp HTML. It
    consists of a master project and 15 sub-projects. Each of the sub
    projects have topic-level conditional tagging, and when each
    sub-project is compiled, the topic-level tagging works and the CHM
    is correct in regards to what topics are included and excluded.
    However, when I compile the master project, it seems that RoboHelp
    disregards ALL topic-level tagging in the sub-projects. So, the CHM
    for configuration A includes all sub-project topics for
    configurations A, B, C, and D. The topics are in the TOC and they
    appear as search results. We are not using an index, but binary
    index is checked in the project settings.
    The same four configurations in the sub-projects are also in
    the master project, but the conditional tag expressions aren't
    word-for-word identical. Should they be?
    Note that the content-level tagging within the sub-projects
    DOES work when the master project is compiled. For some reason, the
    problem is isolated to the topic-level tagging.

    I think I'm the one causing the problem - I don't think I
    read your initial post carefully enough. Sorry...
    I can't figure out how this is happening. When you merge
    .chms, you have already compiled the 'slave' projects. The link
    from the master TOC points to a slave .chm - which you say is
    working correctly when opened on its own.
    Since the slaves and masters are compiled independently,
    there shouldn't be any interaction between the master and slave
    build expressions - and if there is one, it should be excluding
    more topics, not including more topics!
    The typical problems people have with merged .chms seem to be
    TOC issues (does the master TOC show up, or just the slave
    project's TOC?) and path issues (the master can't find the slaves).
    However, I did see one or two posts on this forum where the master
    was pointing to old copies of the slave .chm - could you have a
    "complete" .chm lurking about?
    BTW, according to RH help, binary indexes are fine in merged
    HTMLhelp. Binary TOCs are not. I don't think you have this problem,
    because the symptoms are different, but you could take a look - the
    setting is in the HTMLHelp Generate wizard. Click the [Advanced]
    button on the first wizard page and look on the TOC tab to make
    sure Binary TOC is not checked.
    You might also do a quick search on the General
    Info/HTMLHelp/RH for HTML forums for "merged .chm" - you might
    recognize a symptom in someone's post that I didn't catch.
    Good luck,
    Elisa

Maybe you are looking for

  • Can I load an existing site in iWeb?

    I have a website that I put together with an old program I can't use in OS Leopard (wouldn't want to anyway). I want to start using iWeb to work on my web pages. Can I load the pages of my site into the iWeb program to edit? How do I do that? Thanks.

  • Teamspeak3 in KDE - microphone problems [SOLVED]

    I am in KDE4 (latest version as of now). I chose the GStreamer backend when I installed KDE. I have a headset, plugged into the rear outlets on my pc. Sound output works fine. I installed Teamspeak3 (Linux version, not Wine, but same problem in Windo

  • Meta Data and generics

    In the development of generics are a big set of opinions how to implement it. In a C++ like language (which gets build into an executable) the most common choice is to do something like macro expansion. In Java on the other hand, it becomes much more

  • Oracle Universal Content Management11g - IRM 11g Integration

    Hi, I want to integrate UCM11g with IRM 11g. I found the 10g document but i am unable to find 11g document. Can anyone provide the document link for integration process. Thanks, SEWSupport

  • Is Possible to Monitor Network Printers using OEM

    Hi All, Is it possible to monitor Network printers status using Oracle Grid Control, please let me know if it possible. Thanks in advance.. YJR