-
Recent Posts
Recent Comments
All on ERROR: Cannot determine the lo… Andy on LibHaru – Windows Build… Zipping files in VA… on VASmalltalk – how to cre… Peter on Smalltalk – Better produ… Vinnie Moag on About Archives
- June 2013
- May 2013
- March 2013
- February 2013
- January 2013
- December 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
Categories
Meta
Tag Archives: 0MQ
VASmalltalk – Headless Communication Server the Graphical Way ..
This is my first official communication server in VASmalltalk – programmed in the graphical environment of VASmalltalk. Communication is done via 0MQ. The server shown here is a service registration server for a local network. Local services (written in C#, … Continue reading
VASmalltalk – Seaside in collaboration with 0MQ and Mongrel2
I have talked with Sebastian Heidbrink over quite a long period of time how to do interprocess communication fom VASalltalk with other languages or system. A solution to this problem might brings us to multiple-processor solutions, quite difficult with today … Continue reading
VASmalltalk – PDF, Images and Ghostscript
In our business we produce mostly one-page-size landscape documents (containing tables and graphics). In my first implmentation I created these documents using OpenOffice/LibreOffice, which was slow, but the user had the chance to change the document afterwards – a nice … Continue reading
VASmalltalk – 0MQ – moving target …
With each day doing some work with this framework the wrappers changes. Actually the code from yesterday is snow from yesterday and everything is melting away I rearranged and change the class hierarchy and now each Smalltalk item in the … Continue reading
VASmalltalk – 0MQ – Request and Reply example
Here is another example from the user guide of 0MQ: a classical server-client communication: Ask and Ye Shall Receive example in the 0MQ Guide Execute in the workspace: context := ZMQCore newContext: 1. special class with additional logic. somehow the … Continue reading
VASmalltalk – 0MQ
Ok, in the last posting you saw a very simple example and the plain code using the low-level Smalltalk wrapper around the API. Here – after changing the structure – a more OO like approach in a sense of programming … Continue reading