Re Initializing Seaside

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Re Initializing Seaside

BrunoBB
Hi all,

Just for the record, script for re-initializing Seaside (in GemStone/S):

"Unregister your applications before executing this script:
WAAdmin unregister: 'appName'  "

WAGemStoneProductionErrorHandler  initialize.
WAWalkbackErrorHandler initialize.
WARemoteDebuggingWalkbackErrorHandler initialize.

[
   WADispatcher default.
   WASystemConfiguration allSubclasses
     do: [ :each | each instance buildDescription ] ]
     ensure: [ System commitTransaction ] .
Reply | Threaded
Open this post in threaded view
|

Re: Re Initializing Seaside

BrunoBB
"Unregister your applications before executing this script:
WAAdmin unregister: 'appName'  "

WAGemStoneProductionErrorHandler  initialize.
WAWalkbackErrorHandler initialize.
WARemoteDebuggingWalkbackErrorHandler initialize.

[
   WADispatcher default.
   WASystemConfiguration allSubclasses
     do: [ :each | each instance buildDescription ] ]
     ensure: [ System commitTransaction ] .

MCPlatformSupport installAlmostOutOfMemoryStaticHandler: 75.
Reply | Threaded
Open this post in threaded view
|

Re: Re Initializing Seaside

GLASS mailing list
Did this finally get things running for you?

On 8/30/15 2:13 PM, BrunoBB via Glass wrote:

> "Unregister your applications before executing this script:
> WAAdmin unregister: 'appName'  "
>
> WAGemStoneProductionErrorHandler  initialize.
> WAWalkbackErrorHandler initialize.
> WARemoteDebuggingWalkbackErrorHandler initialize.
>
> [
>     WADispatcher default.
>     WASystemConfiguration allSubclasses
>       do: [ :each | each instance buildDescription ] ]
>       ensure: [ System commitTransaction ] .
>
> MCPlatformSupport installAlmostOutOfMemoryStaticHandler: 75.
>
>
>
> --
> View this message in context: http://forum.world.st/Re-Initializing-Seaside-tp4846996p4847000.html
> Sent from the GLASS mailing list archive at Nabble.com.
> _______________________________________________
> Glass mailing list
> [hidden email]
> http://lists.gemtalksystems.com/mailman/listinfo/glass

_______________________________________________
Glass mailing list
[hidden email]
http://lists.gemtalksystems.com/mailman/listinfo/glass
Reply | Threaded
Open this post in threaded view
|

Re: Re Initializing Seaside

BrunoBB
Hi,

Yes, i have everything working fine now :)

Thanks for the help ;)

Regards,
Bruno