joost-help Mailing List for Joost STX processor
Status: Beta
Brought to you by:
obecker
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(3) |
Nov
(2) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
(4) |
Jun
(9) |
Jul
(8) |
Aug
|
Sep
(3) |
Oct
(10) |
Nov
(8) |
Dec
(14) |
| 2004 |
Jan
(7) |
Feb
(4) |
Mar
(7) |
Apr
(30) |
May
(16) |
Jun
(5) |
Jul
(9) |
Aug
(21) |
Sep
(19) |
Oct
(10) |
Nov
(25) |
Dec
(3) |
| 2005 |
Jan
(16) |
Feb
(12) |
Mar
(9) |
Apr
(2) |
May
(15) |
Jun
(9) |
Jul
(19) |
Aug
(1) |
Sep
(3) |
Oct
(2) |
Nov
|
Dec
(1) |
| 2006 |
Jan
(14) |
Feb
(3) |
Mar
(15) |
Apr
(4) |
May
(9) |
Jun
(22) |
Jul
(16) |
Aug
(2) |
Sep
(1) |
Oct
(2) |
Nov
(2) |
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(2) |
Apr
(9) |
May
(5) |
Jun
(8) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
(2) |
| 2008 |
Jan
(2) |
Feb
(11) |
Mar
(10) |
Apr
(5) |
May
(12) |
Jun
(14) |
Jul
(20) |
Aug
(12) |
Sep
(6) |
Oct
(5) |
Nov
(18) |
Dec
(1) |
| 2009 |
Jan
|
Feb
(10) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(8) |
Oct
(7) |
Nov
(3) |
Dec
(1) |
| 2010 |
Jan
(5) |
Feb
(2) |
Mar
|
Apr
(2) |
May
|
Jun
(8) |
Jul
|
Aug
(1) |
Sep
(11) |
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(2) |
Apr
(5) |
May
|
Jun
(13) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
(5) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
|
From: Ravi G. <rav...@gm...> - 2015-11-10 08:37:14
|
Hi Team
I have a requirement where I have to compare the value of a child node and
get the value of another node under same parent.
<stx:variable name="Supplier_Phone2"/>
<stx:template
match="/Contact/Communication/ChannelCode[.='TelephoneNumber']/../DialNumber">
<stx:assign name="Supplier_Phone2" select="normalize-space(.)"/>
</stx:template>
This Should return the value : 22.26.60.57.03
My XML file structure is :
<Contact>
<JobTitle>Supplier Profession</JobTitle>
<Name>O-LEBEL VIRGINIE</Name>
<Communication>
<ChannelCode>TelephoneNumber</ChannelCode>
<DialNumber>22.26.60.57.03</DialNumber>
</Communication>
<Communication>
<ChannelCode>FaxNumber</ChannelCode>
<DialNumber>22.26.60.57.19</DialNumber>
</Communication>
<Communication>
<URI>O-v...@cp...</URI>
</Communication>
</Contact>
Please advice the correct XPATH to be used so that I can get the desired
value in single XPATH.
Thanks,
Ravi Gharshi
|
|
From: pradeep H. <pra...@gm...> - 2014-02-21 14:47:12
|
Hello,
I am using joost stx 0.9.1 version.
I have two requirement
*1.How exactly we can remove the Empty Elements from xml and also Empty
Groups(XML Group Whose child value is Empty) of xml.*
Example of xml Group will be like this
<a>
<b>
<c />
</b>
</a>
In above scenario the complete group should be removed as c element value
is empty and this group does not have any other elements. How to remove the
complete group a. I need STX which should work for any xml with empty group.
*2.I have one requirement .*
I have Input XML like this
<root>
<sample>
<X/>
<Y/>
<Y/>
</sample>
</root>
And stx is
<stx:variable name="count" select="0"/>
<stx:template match="sample/X">
<count>$count</count>
<value1>a</value1>
<value2>a</value2>
<value3>a</value3>
<value4>a</value4>
</stx:template>
<stx:template match="sample/Y">
<stx:assign name="count" select="$count+1">
<y1>a</y1>
<y2>b</y2>
</stx:template>
I need a count of all Y to be generated in template X with the name count.
Output Expected
<count>2</count>
<value1>a</value1>
<value2>a</value2>
<value3>a</value3>
<value4>a</value4>
<y1>a</y1>
<y2>b</y2>
<y1>a</y1>
<y2>b</y2>
But as the Template <stx:template match="sample/X"> is processing first and
Next Y the count value will be always 0.
So how can I make process first Y and then X.I need dynamic stx which will
work for any xml.
Please help on this.
|
|
From: Christian S. <st...@ch...> - 2013-09-17 18:54:38
|
Hello Leknín. Please note that the "-cp" (class path) is ignored by java when the "-jar" option is given. In order to use additional jar files, add all those jar files and joost.jar to the "-cp", but don't give the "-jar" option, and add the Joost start class (net.sf.joost.Main). In your case, it should look like this: java -cp .:/usr/share/java/saxon/saxon.jar:/home/jelen/bin/commons-discovery-0.5/commons-discovery-0.5.jar:$d/joost.jar net.sf.joost.Main "$@" Regards, Christian Semrau Am 16.09.2013 20:28, schrieb Leknín Řepánek: > [...] > > my joost.sh looks > > #!/bin/sh > d=`dirname $(readlink -f $0)` > > java -cp .:/usr/share/java/saxon/saxon.jar:/home/jelen/bin/commons-discovery-0.5/commons-discovery-0.5.jar -jar $d/joost.jar "$@" > > [...] > |
|
From: Jan M. <god...@gm...> - 2013-09-16 19:10:25
|
This works form me java -cp /home/jelen/bin/joost-0.9.1/joost.jar:/home/jelen/bin/commons-discovery-0.5/commons-discovery-0.5.jar:/home/jelen/bin/commons-logging-1.1.3/commons-logging-1.1.3.jar net.sf.joost.Main bubble.xml bubble-xslt.stx |
|
From: Leknín Ř. <god...@gm...> - 2013-09-16 18:29:11
|
Have a nice day.
I have this problem with using joost.
I ned use a xslt transformations embeded into stx stylesheet.
On non xslt transformations joost works fine for me, but on sheets with
xslt i have this exception:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/discovery/tools/Service
at net.sf.joost.stx.TransformerHandlerResolverImpl.init(TransformerHandlerResolverImpl.java:131)
at net.sf.joost.stx.TransformerHandlerResolverImpl.resolve(TransformerHandlerResolverImpl.java:258)
at net.sf.joost.instruction.ProcessBase.getProcessHandler(ProcessBase.java:263)
at net.sf.joost.instruction.PSelfFactory$Instance.processEnd(PSelfFactory.java:115)
at net.sf.joost.instruction.NodeBase$End.process(NodeBase.java:85)
at net.sf.joost.stx.Processor.doProcessLoop(Processor.java:906)
at net.sf.joost.stx.Processor.processEvent(Processor.java:971)
at net.sf.joost.stx.Processor.processLastElement(Processor.java:1221)
at net.sf.joost.stx.Processor.startElement(Processor.java:1668)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:506)
at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(XMLNSDocumentScannerImpl.java:376)
at
com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2763)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:606)
at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:116)
at
com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:509)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:858)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:787)
at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:123)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1210)
at org.xml.sax.helpers.XMLFilterImpl.parse(XMLFilterImpl.java:357)
at net.sf.joost.Main.main(Main.java:434)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.discovery.tools.Service
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 21 more
my joost.sh looks
#!/bin/sh
d=`dirname $(readlink -f $0)`
java -cp .:/usr/share/java/saxon/saxon.jar:/home/jelen/bin/commons-discovery-0.5/commons-discovery-0.5.jar -jar $d/joost.jar "$@"
I had binaries from apache jakarta sites, have I a bad version of this?
I am using arch linux and my java is this
https://www.archlinux.org/packages/extra/x86_64/jdk7-openjdk/
Where is the problem.
Thanks Je;
|
|
From: Udick, J. <Joh...@fp...> - 2012-12-07 16:41:40
|
thanks all
final execution:
java -cp commons-logging-1.1.1/commons-logging-1.1.1.jar:joost.jar net.sf.joost.Main -nodecl mydata.xml itvl_read.stx | awk 'NF>0'
John Udick
joh...@fp...
(719) 237-5580
From: Andreas Benneke [mailto:ab...@be...]
Sent: Friday, December 07, 2012 11:08 AM
To: Discussion list for Joost users
Subject: Re: [Joost] AIX errors running joost.jar
Hi,
please note that the "-cp" seems to be ignored by java if "-jar" is given...
You may try something like this (assuming the commons-logging.jar is located at ./commons-logging-1.1.1/commons-logging-1.1.1.jar):
java -cp ./commons-logging-1.1.1/commons-logging-1.1.1.jar;./joost.jar net.sf.joost.Main -nodecl mydata.xml itvl_read.stx
Regards,
Andreas
Am 07.12.2012 16:34, schrieb Udick, John:
Maurice,
I have installed the commons logging but still get the same response. Is there a particular environment variable that needs to be set? Could it be something other than java itself, maybe something from OS?
The commons logging is installed at the same location as the joost.jar:
drwxrwxrwx 3 gpadmin staff 4096 Dec 05 11:49 commons-logging-1.1.1
-rwxrwxrwx 1 gpadmin staff 528111 Nov 20 16:53 joost.jar
-rwxr-xr-x 1 oracle dba 656027305 Dec 07 10:08 mydata.xml
[@etl700]$ /usr/java6/bin/java -cp commons-logging-1.1.1 -jar joost.jar -nodecl mydata.xml itvl_read.stx | awk 'NF>0'
Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.logging.Log
at java.lang.J9VMInternals.verifyImpl(Native Method)
at java.lang.J9VMInternals.verify(J9VMInternals.java:72)
at java.lang.J9VMInternals.initialize(J9VMInternals.java:134)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.Log
at java.net.URLClassLoader.findClass(URLClassLoader.java:434)
at java.lang.ClassLoader.loadClass(ClassLoader.java:660)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358)
at java.lang.ClassLoader.loadClass(ClassLoader.java:626)
... 3 more
Could not find the main class: net.sf.joost.Main. Program will exit.
John Udick
joh...@fp...<mailto:joh...@fp...>
(719) 237-5580
From: Maurice Jumelet [mailto:ma...@ju...]
Sent: Wednesday, December 05, 2012 10:09 AM
To: Discussion list for Joost users
Subject: Re: [Joost] AIX errors running joost.jar
John,
This seems to be a class-loading issue - not related to joost - , the AIX environment you are using does not have commons logging in the classpath (http://commons.apache.org/logging/). Dit you try downloading the commons logging.jar and adding it to the classpath?
java -cp commons-logging-1.1.1 -jar joost.jar ....
Regards,
Maurice
2012/12/5 Udick, John <Joh...@fp...<mailto:Joh...@fp...>>
We run joost.jar on Linux without any issue on java 1.4, 1.5 and 1.6; however, when running on AIX the process fails. Is there a separate or special step required to get this process to work with AIX?
[@mdw scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | awk 'NF>0'
LINUX:
Linux mdw 2.6.18-238.27.1.el5.hotfix.bz516490 #1 SMP Tue Sep 20 18:01:41 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
AIX:
AIX etlsvr## 1 6 00F647744C00
java version "1.6.0"
Java(TM) SE Runtime Environment (build pap3260sr9fp2-20110627_03(SR9 FP2))
IBM J9 VM (build 2.4, JRE 1.6.0 IBM J9 2.4 AIX ppc-32 jvmap3260sr9-20110624_85526 (JIT enabled, AOT enabled)
J9VM - 20110624_085526
JIT - r9_20101028_17488ifx17
GC - 20101027_AA)
JCL - 20110530_01
[@etlsvr## scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | awk 'NF>0'
Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.logging.Log
at java.lang.J9VMInternals.verifyImpl(Native Method)
at java.lang.J9VMInternals.verify(J9VMInternals.java:72)
at java.lang.J9VMInternals.initialize(J9VMInternals.java:134)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.Log
at java.net.URLClassLoader.findClass(URLClassLoader.java:434)
at java.lang.ClassLoader.loadClass(ClassLoader.java:660)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358)
at java.lang.ClassLoader.loadClass(ClassLoader.java:626)
... 3 more
Could not find the main class: net.sf.joost.Main. Program will exit.
John Udick
joh...@fp...<mailto:joh...@fp...>
(719) 237-5580
------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
Joost-help mailing list
Joo...@li...<mailto:Joo...@li...>
https://lists.sourceforge.net/lists/listinfo/joost-help
|
|
From: Andreas B. <ab...@be...> - 2012-12-07 16:33:47
|
Hi, please note that the "-cp" seems to be ignored by java if "-jar" is given... You may try something like this (assuming the commons-logging.jar is located at ./commons-logging-1.1.1/commons-logging-1.1.1.jar): java -cp ./commons-logging-1.1.1/commons-logging-1.1.1.jar;./joost.jar net.sf.joost.Main -nodecl mydata.xml itvl_read.stx Regards, Andreas Am 07.12.2012 16:34, schrieb Udick, John: > > Maurice, > > I have installed the commons logging but still get the same response. > Is there a particular environment variable that needs to be set? Could > it be something other than java itself, maybe something from OS? > > The commons logging is installed at the same location as the joost.jar: > > drwxrwxrwx 3 gpadmin staff 4096 Dec 05 11:49 > commons-logging-1.1.1 > > -rwxrwxrwx 1 gpadmin staff 528111 Nov 20 16:53 joost.jar > > -rwxr-xr-x 1 oracle dba 656027305 Dec 07 10:08 mydata.xml > > [@etl700]$ /usr/java6/bin/java -cp commons-logging-1.1.1 -jar > joost.jar -nodecl mydata.xml itvl_read.stx | awk 'NF>0' > > Exception in thread "main" java.lang.NoClassDefFoundError: > org.apache.commons.logging.Log > > at java.lang.J9VMInternals.verifyImpl(Native Method) > > at java.lang.J9VMInternals.verify(J9VMInternals.java:72) > > at java.lang.J9VMInternals.initialize(J9VMInternals.java:134) > > Caused by: java.lang.ClassNotFoundException: > org.apache.commons.logging.Log > > at java.net.URLClassLoader.findClass(URLClassLoader.java:434) > > at java.lang.ClassLoader.loadClass(ClassLoader.java:660) > > at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358) > > at java.lang.ClassLoader.loadClass(ClassLoader.java:626) > > ... 3 more > > Could not find the main class: net.sf.joost.Main. Program will exit. > > John Udick > > joh...@fp... > > (719) 237-5580 > > *From:*Maurice Jumelet [mailto:ma...@ju...] > *Sent:* Wednesday, December 05, 2012 10:09 AM > *To:* Discussion list for Joost users > *Subject:* Re: [Joost] AIX errors running joost.jar > > John, > > This seems to be a class-loading issue - not related to joost - , the > AIX environment you are using does not have commons logging in the > classpath (http://commons.apache.org/logging/). Dit you try > downloading the commons logging.jar and adding it to the classpath? > > java -cp commons-logging-1.1.1 -jar joost.jar .... > > Regards, > > Maurice > > 2012/12/5 Udick, John <Joh...@fp... <mailto:Joh...@fp...>> > > We run joost.jar on Linux without any issue on java 1.4, 1.5 and 1.6; > however, when running on AIX the process fails. Is there a separate or > special step required to get this process to work with AIX? > > [@mdw scripts]$ java -jar joost.jar -nodecl itvl_data.xml > itvl_read.stx | awk 'NF>0' > > LINUX: > > Linux mdw 2.6.18-238.27.1.el5.hotfix.bz516490 #1 SMP Tue Sep 20 > 18:01:41 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux > > java version "1.6.0_21" > > Java(TM) SE Runtime Environment (build 1.6.0_21-b06) > > Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode) > > AIX: > > AIX etlsvr## 1 6 00F647744C00 > > java version "1.6.0" > > Java(TM) SE Runtime Environment (build pap3260sr9fp2-20110627_03(SR9 FP2)) > > IBM J9 VM (build 2.4, JRE 1.6.0 IBM J9 2.4 AIX ppc-32 > jvmap3260sr9-20110624_85526 (JIT enabled, AOT enabled) > > J9VM - 20110624_085526 > > JIT - r9_20101028_17488ifx17 > > GC - 20101027_AA) > > JCL - 20110530_01 > > [@etlsvr## scripts]$ java -jar joost.jar -nodecl itvl_data.xml > itvl_read.stx | awk 'NF>0' > > Exception in thread "main" java.lang.NoClassDefFoundError: > org.apache.commons.logging.Log > > at java.lang.J9VMInternals.verifyImpl(Native Method) > > at java.lang.J9VMInternals.verify(J9VMInternals.java:72) > > at java.lang.J9VMInternals.initialize(J9VMInternals.java:134) > > Caused by: java.lang.ClassNotFoundException: > org.apache.commons.logging.Log > > at java.net.URLClassLoader.findClass(URLClassLoader.java:434) > > at java.lang.ClassLoader.loadClass(ClassLoader.java:660) > > at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358) > > at java.lang.ClassLoader.loadClass(ClassLoader.java:626) > > ... 3 more > > Could not find the main class: net.sf.joost.Main. Program will exit. > > John Udick > > joh...@fp... <mailto:joh...@fp...> > > (719) 237-5580 > > > ------------------------------------------------------------------------------ > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial > Remotely access PCs and mobile devices and provide instant support > Improve your efficiency, and focus on delivering more value-add services > Discover what IT Professionals Know. Rescue delivers > http://p.sf.net/sfu/logmein_12329d2d > _______________________________________________ > Joost-help mailing list > Joo...@li... <mailto:Joo...@li...> > https://lists.sourceforge.net/lists/listinfo/joost-help > |
|
From: Udick, J. <Joh...@fp...> - 2012-12-07 15:34:32
|
Maurice,
I have installed the commons logging but still get the same response. Is there a particular environment variable that needs to be set? Could it be something other than java itself, maybe something from OS?
The commons logging is installed at the same location as the joost.jar:
drwxrwxrwx 3 gpadmin staff 4096 Dec 05 11:49 commons-logging-1.1.1
-rwxrwxrwx 1 gpadmin staff 528111 Nov 20 16:53 joost.jar
-rwxr-xr-x 1 oracle dba 656027305 Dec 07 10:08 mydata.xml
[@etl700]$ /usr/java6/bin/java -cp commons-logging-1.1.1 -jar joost.jar -nodecl mydata.xml itvl_read.stx | awk 'NF>0'
Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.logging.Log
at java.lang.J9VMInternals.verifyImpl(Native Method)
at java.lang.J9VMInternals.verify(J9VMInternals.java:72)
at java.lang.J9VMInternals.initialize(J9VMInternals.java:134)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.Log
at java.net.URLClassLoader.findClass(URLClassLoader.java:434)
at java.lang.ClassLoader.loadClass(ClassLoader.java:660)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358)
at java.lang.ClassLoader.loadClass(ClassLoader.java:626)
... 3 more
Could not find the main class: net.sf.joost.Main. Program will exit.
John Udick
joh...@fp...
(719) 237-5580
From: Maurice Jumelet [mailto:ma...@ju...]
Sent: Wednesday, December 05, 2012 10:09 AM
To: Discussion list for Joost users
Subject: Re: [Joost] AIX errors running joost.jar
John,
This seems to be a class-loading issue - not related to joost - , the AIX environment you are using does not have commons logging in the classpath (http://commons.apache.org/logging/). Dit you try downloading the commons logging.jar and adding it to the classpath?
java -cp commons-logging-1.1.1 -jar joost.jar ....
Regards,
Maurice
2012/12/5 Udick, John <Joh...@fp...<mailto:Joh...@fp...>>
We run joost.jar on Linux without any issue on java 1.4, 1.5 and 1.6; however, when running on AIX the process fails. Is there a separate or special step required to get this process to work with AIX?
[@mdw scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | awk 'NF>0'
LINUX:
Linux mdw 2.6.18-238.27.1.el5.hotfix.bz516490 #1 SMP Tue Sep 20 18:01:41 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
AIX:
AIX etlsvr## 1 6 00F647744C00
java version "1.6.0"
Java(TM) SE Runtime Environment (build pap3260sr9fp2-20110627_03(SR9 FP2))
IBM J9 VM (build 2.4, JRE 1.6.0 IBM J9 2.4 AIX ppc-32 jvmap3260sr9-20110624_85526 (JIT enabled, AOT enabled)
J9VM - 20110624_085526
JIT - r9_20101028_17488ifx17
GC - 20101027_AA)
JCL - 20110530_01
[@etlsvr## scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | awk 'NF>0'
Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.logging.Log
at java.lang.J9VMInternals.verifyImpl(Native Method)
at java.lang.J9VMInternals.verify(J9VMInternals.java:72)
at java.lang.J9VMInternals.initialize(J9VMInternals.java:134)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.Log
at java.net.URLClassLoader.findClass(URLClassLoader.java:434)
at java.lang.ClassLoader.loadClass(ClassLoader.java:660)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358)
at java.lang.ClassLoader.loadClass(ClassLoader.java:626)
... 3 more
Could not find the main class: net.sf.joost.Main. Program will exit.
John Udick
joh...@fp...<mailto:joh...@fp...>
(719) 237-5580
------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
Joost-help mailing list
Joo...@li...<mailto:Joo...@li...>
https://lists.sourceforge.net/lists/listinfo/joost-help
|
|
From: Maurice J. <ma...@ju...> - 2012-12-05 15:37:38
|
John, This seems to be a class-loading issue - not related to joost - , the AIX environment you are using does not have commons logging in the classpath ( http://commons.apache.org/logging/). Dit you try downloading the commons logging.jar and adding it to the classpath? java -cp commons-logging-1.1.1 -jar joost.jar .... Regards, Maurice 2012/12/5 Udick, John <Joh...@fp...> > ** ** > > We run joost.jar on Linux without any issue on java 1.4, 1.5 and 1.6; > however, when running on AIX the process fails. Is there a separate or > special step required to get this process to work with AIX?**** > > ** ** > > [@mdw scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | > awk 'NF>0'**** > > ** ** > > LINUX:**** > > Linux mdw 2.6.18-238.27.1.el5.hotfix.bz516490 #1 SMP Tue Sep 20 18:01:41 > EDT 2011 x86_64 x86_64 x86_64 GNU/Linux**** > > java version "1.6.0_21"**** > > Java(TM) SE Runtime Environment (build 1.6.0_21-b06)**** > > Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)**** > > ** ** > > AIX:**** > > AIX etlsvr## 1 6 00F647744C00**** > > java version "1.6.0"**** > > Java(TM) SE Runtime Environment (build pap3260sr9fp2-20110627_03(SR9 FP2)) > **** > > IBM J9 VM (build 2.4, JRE 1.6.0 IBM J9 2.4 AIX ppc-32 > jvmap3260sr9-20110624_85526 (JIT enabled, AOT enabled)**** > > J9VM - 20110624_085526**** > > JIT - r9_20101028_17488ifx17**** > > GC - 20101027_AA)**** > > JCL - 20110530_01**** > > ** ** > > [@etlsvr## scripts]$ java -jar joost.jar -nodecl itvl_data.xml > itvl_read.stx | awk 'NF>0'**** > > ** ** > > Exception in thread "main" java.lang.NoClassDefFoundError: > org.apache.commons.logging.Log**** > > at java.lang.J9VMInternals.verifyImpl(Native Method)**** > > at java.lang.J9VMInternals.verify(J9VMInternals.java:72)**** > > at java.lang.J9VMInternals.initialize(J9VMInternals.java:134)**** > > Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.Log > **** > > at java.net.URLClassLoader.findClass(URLClassLoader.java:434)**** > > at java.lang.ClassLoader.loadClass(ClassLoader.java:660)**** > > at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358)** > ** > > at java.lang.ClassLoader.loadClass(ClassLoader.java:626)**** > > ... 3 more**** > > Could not find the main class: net.sf.joost.Main. Program will exit.**** > > ** ** > > John Udick**** > > joh...@fp...**** > > (719) 237-5580**** > > ** ** > > > ------------------------------------------------------------------------------ > LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial > Remotely access PCs and mobile devices and provide instant support > Improve your efficiency, and focus on delivering more value-add services > Discover what IT Professionals Know. Rescue delivers > http://p.sf.net/sfu/logmein_12329d2d > _______________________________________________ > Joost-help mailing list > Joo...@li... > https://lists.sourceforge.net/lists/listinfo/joost-help > > |
|
From: Udick, J. <Joh...@fp...> - 2012-12-05 14:56:10
|
We run joost.jar on Linux without any issue on java 1.4, 1.5 and 1.6; however, when running on AIX the process fails. Is there a separate or special step required to get this process to work with AIX?
[@mdw scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | awk 'NF>0'
LINUX:
Linux mdw 2.6.18-238.27.1.el5.hotfix.bz516490 #1 SMP Tue Sep 20 18:01:41 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
AIX:
AIX etlsvr## 1 6 00F647744C00
java version "1.6.0"
Java(TM) SE Runtime Environment (build pap3260sr9fp2-20110627_03(SR9 FP2))
IBM J9 VM (build 2.4, JRE 1.6.0 IBM J9 2.4 AIX ppc-32 jvmap3260sr9-20110624_85526 (JIT enabled, AOT enabled)
J9VM - 20110624_085526
JIT - r9_20101028_17488ifx17
GC - 20101027_AA)
JCL - 20110530_01
[@etlsvr## scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | awk 'NF>0'
Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.logging.Log
at java.lang.J9VMInternals.verifyImpl(Native Method)
at java.lang.J9VMInternals.verify(J9VMInternals.java:72)
at java.lang.J9VMInternals.initialize(J9VMInternals.java:134)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.Log
at java.net.URLClassLoader.findClass(URLClassLoader.java:434)
at java.lang.ClassLoader.loadClass(ClassLoader.java:660)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358)
at java.lang.ClassLoader.loadClass(ClassLoader.java:626)
... 3 more
Could not find the main class: net.sf.joost.Main. Program will exit.
John Udick
joh...@fp...
(719) 237-5580
|
|
From: Udick, J. <Joh...@fp...> - 2012-12-04 23:11:53
|
[@mdw scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | awk 'NF>0'
LINUX:
Linux mdw 2.6.18-238.27.1.el5.hotfix.bz516490 #1 SMP Tue Sep 20 18:01:41 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
Java HotSpot(TM) Server VM (build 17.0-b16, mixed mode)
AIX:
AIX etlsvr## 1 6 00F647744C00
java version "1.6.0"
Java(TM) SE Runtime Environment (build pap3260sr9fp2-20110627_03(SR9 FP2))
IBM J9 VM (build 2.4, JRE 1.6.0 IBM J9 2.4 AIX ppc-32 jvmap3260sr9-20110624_85526 (JIT enabled, AOT enabled)
J9VM - 20110624_085526
JIT - r9_20101028_17488ifx17
GC - 20101027_AA)
JCL - 20110530_01
[@etlsvr## scripts]$ java -jar joost.jar -nodecl itvl_data.xml itvl_read.stx | awk 'NF>0'
Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.logging.Log
at java.lang.J9VMInternals.verifyImpl(Native Method)
at java.lang.J9VMInternals.verify(J9VMInternals.java:72)
at java.lang.J9VMInternals.initialize(J9VMInternals.java:134)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.Log
at java.net.URLClassLoader.findClass(URLClassLoader.java:434)
at java.lang.ClassLoader.loadClass(ClassLoader.java:660)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:358)
at java.lang.ClassLoader.loadClass(ClassLoader.java:626)
... 3 more
Could not find the main class: net.sf.joost.Main. Program will exit.
John Udick
joh...@fp...
(719) 237-5580
|
|
From: Oliver B. <ob...@ob...> - 2012-03-18 13:26:08
|
Hi Michael, > I have this data > > <echcf:Claim version="1.1.1.1"> > > > That should look like this > > <ns0:Claim xmlns:ns0="http://xml.edifecs.com/schema/ECHCF" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns1="http://xml.edifecs.com/schema/UCF" xmlns:ns2="http://xml.edifecs.com/schema/UCFD" xmlns:ns3="http://xml.edifecs.com/schema/HCFD" change="UNCHANGED" version="1.1.1.1"> > <ns1:Property change="UNCHANGED" name="CLM-ENGINE-SOURCE" value="CBH" valueType="STRING"> > <ns1:Version name="original" value="CBH" /> > <ns1:Version name="submitted" value="CBH" /> > </ns1:Property> > </ns0:Claim> > > What I don’t want to do is add the change=”UNCHANGED” to the Version elements > > I have an existing stx file and I am wondering how I add this to all but the Version elements hmm, from your description it is not clear to me what you want to achieve. What is the input and what is the expected output? In your STX file the attributes (especially the change attribute) will be copied from the source. So if you don't want to copy them then - don't do it (e.g. simply remove the line 37: <stx:attribute name="change" select="@change"/> ) - don't copy all attributes with <stx:copy attributes="@*"> (line 10) For the stx:copy instruction: the value in attributes is a pattern and it copies all attributes that match the pattern. If you want to exclude some attributes use for example <stx:copy attributes="@*[not(name() = 'change')]"> See http://stx.sourceforge.net/documents/spec-stx-20070427.html#copying-the-current-node Hope this helps, Oliver PS: your e-mail wasn't delivered automatically to the list because you seemingly didn't include the list's address in the to or cc header fields. Please take care of that when sending mails to the list. |
|
From: Vadim B. <vad...@di...> - 2012-01-11 23:34:53
|
Thanks a lot, Oliver! Works like a Swiss chronometre. Best regards, Vadim ----- Original Message ----- From: "Oliver Becker" <ob...@ob...> To: "Discussion list for Joost users" <joo...@li...> Sent: Wednesday, January 11, 2012 11:47 PM Subject: Re: [Joost] Using an alternative SAX parser >> The parameter seems to be active, but I get: >> >> org.xml.sax.SAXException: Can't create XMLReader for class >> org.apache.xerces.parsers.SAXParser >> >> Is this a missing JAR (I added xercesImpl.jar to CLASSPATH, maybe I need >> something else) or maybe it should be a different class? > > How do you invoke Joost? > Probably you are using -jar joost.jar, but then > <cite>..., the JAR file is the source of all user classes, and other user > class path settings are ignored.</cite> (see java tool documentation) > > In this case you should put joost.jar into the classpath and use > net.sf.joost.Main as the class argument of java. > > Cheers, > Oliver > > >> ----- Original Message ----- >> From: "Oliver Becker" <ob...@ob...> >> To: "Discussion list for Joost users" <joo...@li...> >> Sent: Wednesday, January 11, 2012 8:12 PM >> Subject: Re: [Joost] Using an alternative SAX parser >> >> >>> Hi Vadim, >>> >>>> I am having an issue with the default Xerxes, >>>> ArrayIndexOutOfBoundsException: 8192. This is a known issue for very >>>> large XML documents and the cure is to use a newer version of Xerces, >>>> or >>>> another parser. >>>> >>>> This is what I am trying to do, using either xercesImpl.jar or >>>> jaxp-ri.jar. >>>> The question is, how do I accomplish this. >>>> >>>> I tried adding this: >>>> >>>> -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl >>>> \ >>>> -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl >>>> \ >>>> -cp .;xercesImpl.jar >>>> >>>> (it's in Windows) >>>> >>>> to the command line. Nothing, it crashes with the same trace of >>>> com.sun.org.apache blah blah which means the reassignment is ignored. >>> >>> on the command line >>> -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser >>> should do the trick (Joost uses the pure SAX interface here). >>> >>> Hope this helps, >>> Oliver >>> > > > > > ------------------------------------------------------------------------------ > Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex > infrastructure or vast IT resources to deliver seamless, secure access to > virtual desktops. With this all-in-one solution, easily deploy virtual > desktops for less than the cost of PCs and save 60% on VDI infrastructure > costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox > _______________________________________________ > Joost-help mailing list > Joo...@li... > https://lists.sourceforge.net/lists/listinfo/joost-help > |
|
From: Oliver B. <ob...@ob...> - 2012-01-11 12:48:04
|
> The parameter seems to be active, but I get: > > org.xml.sax.SAXException: Can't create XMLReader for class > org.apache.xerces.parsers.SAXParser > > Is this a missing JAR (I added xercesImpl.jar to CLASSPATH, maybe I need > something else) or maybe it should be a different class? How do you invoke Joost? Probably you are using -jar joost.jar, but then <cite>..., the JAR file is the source of all user classes, and other user class path settings are ignored.</cite> (see java tool documentation) In this case you should put joost.jar into the classpath and use net.sf.joost.Main as the class argument of java. Cheers, Oliver > ----- Original Message ----- > From: "Oliver Becker" <ob...@ob...> > To: "Discussion list for Joost users" <joo...@li...> > Sent: Wednesday, January 11, 2012 8:12 PM > Subject: Re: [Joost] Using an alternative SAX parser > > >> Hi Vadim, >> >>> I am having an issue with the default Xerxes, >>> ArrayIndexOutOfBoundsException: 8192. This is a known issue for very >>> large XML documents and the cure is to use a newer version of Xerces, or >>> another parser. >>> >>> This is what I am trying to do, using either xercesImpl.jar or >>> jaxp-ri.jar. >>> The question is, how do I accomplish this. >>> >>> I tried adding this: >>> >>> -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl >>> \ >>> -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl >>> \ >>> -cp .;xercesImpl.jar >>> >>> (it's in Windows) >>> >>> to the command line. Nothing, it crashes with the same trace of >>> com.sun.org.apache blah blah which means the reassignment is ignored. >> >> on the command line >> -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser >> should do the trick (Joost uses the pure SAX interface here). >> >> Hope this helps, >> Oliver >> |
|
From: Vadim B. <vad...@di...> - 2012-01-11 10:03:58
|
Hi Oliver, Thanks for the prompt reply. The parameter seems to be active, but I get: org.xml.sax.SAXException: Can't create XMLReader for class org.apache.xerces.parsers.SAXParser Is this a missing JAR (I added xercesImpl.jar to CLASSPATH, maybe I need something else) or maybe it should be a different class? Best regards, Vadim ----- Original Message ----- From: "Oliver Becker" <ob...@ob...> To: "Discussion list for Joost users" <joo...@li...> Sent: Wednesday, January 11, 2012 8:12 PM Subject: Re: [Joost] Using an alternative SAX parser > Hi Vadim, > >> I am having an issue with the default Xerxes, >> ArrayIndexOutOfBoundsException: 8192. This is a known issue for very >> large XML documents and the cure is to use a newer version of Xerces, or >> another parser. >> >> This is what I am trying to do, using either xercesImpl.jar or >> jaxp-ri.jar. >> The question is, how do I accomplish this. >> >> I tried adding this: >> >> -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl >> \ >> -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl >> \ >> -cp .;xercesImpl.jar >> >> (it's in Windows) >> >> to the command line. Nothing, it crashes with the same trace of >> com.sun.org.apache blah blah which means the reassignment is ignored. > > on the command line > -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser > should do the trick (Joost uses the pure SAX interface here). > > Hope this helps, > Oliver > > > ------------------------------------------------------------------------------ > Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex > infrastructure or vast IT resources to deliver seamless, secure access to > virtual desktops. With this all-in-one solution, easily deploy virtual > desktops for less than the cost of PCs and save 60% on VDI infrastructure > costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox > _______________________________________________ > Joost-help mailing list > Joo...@li... > https://lists.sourceforge.net/lists/listinfo/joost-help |
|
From: Oliver B. <ob...@ob...> - 2012-01-11 09:46:34
|
Hi Vadim, > I am having an issue with the default Xerxes, ArrayIndexOutOfBoundsException: 8192. This is a known issue for very large XML documents and the cure is to use a newer version of Xerces, or another parser. > > This is what I am trying to do, using either xercesImpl.jar or jaxp-ri.jar. > The question is, how do I accomplish this. > > I tried adding this: > > -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \ > -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \ > -cp .;xercesImpl.jar > > (it's in Windows) > > to the command line. Nothing, it crashes with the same trace of com.sun.org.apache blah blah which means the reassignment is ignored. on the command line -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser should do the trick (Joost uses the pure SAX interface here). Hope this helps, Oliver |
|
From: Vadim B. <vad...@di...> - 2012-01-11 07:52:46
|
Hello all, I am having an issue with the default Xerxes, ArrayIndexOutOfBoundsException: 8192. This is a known issue for very large XML documents and the cure is to use a newer version of Xerces, or another parser. This is what I am trying to do, using either xercesImpl.jar or jaxp-ri.jar. The question is, how do I accomplish this. I tried adding this: -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \ -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \ -cp .;xercesImpl.jar (it's in Windows) to the command line. Nothing, it crashes with the same trace of com.sun.org.apache blah blah which means the reassignment is ignored. What am I doing wrong? Best regards, Vadim Berman Digital Sonata Pty Ltd www.digitalsonata.com Australian Business Number: 54 122 188 998 Address: PO Box 803, Camberwell, VIC 3124, Australia Phone: +61 (0)3 98094461 Mobile: +61 (0)432 894 862 Skype: vadimberman |
|
From: fikin <nf...@ya...> - 2011-08-24 07:06:05
|
we've done an attempt about 3y ago (if not even more). XSL WG took stx into a comparison study together with xslt2.0 and some of stx advantages went into xslt3.0 (it used to be 2.1). for example pass-through was the first to make it in the xslt spec ;) all streaming features (whatever they are) more or less are influenced by stx. main objection to stx were related to mutable variables and related to them start-end events handling. these certainly would not go through nicely with xsl not xquery type of people. ________________________________ From: Emmanouil Batsis (Manos) <ma...@ab...> To: joo...@li... Sent: Friday, August 19, 2011 2:58 AM Subject: [Joost] W3C Community Groups? Just saw that W3C now has an open process for Community Groups [1] and was wondering if this could be a good opportunity to move STX forward, perhaps with Joost as a "reference" implementation. [1] http://www.w3.org/community/about/ Manos ------------------------------------------------------------------------------ Get a FREE DOWNLOAD! and learn more about uberSVN rich system, user administration capabilities and model configuration. Take the hassle out of deploying and managing Subversion and the tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2 _______________________________________________ Joost-help mailing list Joo...@li... https://lists.sourceforge.net/lists/listinfo/joost-help |
|
From: Emmanouil B. (Manos) <ma...@ab...> - 2011-08-19 00:23:05
|
Just saw that W3C now has an open process for Community Groups [1] and was wondering if this could be a good opportunity to move STX forward, perhaps with Joost as a "reference" implementation. [1] http://www.w3.org/community/about/ Manos |
|
From: Emmanouil B. (Manos) <ma...@ab...> - 2011-06-27 00:05:20
|
On 06/27/2011 12:09 AM, Oliver Becker wrote: > Hi Manos, > >> Can I use the java extention support within a buffer to to store markup >> events besides text? E.g. >> >> <stx:result-buffer name="xml-events-from-java"> >> <!-- call java code tha will produce: >> <somelement><child>value</child></someelement> >> --> >> </stx:result-buffer> >> >> Otherwise, can I do it directly (i.e. not inside a buffer)? > > No, currently there is no way to write into the result SAX event stream. > However, I think it's a good idea to provide such a mechanism. If you could provide some pointers on what I should start checking out or how this should work, I'd happily try to implement it. Manos |
|
From: Oliver B. <ob...@ob...> - 2011-06-26 21:21:03
|
Hi Andriy, > can I receive a personal CVS branch in joost module, I want to conduct > several experiments I think it is a good idea to take the opportunity and say good bye to CVS. I will copy the current trunk into a new Mercurial repository at sourceforge. With this creating personal branches should be dead easy. I'll let you know when it's done, Cheers, Oliver |
|
From: Oliver B. <ob...@ob...> - 2011-06-26 21:09:16
|
Hi Manos, > Can I use the java extention support within a buffer to to store markup > events besides text? E.g. > > <stx:result-buffer name="xml-events-from-java"> > <!-- call java code tha will produce: > <somelement><child>value</child></someelement> > --> > </stx:result-buffer> > > Otherwise, can I do it directly (i.e. not inside a buffer)? No, currently there is no way to write into the result SAX event stream. However, I think it's a good idea to provide such a mechanism. Oliver |
|
From: Andriy G. <and...@gm...> - 2011-06-26 20:42:32
|
On 06/22/2011 12:36 AM, Oliver Becker wrote: >> Anyone working on the source trunk? Haven't tried it. > > I am the only committer - but I am not actively working on Joost at the moment. > > If there is interest to improve Joost I would be glad if there are also supporters who are willing to help. :-) > can I receive a personal CVS branch in joost module, I want to conduct several experiments My SourceForge user name is andriy_gerasika > Cheers, > Oliver > > > ------------------------------------------------------------------------------ > EditLive Enterprise is the world's most technically advanced content > authoring tool. Experience the power of Track Changes, Inline Image > Editing and ensure content is compliant with Accessibility Checking. > http://p.sf.net/sfu/ephox-dev2dev > _______________________________________________ > Joost-help mailing list > Joo...@li... > https://lists.sourceforge.net/lists/listinfo/joost-help > |
|
From: Emmanouil B. (Manos) <ma...@ab...> - 2011-06-22 02:50:34
|
Can I use the java extention support within a buffer to to store markup
events besides text? E.g.
<stx:result-buffer name="xml-events-from-java">
<!-- call java code tha will produce:
<somelement><child>value</child></someelement>
-->
</stx:result-buffer>
Otherwise, can I do it directly (i.e. not inside a buffer)?
Manos
|
|
From: Emmanouil B. (Manos) <ma...@ab...> - 2011-06-22 02:29:15
|
Its been a long time Oliver :-) On 06/22/2011 12:36 AM, Oliver Becker wrote: >> Anyone working on the source trunk? Haven't tried it. > > I am the only committer - but I am not actively working on Joost at the moment. > > If there is interest to improve Joost I would be glad if there are also supporters who are willing to help. :-) We will be using STX for some time in a project with many usecases for it, so I would be happy to join a dev list if it exists (or keep this up here if it does not) and scratch an itch whenever a benefit can be squeezed in the available time. If you need it, my sf handle is mbatsis Cheers, Manos |