users@glassfish.java.net

Re: Interrupted idle thread

From: Oleksiy Stashok <Oleksiy.Stashok_at_Sun.COM>
Date: Wed, 01 Sep 2010 10:47:14 +0200

Hi Martin,

didn't expect NB 6.9.1 makes something different than 6.8. Hope you'll
finally make things work with it.

Alexey.

On Aug 31, 2010, at 18:29 , Martin, Ray wrote:

> The javaee-api-6.0.jar answered the redlines in my prior code.
>
> I retested the code generators in netbeans - wow, life is different
> than
> the previous version - looks like I have lots of new learning to
> do. I
> guess this is all called progress.
>
> Tore the databases down in preparation for rebuilding.
>
> Deployed and ran - got an ORA-02049 - this looks like a problem in
> developer space!!! Ball is back in my court.
>
> -----Original Message-----
> From: Martin, Ray
> Sent: Tuesday, August 31, 2010 12:19 PM
> To: users_at_glassfish.dev.java.net
> Subject: RE: RE: Re: Interrupted idle thread
>
> I figured those wonderful code generators in netbeans would tell me
> what/how to do annotations. Wrong - the code generators did not write
> code like they use to. Don't know if it is because of the missing
> libraries or if they just don't write code no more???
>
> -----Original Message-----
> From: Martin, Ray
> Sent: Tuesday, August 31, 2010 12:06 PM
> To: users_at_glassfish.dev.java.net
> Subject: RE: Re: Interrupted idle thread
>
> I lucked out - we have netbeans 6.9.1
>
> I have installed.
>
> At admin console, I again setup all my connections pools and jdbc
> resource. Did not yet do my security realm.
>
> Had to reset the server on my projects in netbeans.
>
> Everything is good so far - then oops - where are the EJB libraries?
>
> -----Original Message-----
> From: Oleksiy.Stashok_at_Sun.COM [mailto:Oleksiy.Stashok_at_Sun.COM]
> Sent: Tuesday, August 31, 2010 10:46 AM
> To: users_at_glassfish.dev.java.net
> Subject: Re: Interrupted idle thread
>
> It should work, but in general 3.0.1 is more stable, that's why IMO it
> could make sense to try it.
>
> Thanks.
> Alexey.
>
> On Aug 31, 2010, at 16:21 , Martin, Ray wrote:
>
>> Okay - I will make the switch to a newer version ASAP.
>>
>> BUT - to get me back up and running, could I not set the other
>> variable???
>>
>>
>> The link that you provided says:
>> Additional comments
>> "We misinterpret thread-pool configuration elements in domain.xml, we
>> use thread-pool->idle-thread-
>> timeout-seconds to set transaction timeout and http->timeout-seconds
>> to
>> set thread's idle-timeout."
>>
>>
>> So, if I knew the syntax, I could set
>> thread-pool-idle-thread-timeout-seconds
>> Just for enough to get me going - I am in a really bad position at
>> the
>> moment.
>>
>> -----Original Message-----
>> From: Oleksiy.Stashok_at_Sun.COM [mailto:Oleksiy.Stashok_at_Sun.COM]
>> Sent: Tuesday, August 31, 2010 9:58 AM
>> To: users_at_glassfish.dev.java.net
>> Subject: Re: Interrupted idle thread
>>
>> Now I see, most probably you're using GF v3, where we had issue [1].
>> Can you pls. switch to GF v3.0.1?
>>
>> I don't remember exactly if NB 6.8 supports GF v3 server out of the
>> box, or you need additional plugin to be installed, but with NB 6.9.1
>> you can use GF 3.0.1 (AFAIR it's one you have out of the box), which
>> should have that issue resolved.
>>
>> Thanks.
>>
>> WBR,
>> Alexey.
>>
>> [1] https://glassfish.dev.java.net/issues/show_bug.cgi?id=11490
>>
>>
>> On Aug 31, 2010, at 14:21 , Martin, Ray wrote:
>>
>>> I am using netbeans6.8 and whatever glassfish comes with it.
>>>
>>> At the glassfish admin console, I press the version button, I get v3
>>> (no
>>> numbers)
>>>
>>> I am very sorry to say, that I cannot get the descriptor onto the
>>> Internet.
>>>
>>> -----Original Message-----
>>> From: Oleksiy.Stashok_at_Sun.COM [mailto:Oleksiy.Stashok_at_Sun.COM]
>>> Sent: Tuesday, August 31, 2010 7:35 AM
>>> To: users_at_glassfish.dev.java.net
>>> Subject: Re: Interrupted idle thread
>>>
>>> Martin,
>>>
>>> just to make sure, are you using the Glassfish 3.0.1 release?
>>> Can you pls. share the domain.xml descriptor?
>>>
>>> Thanks.
>>>
>>> Alexey.
>>>
>>> On Aug 31, 2010, at 13:28 , Martin, Ray wrote:
>>>
>>>> Mr. Lubke,
>>>>
>>>> I did the following:
>>>> ...
>>>> <http request-timeout-seconds="-1" ...
>>>> ...
>>>>
>>>> I assume that -1 means to disable.
>>>>
>>>> After restarting glassfish and deploying the EJBModule in an
>>>> Enterprise
>>>> app (so it will see the third party jars) - still got the
>>>> "interrupting
>>>> idle thread.."
>>>>
>>>> But, worse than that is the fact that something causes the SOAP
>>>> message
>>>> to be repeated - then my process is not protected against that
>>>> repeat
>>>> SOAP message again kicks off and stomps all over the database
>>>> records
>>>> that it just wrote before the timeout.
>>>>
>>>> I am going to try an asynchronous client to see if that will take
>>>> care
>>>> of the problem.
>>>>
>>>> Thanx for your help.
>>>>
>>>>
>>>> -----Original Message-----
>>>> From: Ryan Lubke [mailto:ryan.lubke_at_oracle.com]
>>>> Sent: Monday, August 30, 2010 8:51 PM
>>>> To: Martin, Ray
>>>> Cc: users_at_glassfish.dev.java.net
>>>> Subject: RE: Interrupted idle thread
>>>>
>>>> Hello Martin,
>>>>
>>>> I believe you'll be able to resolve this issue by either increasing
>>>> the
>>>> request-timeout-seconds property or disabling
>>>> the feature altogether.
>>>>
>>>> This can be done by backing up your
>>>> GF_HOME/domains/domain1/config/domain.xml and then modify the http
>>>> element
>>>> associated with the protocol your listener is using.
>>>>
>>>> For example, if you're using the out-of-the-box configuration, you
>>>> can
>>>> change the timeout for requests made to port 8080 like
>>>> so:
>>>>
>>>>
>>>> <protocol name="http-listener-1">
>>>> <http request-timeout-seconds="60" default-virtual-server="server"
>>>> max-connections="250" />
>>>> </protocol>
>>>>
>>>> It doesn't appear that this value can currently be set to -1 via
>>>> asadmin
>>>>
>>>> command line, so I'll be looking into resolving
>>>> that shortly.
>>>>
>>>> Could you please try updating the domain.xml using the above xml
>>>> snippet
>>>>
>>>> as a guide and let us know if it resolves your problem?
>>>>
>>>> Thanks,
>>>> -rl
>>>>
>>>>
> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
>>>> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
>>> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
>>> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
>> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
>> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>