Search found 9084 matches

by Radu
Thu Sep 29, 2005 8:19 am
Forum: Common Problems
Topic: Commented XML processing instruction is processed (bug?)
Replies: 3
Views: 3085

Hi, You are right about the problem with the PI being processed even if enclosed in a comment. We noticed and fixed it just after the 6.2 release. Now, after the PI is searched there is a supplimentary check to see whether it is enclosed in a comment. We will also fix the "FOOBAR" problem ...
by Radu
Mon Sep 26, 2005 5:30 pm
Forum: Feature Request
Topic: Help in dialogs
Replies: 4
Views: 6440

Hi MJ, "Preferences" blocks interaction with the help if you first open the help window and then open the dialog and press F1. The context-sensitivity works, but the help window can't be browsed. You are right about this problem. We placed a bug and this will be fixed in the next version. ...
by Radu
Fri Sep 23, 2005 3:46 pm
Forum: XML Schemas
Topic: Trouble validating a combined document
Replies: 6
Views: 8137

Hi Steve, Ignore my previous remark about the Xerces J limitation regarding the attribute xsi:schemaLocation appearing only in the root element. That link was to an older Xerces implementation. With the Xerces available in the latest version of Oxygen, declaring different schema locations for differ...
by Radu
Fri Sep 23, 2005 10:13 am
Forum: XSLT and FOP
Topic: (Should Be) Simple XSLT Query Problem
Replies: 1
Views: 3670

Hi, "xsl:copy-of" is the way to go. The following sample stylesheet would accomplish the intended result: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="...
by Radu
Fri Sep 23, 2005 9:01 am
Forum: XML Schemas
Topic: Trouble validating a combined document
Replies: 6
Views: 8137

Hi Steve, The XML file you quoted above is not a valid XML document because the root element "Stock" is declared neither in a DTD nor in a schema. According to the Xerces J parser used to validate Oxygen files: The schema is specified by the xsi:schemaLocation or xsi:noNamespaceSchemaLocat...
by Radu
Fri Sep 23, 2005 8:35 am
Forum: XML Schemas
Topic: Trouble validating an attribute of type "time"
Replies: 2
Views: 5606

Hi Steve

The attribute time must appear with all the parts (HH:MM:SS) like: "09:35:20".
For more information about time values see XSD Date and Time Data Types

Regards, Radu.
by Radu
Thu Sep 22, 2005 4:28 pm
Forum: Common Problems
Topic: ${cf} with the extension included?
Replies: 1
Views: 2203

Hello Dave, Th reason the External Tools editor does not support a macro like you suggested is that it was originally intended for external transformations where the current file name without extension could be used to compose the output file name. I'm placing a bug do add an additional macro to the...
by Radu
Wed Sep 21, 2005 8:17 am
Forum: General XML Questions
Topic: Basic Xinclude question
Replies: 5
Views: 9291

Dear George The right way to use XInclude is the way described in your first post with files afile.xml and bfile.xml. You just have to go to the Options Menu -> Preferences -> XML Parser Options and select the "Enable XInclude" checkbox. You can read more about the XInclude support in Oxyg...
by Radu
Tue Sep 20, 2005 9:42 am
Forum: Common Problems
Topic: 6.2 fails to create directory ~/.profile on Linux
Replies: 1
Views: 2312

Hi

The error is received because the frameworks support in Oxygen tries to create a ".profile" directory at startup in the user home.
This however does not affect in any way the application's functionality.

Regards, Radu.
by Radu
Mon Sep 19, 2005 8:50 am
Forum: General XML Questions
Topic: beginners only,,,,,just like me..... to be help by expirts l
Replies: 2
Views: 5924

