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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by BugBlatter

  1. BugBlatter

    setting classpath in web.xml

    You probably have to check the documentation for the application server you're using to find out how to set the classpath. For instance, Weblogic has a WLCLASSPATH variable that can be set as part of the server start up process. I reckon you should have a look at deploying as a WAR file. It...
  2. BugBlatter

    setting classpath in web.xml

    Hi Dora, Are you talking about making classes available inside a deployed web application, or making them available when you compile classes using the build file before deploying the web app? Is your web application deployed as a WAR file? If you want to add java classes to a classpath in Ant...
  3. BugBlatter

    Has anyone written their own FilterReader

    Has anyone ever managed to write their own subclass of java.io.FilterReader and use it in the filterchain task? Ant debugging output shows that Ant is loading my class but there is no indication that it is actually using it.
  4. BugBlatter

    How do I create a subclass of FilterReader

    Thanks for your input guys. Converting the String is not a problem. The following code does the trick nicely: String newString = oldString.replace('/', '.'); The problem is that I have to create a subclass of FilterReader so that Ant can use it to read a text file and replace the token...
  5. BugBlatter

    How do I create a subclass of FilterReader

    Not an option for me I'm afraid. I'm using JDK 1.3.1.
  6. BugBlatter

    How do I create a subclass of FilterReader

    I want to use Ant to replace a token @PACKAGE@ with a String stored in a property called ${package}. But the value of the package property would be in the format "com/company/package" and needs to be converted to the format com.company.package. I need to create a subclass of...

Part and Inventory Search

Back
Top