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!
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!
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...
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...
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"))...
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)
{...
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"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.