Hi, The code you presented above is written in the XQuery language. In order to execute it in Oxygen you have to create a new XQuery document and paste it in the document as follows (notice that the code is surrounded by tags): <root> { for $x in doc("Bookstore.xml")/Bookstore/Book return ...
by Radu
Wed Sep 14, 2005 1:51 pm
Forum: Common Problems
Topic: Tree Editor removes DOCTYPE definition
Replies: 1
Views: 1924

Hi Thank you for reporting this bug. Indeed the Tree Editor removes the DOCTYPE declaration when saving the tree back to XML format. We fixed this and the fix will be soon available in the 6.2 release. As a workaround you can go to Oxygen Options Menu -> Preferences -> Tree Editor and check the &quo...
by Radu
Tue Sep 06, 2005 10:40 am
Forum: Common Problems
Topic: Validating SOAP response messages fails with E cvc-elt.1:
Replies: 3
Views: 9156

Hi Bob The problem is that the file you are trying to validate does not hava a reference to the schema used for validation. There are actually 2 solutions to this problem: 1) Without modifying the SOAP response xml file. Open it in Oxygen, click the toolbar button called "External Validation&qu...
by Radu
Wed Aug 31, 2005 1:47 pm
Forum: Feature Request
Topic: Visual 'busy' cue
Replies: 4
Views: 7833

Hello The progress indicator that you see is for the opened schema. After that the schema diagram viewer downloads recursively all the imported schemas in order to parse them. This operation indeed shows no progress. We placed a bug so that some visual busy cue should be seen during the operation. I...
by Radu
Wed Aug 31, 2005 1:28 pm
Forum: XSLT and FOP
Topic: unicode numbers suddenly apearing in output
Replies: 1
Views: 3468

Hi, You have residual quotes in your stylesheet which are escaped in the output. Just try deleting the quotes after the xsl:value-of element like in: <xsl:value-of select="value[@name='module']"/>" should go to: <xsl:value-of select="value[@name='module']"/> Regards, Radu.
by Radu
Wed Aug 31, 2005 11:59 am
Forum: Feature Request
Topic: Open file dialog - default search directory
Replies: 13
Views: 17022

Hello,

We made changes so that the default directory in the "Open..." dialog will be the same as the current active file in the editor.
The changes will be available in the next Oxygen version.

Regards, Radu.
by Radu
Wed Aug 31, 2005 8:48 am
Forum: Common Problems
Topic: Splitting XML files
Replies: 1
Views: 1965

Hello Johannes For such files you can go to Preferences -> Editor/Tag Insight/Default page. -- For Oxygen 5.1 you will have to choose the DTD, Schema or RNG file that will drive the content completion for all files that do not have an associated schema/dtd. --Starting from Oxygen 6 the options are m...
by Radu
Mon Aug 29, 2005 8:19 am
Forum: XML Schemas
Topic: Validate fails with local file schemaLocation imports
Replies: 4
Views: 8399

Hi Allen,

Try removing the "file:" prefix before the relative locations in all the files like:

"http://www.test.com file:foo.xsd" => "http://www.test.com foo.xsd"
"file:bar.xsd" => "bar.xsd"

Regards, Radu.
by Radu
Fri Aug 26, 2005 1:47 pm
Forum: XSLT and FOP
Topic: unparsed text
Replies: 10
Views: 9621

Hi, The second version is the correct one but you need to do three more things: When configuring the transformation scenario select in the combo Saxon8B as the desired XSLT processor. Also please make sure that in the Preferences/XSLT Options page the Engine Used for XSLT 2.0 validation is Saxon8B a...
by Radu
Thu Aug 25, 2005 9:50 am
Forum: Other Issues
Topic: Generate wsdl from xml schema
Replies: 4
Views: 33019

Hi Sam,

We placed a bug to analyse the possibility of creating a stylesheet to transform from XML Schema to a sample WSDL file.
As far as I searched there does not seem to be something open source for that.

Regards, Radu.
by Radu
Wed Aug 24, 2005 1:52 pm
Forum: Feature Request
Topic: WSDL Analyser
Replies: 3
Views: 4947

Hi Franck You probably analyse your wsdl file by going to the "Tools" menu and clicking "WSDL SOAP Analyser". After that the "WSDL File Opener" Dialog appears. In this dialog you can click the last button on the right to open the specified WSDL file in the editor. About...
by Radu
Wed Aug 24, 2005 1:20 pm
Forum: Feature Request
Topic: WSDL Analyser
Replies: 3
Views: 4947

