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 Mike Lewis 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: 25884
  • Order by date
  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?
  16. 25884

    long long array

    I have an array of 'long long' type in C. I want to return this back to java using JNI, what should be the return type of my JNI method for it to accept a long long type uni dim array? I tried using jlongArray, but it gives me " return value type does not match the function type
  17. 25884

    Hi All, Is there a way to pass a p

    Hi All, Is there a way to pass a parameter when i run a .exe file? I want to pass in a file name. Thanks, Sonali.
  18. 25884

    parse an AS file using actionscript.

    Hi All, I am trying to parse an Actionscript file.Is it possible using Actionscript? Thanks, Sonali.
  19. 25884

    Hi all, I have a text field and i

    Hi all, I have a text field and i write Actionscript code here and on click of some button want to get the code executed.Is this possible? eg: I type in "new Date(2003,1,1)" and on click of my button i want that a new date object be created. thnx, Sonali.
  20. 25884

    for .. in loop, can it give more details?

    Hi All, Thanks a lot for the prompt reply.It helped me a lot.What i mean by the whole signature is--If i have a method called addItemAt(index,value) - Which takes in a number for index , a string as value to be added ,then is there a way to get something like - getItemAt - Is a function - Takes...

Part and Inventory Search

Back
Top