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 Chriss Miller 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 25884

  1. 25884

    6.0 webservices support + basic setup needed on machine.

    Hi, I have a question about the setup required on an hpux system for it to support java webservices. currently when i deploy a webservice, and try to check its url "http://localhost:9090/etc" I get a connection refused exception. So, i need to do any kind of setting for soap etc? TIA!
  2. 25884

    webservices on hpux - any setup required?

    Hi, I have a question about the setup required on an hpux system for it to support java webservices. currently when i deploy a webservice, and try to check its url "http://localhost:9090/etc" I get a connection refused exception. So, i need to to any kind of setting for soap etc? TIA!
  3. 25884

    Schedule a task on hpux

    Thanks, The replies helped.
  4. 25884

    Schedule a task on hpux

    Hi, How can i schedule a task on hpux? Equivalent to windows task scheduler.. Thanks
  5. 25884

    Error accessing external object property

    Hi, I am importing the values from a tab delimited file. I am using those values as the arguments to a datawindow. The backend proc retrieves values from certain tables depending on these arguments. When there are multiple records in the tab delimited text file, for the first record, the...
  6. 25884

    SimpleDateFormat does not handle leading blanks for HHmmss format

    Hi, What I want " 2030" to show is 002030, there are 2 blanks in the string " 2030". It should mean 20 minutes 30 seconds. If I remove the empty date then also I get an NPE. The question is, when a format like "12030" results in 012030, a format like " 2030" [2 blanks] should result in...
  7. 25884

    SimpleDateFormat does not handle leading blanks for HHmmss format

    Hi, I came accross a piece of code : import java.util.*; import java.io.*; import java.text.*; public class SDFTest{ public static void main(String[] args) { try{ System.out.println("\"102030\" --> " + getTime("102030")); System.out.println("\"002030\" --> " + getTime("002030"))...
  8. 25884

    awk inside perl

    Hi, I need to execute the following command inside perl : grep string file_cont_string | awk -F ' ' '{print $3}' How do i do that?? TIA
  9. 25884

    '%' an accepted character in URL constructor

    For the below piece of code I get an IllegalArgumentException import java.io.*; import java.net.*; public class Test1 { public static void main(String args[]) { try { URL url = new URL("file:D:/test/aa%bb/c"); InputStream is = url.openStream(); } catch (Exception e) {...
  10. 25884

    setting bootclasspath

    on HPUX, Is there some way to set the bootclasspath except java -Xbootclasspath?
  11. 25884

    identify that event is generated by a Swing JTextField or JTextArea

    Hi, I need to check if the event object I get has been generated by a JTextField or JTextArea. How Can I check this? Thanks.
  12. 25884

    Regular expression for ")

    It then compiles fine but identifies the pattern specified as this : pattern="\)
  13. 25884

    Regular expression for ")

    Hi, Sorry the error is Abc.java:225: illegal escape character String regex1 = "\"\)"; ^ 1 error
  14. 25884

    Regular expression for ")

    Hi, I want to get a correct regular expression for the string ") Here is how I am doing it String regex1 = "\"\)"; matcher = matcher.usePattern(Pattern.compile(regex1,Pattern.CASE_INSENSITIVE)); But i get this runtime error : Exception in thread "main"...
  15. 25884

    placement of jars in the directory structure of jdk

    The directory structure for jdk is this: j2sdk1.4.2 - lib - some jars jre/lib - some jars whats the relevance of such a placement of jars?

Part and Inventory Search

Back
Top