Hi Franck Before a WSDL file is analysed and presented in the WSDL Analyser Dialog the file is checked to be well formed (if it is not, the analysis does not continue), then it is validated against the WSDL XML Schema. The warning message that you receive occurs in this phase. Because WSDL is not ye...
by Radu
Wed Aug 24, 2005 11:27 am
Forum: Common Problems
Topic: problem creating xml document with DTD
Replies: 2
Views: 2627

Hi Frank The easiest and recommanded way to make a TEI XML file is to click the New From Templates Button located on the toolbar and choose the type of TEI document you want to edit. The DTD file that you chose (tei2.dtd) does not contain any elements so that's there are no entries in the document r...
by Radu
Wed Aug 24, 2005 8:25 am
Forum: Common Problems
Topic: diff command line
Replies: 4
Views: 3341

Hi, Starting with Oxygen version 6.1 this is possible. In the Oxygen installation folder there are 2 executable shells (diffFiles.bat and diffDirs.bat if running on Windows) You can give one or two command line arguments to each of the shells. Eg: To start diff between 2 directories diffDirs.bat &qu...
by Radu
Mon Aug 22, 2005 3:54 pm
Forum: Other Issues
Topic: Generate wsdl from xml schema
Replies: 4
Views: 33019

Sorry for the delay

Hi Sam I understand you are trying to generate a sample WSDL schema based on the types or elements found in an XML Schema. No, Oxygen does not posess this feature. I found this link on the web: http://www.capescience.com/webservices/schema2wsdl/index.shtml They probably have a stylesheet which is ap...
by Radu
Fri Aug 05, 2005 4:52 pm
Forum: Common Problems
Topic: Keyboard shortcut for "Close all tabs" does not wo
Replies: 6
Views: 8500

Hi, Yes you are right. The problem seems to be that the results tab for the external tools has an editable text area inside which captures the keyboard shortcuts. We placed a bug for this and a fix will be available in the next version. Meanwhile you can close any tab by pressing the middle mouse bu...
by Radu
Fri Aug 05, 2005 4:43 pm
Forum: Common Problems
Topic: Ant Support in oXygen Eclipse Plugin
Replies: 2
Views: 3746

For anybody else with this problem

Hello Christopher The schematron validation is based on applying stylesheets over the XML documents received as input. Transformation steps: 1) Download files schematron-message.xsl <http://www.ascc.net/xml/schematron/1.5/message1-5/schematron-message.xsl> and skeleton1-5.xsl <http://www.ascc.net/xm...
by Radu
Thu Aug 04, 2005 11:38 am
Forum: Common Problems
Topic: Keyboard shortcut for "Close all tabs" does not wo
Replies: 6
Views: 8500

Hi, There are 2 actions for which you can configure shortcuts that start with Close All: "Close all tabs" from the 'Results" category closes all the result tabs (eg: validation error tabs in the south area of the editor) "Close All" from the "File" category which c...
by Radu
Fri Jul 22, 2005 4:43 pm
Forum: XSLT and FOP
Topic: skip same line with Saxon
Replies: 3
Views: 5556

Hi, You could make an empty file called "MyDtd.dtd" and place it in the same directory with your xml file. The processor only checks if the dtd file is valid and does not try to validate the xml file in accordance to the dtd file so the transformation will succeed. If this is not acceptabl...
by Radu
Fri Jul 22, 2005 2:24 pm
Forum: XSLT and FOP
Topic: How to display a limited number of records using xsl?
Replies: 1
Views: 4737

Hi, The main idea is to group the nodes in the document 10 at a time and then display each group in its own table. The following stylesheet (version 2.0) when applied to the "personal.xml" file located in the Oxygen "samples" folder will output for each group a new HTML file. Eac...
by Radu
Fri Jul 22, 2005 10:55 am
Forum: General XML Questions
Topic: XPATH help
Replies: 1
Views: 7629

Hi,

For this XML file:

Code: Select all


<root>
<a id="1"/>
<a id="2"/>
<a id="3"/>
</root>
The following XPath

Code: Select all

//a[@id < 3 and @id >1]
gives as result the node a with id = 2.

Hope this helps.
Regards, Radu.