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,
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"...
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
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.
Hello,
I have a query,
I am using the for..in loop to list down the elements in any component.
Is there a way to list down the whole signature of these elements in the component?
I basically need a way to segregate the listing provided by the for..in loop into movie clip, method.. etc
Rgds,
Sonali.
Hi All,
For a flash component say a Push Button, I need a way to list down all the properties and methods for this component instance/Object/Class.All i mean is, if PushButton has a,b,c as methods and x,y,z as properties, then i need a method like say
PushButton.getDeclaredMethods() - should...
Hi All,
Is there a Screen reader available for Mac OS?I have figured out Windows eyes and JAWS for windows OS, but am in search for a similar screen reader for MAC.
Pls suggest.
Thanks,
Sonali.
Hi..
my problem is simple...i want to know which statement will result in more efficient and faster executing code..
if(char1.equals(':')||char1.equals(';')||char1.equals('.')||etc....)
{
//do something
}
OR
switch (char1)
case ':' : //dosomething
case ';' : //dosomething
case '.' ...
Hello,
I am trying to define a byte array in a method.My problem is that the byte array is very large and i get the following exception at run time, the code compiles easily.
-------------------------------------------
Exception in thread "main" java.lang.ClassFormatError...
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.