[VW 7.9] No popup warning when add breakpoint with probes disabled

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

[VW 7.9] No popup warning when add breakpoint with probes disabled

Terry Raymond

It appears that the popup warning, when adding a breakpoint with probes disabled,

has been changed to a message in the Transcript.

 

If someone thinks this is better, then please make it an option. I much prefer the

window in my face warning.

 

Terry

 

===========================================================

Terry Raymond

Crafted Smalltalk

80 Lazywood Ln.

Tiverton, RI  02878

(401) 624-4517      [hidden email]

===========================================================

 


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [VW 7.9] No popup warning when add breakpoint with probes disabled

Reinout Heeck-2
On 7/16/2012 8:24 PM, Terry Raymond wrote:

It appears that the popup warning, when adding a breakpoint with probes disabled,

has been changed to a message in the Transcript.

 

If someone thinks this is better, then please make it an option. I much prefer the

window in my face warning.


+1

We were miffed too that someone hardcoded their preferences into our tools.


Still waiting for that configurable debugger toolbar too, we now load overrides to restore the buttons Cincom deemed too hard to understand.

Yet two more patches we have to maintain :-(



R
-


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [VW 7.9] No popup warning when add breakpoint with probes disabled

Terry Raymond
In reply to this post by Terry Raymond

While trying to enable the ExtraEmphasis probe icons I discovered another approach

to indicating that probes are disabled. ExtraEmphasis obtains the probe glyph from the

probe itself so a oneshot breakpoint could be indicated. Well, this could also be used to

indicate that probes are disabled by showing a disabled probe icon.

 

Terry

 

===========================================================

Terry Raymond

Crafted Smalltalk

80 Lazywood Ln.

Tiverton, RI  02878

(401) 624-4517      [hidden email]

===========================================================

 

From: [hidden email] [mailto:[hidden email]] On Behalf Of Terry Raymond
Sent: Monday, July 16, 2012 2:25 PM
To: VWNC
Subject: [vwnc] [VW 7.9] No popup warning when add breakpoint with probes disabled

 

It appears that the popup warning, when adding a breakpoint with probes disabled,

has been changed to a message in the Transcript.

 

If someone thinks this is better, then please make it an option. I much prefer the

window in my face warning.

 

Terry

 

===========================================================

Terry Raymond

Crafted Smalltalk

80 Lazywood Ln.

Tiverton, RI  02878

(401) 624-4517      [hidden email]

===========================================================

 


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [VW 7.9] No popup warning when add breakpoint withprobes disabled

Steven Kelly
+1


From: [hidden email] on behalf of Terry Raymond
Sent: Fri 20/07/2012 18:11
To: 'VWNC'
Subject: Re: [vwnc] [VW 7.9] No popup warning when add breakpoint withprobes disabled

While trying to enable the ExtraEmphasis probe icons I discovered another approach

to indicating that probes are disabled. ExtraEmphasis obtains the probe glyph from the

probe itself so a oneshot breakpoint could be indicated. Well, this could also be used to

indicate that probes are disabled by showing a disabled probe icon.

 

Terry

 

===========================================================

Terry Raymond

Crafted Smalltalk

80 Lazywood Ln.

Tiverton, RI  02878

(401) 624-4517      [hidden email]

===========================================================

 

From: [hidden email] [mailto:[hidden email]] On Behalf Of Terry Raymond
Sent: Monday, July 16, 2012 2:25 PM
To: VWNC
Subject: [vwnc] [VW 7.9] No popup warning when add breakpoint with probes disabled

 

It appears that the popup warning, when adding a breakpoint with probes disabled,

has been changed to a message in the Transcript.

 

If someone thinks this is better, then please make it an option. I much prefer the

window in my face warning.

 

Terry

 

===========================================================

Terry Raymond

Crafted Smalltalk

80 Lazywood Ln.

Tiverton, RI  02878

(401) 624-4517      [hidden email]

===========================================================

 


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Secure SOAP Server & Two way SSL authentication in 7.10

Reinout Heeck-2
In reply to this post by Reinout Heeck-2
Hi,

I am trying to get the following example working taken from
http://www.cincomsmalltalk.com/main/2013/01/sioux-new-framework-to-build-http-servers/, shown below.
I have some difficulties getting it working without changing the framework.
Also I want to do 2 way SSL authentication, I am wondering how to configure that in TLS?


            server := Server new
addResponder: Hello new;
yourself.
                listener := server listenOn: 8001 for:
                HttpsConnection.
                certificates := TLSCertificateStore newWithDefaults
                                                known:
                                                anX509Certificate;
                                                certificate:
                                                (Array with:
                                                anX509Certificate) 
                                                key:  aRSAPrivateKey;
                                                yourself.
                serverContext := TLSContext newServerWithDefaults
certificates: certificates;
 yourself.
                listener tlsContext:  serverContext.
                clientContext := TLSContext newClientWithDefaults
certificates: certificates;
yourself.
                client := HttpClient new.
                client tlsContext: clientContext.
                server start.
                [ client get: 'https://localhost:8001/hello'.
                ] ensure: [
                                server ifNotNil: [ server release ].
                                client ifNotNil: [ client close ].
                                certificates release.
                                clientContext release.




_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc