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: *

  • Users: nabla
  • Order by date
  1. nabla

    wscp> Enterprise remove

    Hi, I installed a ear file under wscp using: "EnterpriseApp install ..." The app runs fine. When I type "EnterpriseApp list" The app shows up as "/EnterpriseApp:Test.war/" But when I tried to uninstall it under wscp using: "EnterpriseApp remove...
  2. nabla

    WAS4aes installation issue

    Hi guys, I have another question. I read that WAS4 has a integrated web server to handle servlet requests from port 8090. I tried to install the free download version of WAS4 and installed it without web server. But after installation I found that there are no batch files in the bin directory...
  3. nabla

    how to deploy servlet jsp from command line in WAS4?

    Hi, I'm trying to use Ant to make automated build for projects. But it seems the deployment of servlet and jsp is done through a GUI tool in WAS4. Here's my question: Can I deploy servlet jsp using command line for WAS4? Thanks for your help
  4. nabla

    how to disable Back/Forward navigation buttons?

    hi i'm doing a project where i need to disable the Back and Forward buttons in Netscape. i'm already asked the question for IE, and i wonder if there is a way to disable directly the buttons or disable the action associated with those buttons in Netscape. thanks for your help nabla
  5. nabla

    how to disable the navigation buttons of IE

    hi i'm doing a project where i need to disable the Back and Forward buttons of IE. i'm wondering if there is a way to disable directly the buttons or disable the action associated with those buttons. thanks for your help
  6. nabla

    how to get the method name inside the same method?

    i'm writing a basic class that has a method called logDebug() to write information to a log file. all other classes will extend this behaviour. it's not servlet. i think there's no cheap way to get the method name inside the method itself, and i'll declare a string storing the method name...
  7. nabla

    how to get the method name inside the same method?

    i just want to log <br>time:classname:methodname<br>in a file for every method that runs.<br><br>time and classname are easy to get, but not the method name<br><br>actually printStackTrace knows which method get executed, probably i need to query the Virtual Machine.<br>but i have no idea how to...
  8. nabla

    how to get the method name inside the same method?

    Class.getMethods() returns all the methods in that class in an array of Method objects. i know the calling method is one element of it but i still don't know which element it is exactly.<br><br>
  9. nabla

    how to get the method name inside the same method?

    i'm writting a log class so all the methods will log their names in a file. <br><br>public class Ex {<br>&nbsp;&nbsp;public void myMethod() {<br>&nbsp;&nbsp;&nbsp;&nbsp;String methodName = &quot;myMethod&quot;;<br>&nbsp;&nbsp;}<br>}<br><br>will certainly do the job. <br>but in this case all the...
  10. nabla

    how to get the method name inside the same method?

    hi,<br><br>thanx for replying<br><br>my problem is that the methods in a certain class are not Method objects. and i can't use the getName() method to get the name.<br><br>for example:<br><br>public class Ex<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp;public void...
  11. nabla

    how to get the method name inside the same method?

    hi<br><br>i'm trying to write a log class so all the class and methods can log their names in a file. it's easy to do so for the class name, but there is no trivial way to return the method name of a method.<br><br>java.lang.reflect provides a feature to show all the methods available inside a...

Part and Inventory Search

Back
Top