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 SkipVought 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. zhanghong920

    non-word character in Pattern matcher

    Hello, I need to use: Pattern p = Pattern.compile("\\W"); Matcher m = p.matcher(str); in order to add a space in front of each non-word character (btw, is this a good way to do that?). But "str" includes non English characters and I don't want them to be treated as non-word characters. How...
  2. zhanghong920

    how to record file operating activities

    I need to record a user's file system activities such as creating, saving, reading, deleting, or moving a file, operated on Windows Explorer or via a software such as MS Word. The program has to be trigged by any file access and record the related information (e.g.: the file's name, under which...
  3. zhanghong920

    how to record file operating activity

    I need to record a user's file system activities such as creating, saving, reading, deleting, or moving a file, operated on Windows Explorer or via a software such as MS Word. The program has to be trigged by any file access and record the related information (e.g.: the file's name, under which...
  4. zhanghong920

    installation problem

    Hello, I'm trying to install Oracle 9i onto my Redhat linux machine, and something is wrong when burning the CDs. Must I burn the CDs to install it? I have created the disk image, it seems to me there is a way to install from the directories instead of from the CD-ROM. Is there any way to do...
  5. zhanghong920

    newbie's question: how to read removable memory

    Hello, do you know how I can read from my removable memory after I plug it in the USB port? Many thanks,
  6. zhanghong920

    question on running a sh program

    Thanks a lot! It is the wrong shell problem.
  7. zhanghong920

    quesiton on IBM WSDK v5

    Hello, In running IBM WSDK v5, I found that in the file "appserver/bin/setWSDKProperties.sh" , all the if-statements are in the form of "if [[ ...]]" instead of "if [..]", and it produces the error messages like: .....sh: [[: command not found when I run the...
  8. zhanghong920

    IBM wsdk v5 running appserver command errors

    Hello, I found that in the file "appserver/bin/setWSDKProperties.sh" , all the if-statements are in the form of: if [[ ...]] and it produce error messages like: .....sh: [[: command not found when I run the command "appserver start", or "appserver list&quot...
  9. zhanghong920

    question on running a sh program

    Hello, When I start a wsdk server by running a .sh program, it has lines as below: ./../appserver/bin/wsadmin.sh: [[: command not found ./../appserver/bin/wsadmin.sh: [[: command not found ./../appserver/bin/wsadmin.sh: [[: command not found But after that the server is started normally...
  10. zhanghong920

    question on running IBM wsdk server

    Hello, I'm running IBM wsdk v5 server on my linux machine. When I start with: appserver start, there're lines like: ./../appserver/bin/startServer.sh: [[: command not found ./../appserver/bin/startServer.sh: [[: command not found ./../appserver/bin/startServer.sh: [[: command not found But...
  11. zhanghong920

    simple questions on Web Services

    Hi, I'm totally new to Web Services and IBM WSDK. Is this the most popular choice for Web Services development? What's the relation between SOAP and WSDL? Thanks a lot.
  12. zhanghong920

    simple questions on Web Services

    Hi, I need to work with Web Services Descriptive Language which is totally new to me. Can anyone recommend any good introductory pages? I found that IBM WSDK is a free developing software. Is this a popular choice for WSDL development? Also, I'm a little confused about the relation between...
  13. zhanghong920

    question on dynamic class loading

    You're right! nothing wrong after I recompile them. Thanks a lot. zhanghong920
  14. zhanghong920

    question on dynamic class loading

    Hi all, I'm trying to read the class name from a configure file, and then create an instant of it. The related classes are: //G: public interface G{ public void setProperties(Properties p); public void setDBConnect(); } //F: public class F extends SF implements G{ //implement...
  15. zhanghong920

    Dynamic instantiate

    Sorry I forgot to mention that: the content of "className" in the main() of A is: "abb.dlt.oai.client.F" Thanks for any help. Zhanghong920
  16. zhanghong920

    Dynamic instantiate

    Hi all, I'm trying to read the class name from a configure file, and then create an instant of it. The related classes are: //G: public interface G{ public void setProperties(Properties p); public void setDBConnect(); } //F: public class F extends SF implements G{ //implement...
  17. zhanghong920

    can't run my servlet on Tomcat 4.1.18

    Thanks all your information. I've added the <servlet-name>, <servlet-class>, as well as <servlet-mapping> into the web.xml as you suggested, and checked that the first line of &quot;invoker&quot; in the conf/web.xml is not commented out. The result is: if I refer to my servlet as: ...
  18. zhanghong920

    can't run my servlet on Tomcat 4.1.18

    yes, I used the port number actually: http:// servername:my_portnumber/servlet/HelloWorldClass and there is still the same problem:(. Thanks, zhanghong920
  19. zhanghong920

    can't run my servlet on Tomcat 4.1.18

    Hi all, I've installed tomcat 4.1.18 under my account(linux machine). When I use &quot;http://.../servlet/HelloWorldClass&quot; to access my example servlet, it has &quot;Http status 404&quot; error, and says &quot;the requested resource is not available&quot;. It has the same problem when I...
  20. zhanghong920

    What kind of technique I need to use?

    Hello, I need to configure a bunch of machines to be a tree structure of communication, that is: -> A D -> B F -> E -> C Data coming to A, B, C, and from A and B to D, from B and C to E, then F get data from D and E and then output. What kind of technique I...

Part and Inventory Search

Back
Top