Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. xmtb26

    http://www/

    Looks like I had some browser caching. This seemed to do it: RewriteEngine on RewriteCond %{HTTP_HOST} ^www$ [NC] RewriteRule ^/(.*)$ http://www.mycompany.com/$1 [R=301]
  2. xmtb26

    http://www/

    Thank you lgarner. I cannot seem to catch http://www/ but only http://www/something. That is, http://www/ isn't redirecting to http://www.mycompany.com/. However, http://www/x/y/z will redirect to http://www.mycompany.com/x/y/z. I have tried both of these variations RewriteEngine on...
  3. xmtb26

    http://www/

    Background: we have 2 departments: Systems and Web. The Systems Dept controls software on servers and clients, and the Web Dept controls the Apache configuration as well as web development. The Systems Dept has it set up so http://www/ displays our company's homepage. We, the Web Dept...
  4. xmtb26

    Referring to the first element, or to the second element

    /LINEITEMS/LINEITEM[LINEITEMFIELD='1'] /LINEITEMS/LINEITEM[LINEITEMFIELD='2']
  5. xmtb26

    Xalan-J and calls to Java

    * BUMP * Or, determining PI <xsl:variable name="PI" select="4.0 * Math:atan(1.0)"/> where Math is xmlns:Math="xalan://java.lang.Math"
  6. xmtb26

    XSLT Webservice...

    Where are you seeing the &gt; and &lt;? It is most likely due to how you are using "ssnetData". Are you using xsl:value-of or xsl:copy-of?
  7. xmtb26

    preload

    This XML snippet (which is not well-formed) has no meaning on its own. It is the definition (DTD or schema) and/or the DED that defines the XML -and- the application (XSLT, XSL-FO, Java, etc.) that acts about it.
  8. xmtb26

    renamed war file fails to deploy

    Oh, and don't forgot to check the perms and owner on your WAR. For example, if Tomcat is running as user "tomcat", it wouldn't deploy your your WAR if it were root:other.
  9. xmtb26

    renamed war file fails to deploy

    Sadly, I don't know why this isn't working. However, I do have a couple of servlets which I have renamed the WAR files, and they have deployed. For example, the eXist (XML DB) package is distributed as exist.war, but I have renamed it to xml.war. There are some configurations I have changed...
  10. xmtb26

    JSP not working after chaning JAVA_HOME

    Look at your Tomcat startup and shutdown scripts. These can be used to setup your version of Java independent of your system or JAVA_HOME. For example, my system uses 1.5 but my Tomcat is on 1.6. Be aware of your compiled stuff. For example, compiling in 1.6 and trying to run under 1.5...
  11. xmtb26

    Xalan-J and calls to Java

    Thank you tsuji for taking the time to respond. My Xalan wrapper servlet can accept params similar to command-line calls to Xalan. Therefore, I am passing the info in via a parameter. I may be forced to write my own class to get the info like you suggest, unless I (or Tek Tip folks) can come...
  12. xmtb26

    Xalan-J and calls to Java

    Background: I am running a servlet under Tomcat. The servlet is a "wrapper" for Xalan-J that transforms a given XML/XSL combo. I have been successful in getting super basic Java calls working in my XSLs (such as string.toUpperCase or InetAddress.getLocalName). My current need is for the XSL...
  13. xmtb26

    eXist database

    If you are familiar with the RSS XML format (i.e., basically a collection of <item> nodes), then you can easily have a collection greater than 15,000. We have some with over 60,000 <item>s. The current version of the eXist database can have 2^16 collections. So, that is like having 2^16...
  14. xmtb26

    apache deault user

    I'd be very afraid having anything on the web server with wide open perms (777). Send me the URL to your web site, and I'll show you why *** LOL - just kidding! On our servers running as nobody, we set our files to 464 (r--rw-r--) and nobody:GROUP -- where GROUP are the folks who maintain...
  15. xmtb26

    http://www/

    We, the Web Dept, use relative paths where ever we can. (I can't go into why but for this discussion just consider it a must.) Therefore, the relative link basically inherits what the internal user has set for their homepage. So, this internal user is routinely corresponding to other external...
  16. xmtb26

    http://www/

    You have summed it up perfectly. Our Web Dept does need to win the battle with the Systems people. The "bumping of heads" between the two departments has been ongoing for years. The worse part is that we are a government agency, and thus not doing the best for the taxpayer. I will see if our...
  17. xmtb26

    http://www/

    Thanks for your patience. It is a battle that could instantly be resolved if the Systems Dept didn't win out over the Web Dept. It be resolved quickly if the browser home page was set to http://www.ourbusiness.com/ instead of http://www/. What happens when an internal user email a cut&pasted...
  18. xmtb26

    eXist database

    I just wanted to put out a feeler to see if anyone on here is using the eXist XML database (http://www.exist-db.org). If so, (1) has it been successful for you, (2) how big is your collection(s), (3) any words of wisdom?
  19. xmtb26

    http://www/

    Internally, our Systems Dept sets our users' browsers to http://www/. Don't ask why, but it makes life easier for them. I am in the Web Dept, and it drives us nuts. One of the biggest problems is our internal users email hyperlinks to external people as http://www/dir/somedoc.htm. This, of...

Part and Inventory Search

Back
Top