Re: [jiffie-developers] concerning a blocking thread exception
Status: Abandoned
Brought to you by:
joniles
|
From: Graham C. <gra...@gm...> - 2007-01-09 08:17:22
|
I do this aswell
I always found the following sufficent
"IHTMLInputElement input =3D inputByIdRegex(document, "file1");
BlockingClickThread blockingClick =3D new BlockingClickThread(input);
blockingClick.start();
JiffieUtility.sendKeys("Choose file", "c:\\tmp.txt {TAB}{TAB} ");
input.release();"
Hope that helps
On 08/01/07, Alejandro (Alex) Soini <so...@ad...> wrote:
>
> Hi all,
>
>
>
> I'm running a program that uses more than one BlockingClickThread (for
> some dialog boxes at different parts of a webapp), and the program procee=
ds
> accordingly. However, I get an exception printed out:
>
>
>
> Exception in thread "Thread-226" *java.lang.NullPointerException*
>
> at com.tapsterrock.jiffie.BlockingClickThread.runBlockingMethod(*
> BlockingClickThread.java:54*)
>
> at com.tapsterrock.jiffie.BlockingThread.run(*BlockingThread.java:5=
5
> *)
>
>
>
> =85which is a bit perplexing to me. It doesn't halt the execution of the
> rest of the program. Regardless, I'd like to ideally clean up this
> exception. I tried using .interrupt() and .stop() on each
> BlockingClickThread once it's finished but it doesn't seem to make a
> difference. Any thoughts? Thank you,
>
>
>
> -Alex
>
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D=
DEVDEV
>
> _______________________________________________
> jiffie-developers mailing list
> jif...@li...
> https://lists.sourceforge.net/lists/listinfo/jiffie-developers
>
>
>
|