Troy,
I am not sure why you are posting here on this.
If you require support for jBASE 5.8, please submit a ticket to sup...@zumasys.com with complete details.
Thank you.
Mike
--
--
IMPORTANT: T24/Globus posts are no longer accepted on this forum.
To post, send email to jB...@googlegroups.com
To unsubscribe, send email to
jBASE-un...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/jBASE?hl=en
---
You received this message because you are subscribed to the Google Groups "jBASE" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
jbase+un...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/jbase/7cb6a5f9-e048-4380-abaa-d6865b7bd505n%40googlegroups.com.
Ok, I thought this was a general jbase forum. What kinds of things are normally posted here? Programming questions? Jquery questions? I have questions quite often. Sometimes the documentation is too simple or does not cover a certain options. As an example, I was trying to use the –r option with jshow - https://docs.zumasys.com/jbase/tools/jshow/ to do a regex search to find a program, but there is not an example and I could not get it to work and could not find any examples online on it either. Would that be something I should post here?
You received this message because you are subscribed to a topic in the Google Groups "jBASE" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/jbase/Y-ilq0EA9J4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to jbase+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jbase/CO6PR18MB44834C49820CCB59B60A4526B3C89%40CO6PR18MB4483.namprd18.prod.outlook.com.
“port” is really a legacy multi-value entity that relates to workspace needed for certain COMMONS and variables.
The “port” can only change if a new thread is started. The only way a new thread would start is if a Linux process needed to run a jBASE process and therefore a new thread and new “port” would be assigned. Usually with a k-shell prefix in a BASIC EXECUTE CHAR(255):’k’...
The first jBASE process starts a thread and assigns a multi-value “port”. Processes started subsequent to that are sub-threads and do not need a separate thread or in the old multi-value days you would think “workspace”.
In most traditional multi-value setups of jBASE the first jBASE program and only thread is the LOGTO or jsh. Everything you execute from it is a sub-thread and thus, no new port. But, if you run a Linux command (no thread needed) and then from that linux command, run a jBASE command, that new jBASE command would need a thread (workspace) and “port”. So for example if you ran a Linux script that did Linux type commands and then passed those to a jBASE program, that program would be separate from the original jBASE LOGTO/jsh and would need a new thread.
Simple Example:
in a BASIC program
EXECUTE CHAR(255):’k’:’/usr/bin/makepdf’
If in the /usr/bin/makepdf it ran a jBASE command, that command would have a different “port”, but when it returned, it would be back to the original “port”.
Hope this helps you to understand “ports” and how they relate.
|
To view this discussion on the web visit https://groups.google.com/d/msgid/jbase/fb606ddc-c229-4b73-8f0f-f2077ced85b5n%40googlegroups.com.
Dan, thanks for the response. Mike suggested I send this to support and I did. He replied that the problem is that the chain command keeps adding perform levels on the newer versions of Jbase and they are hitting 32 perform levels and then causes an issue. I need to analyze their menu’s and see how to mitigate this.
Troy
To view this discussion on the web visit https://groups.google.com/d/msgid/jbase/DM6PR18MB3617C0C811643A3FFD7A5425C4CB9%40DM6PR18MB3617.namprd18.prod.outlook.com.