Re: [Oorexx-devel] Ad exception problem, a first stack trace

2017-02-19 Thread Rony G. Flatscher
OK, thanks! Have also read the e-mail thread between you and Erich. Will take some time... One question: it seems to me that it has to do with keeping the arguments available. Whenever a say takes place (in the script, in .jsr223 set class) a call back to Java occurs, returning and then

Re: [Oorexx-devel] Ad exception problem, a first stack trace

2017-02-19 Thread Rick McGuire
No, once you have passed the arguments into via SendMessageArray(), the arguments are automatically protected from garbage collection. However, SendMessageArray() does not make a copy of that array, but rather just uses the array directly. If you make a call out to your code and it reuses the

Re: [Oorexx-devel] Are there any problems with ssh and Sourceforge at the moment?

2017-02-19 Thread Jon Wolfers
This is what I get using Tortoise Updating: C:\oorexx\svn\code-0 Error: Unable to connect to a repository at URL Error: 'svn+ssh://sahana...@svn.code.sourceforge.net/p/oorexx/code-0' Error: To better debug SSH connection problems, remove the -q option from 'ssh' in the Error: [tunnels] section

Re: [Oorexx-devel] Are there any problems with ssh and Sourceforge at the moment?

2017-02-19 Thread Rony G. Flatscher
Jon: thank you very much for trying it out and posting the Sourceforge-URL. Like you, I am a little bit helpless at the moment as doing a svn switch to the new URL, like: svn switch https://svn.code.sf.net/p/oorexx/code-0 oorexx does not succeed with the same svn errors as before (unable

[Oorexx-devel] Are there any problems with ssh and Sourceforge at the moment?

2017-02-19 Thread Rony G. Flatscher
Hi there, have tried to update the oorexx source code using "svn update", but unfortunately, this does not work all of a sudden for me. Here is the Windows copy & paste of the "svn update" with the error messages. F:\work\svn\oorexx>svn update Updating '.': svn: E170013: Unable to connect

[Oorexx-devel] "__pfnDliFailureHook2": redefnition; different modifiers

2017-02-19 Thread Rony G. Flatscher
After copying manually the oorexx sourcecode from Mac (version as of December 16th, 2016), I have started to create a debug version of 32-bit oorexx on Windows. However, when compiling "oodPackageEntry.cpp" the following error occurs and the building stops: [ 85%] Building CXX object

[Oorexx-devel] Ad exception problem, a first stack trace

2017-02-19 Thread Rony G. Flatscher
Running with the debug version (not yet with the Visual Studio debugger, still have to get acquainted with it) of ooRexx the exception still occurs, however the Java exception information takes advantage of the symbols, such that one can see the function names in the stack trace (below). It

Re: [Oorexx-devel] Are there any problems with ssh and Sourceforge at the moment?

2017-02-19 Thread Rony G. Flatscher
Hmm, pointing the browser to the https-URL yields a connection error from Firefox: "Firefox can’t establish a connection to the server at svn.code.sf.net. The site could be temporarily unavailable or too busy. Try again in a few moments. If you are unable to load any pages, check

Re: [Oorexx-devel] Ad exception problem, a first stack trace

2017-02-19 Thread Rick McGuire
Well, at first glance, it appears that the method is being passed an invalid argument on the SendMessageArray() call. This could be a corrupted value or maybe a stale address of an object that has already been garbage collected because it was not properly protected. That's probably where you