xngr-user Mailing List for XNGR XML Browser (Page 2)
Brought to you by:
edankert
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(3) |
Nov
(1) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(6) |
Feb
(6) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
(2) |
Nov
|
Dec
|
2004 |
Jan
|
Feb
(1) |
Mar
(4) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
(1) |
Mar
|
Apr
(2) |
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Edwin D. <eda...@cl...> - 2003-02-21 13:11:15
|
Hello Rado, > I have included schema in xml file. > > I replaced my code with this: > > > <?xml version="1.0" encoding="windows-1250"?> > > <xsd:schema > > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > > xsi:schemaLocation="http://www.w3.org/2001/XMLSchema > > http://www.w3.org/2001/XMLSchema.xsd" > > xmlns:xsd="http://www.w3.org/2001/XMLSchema"> > > ........... > > </xsd:schema> > > I got error message "Ln 6: cvc-elt.1: Cannot find the declaration of > element 'xsd:schema'." for this : > > xmlns:xsd="http://www.w3.org/2001/XMLSchema"> > > ?? what is happen? The thing that is happening here is that it can't find the file: http://www.w3.org/2001/XMLSchema.xsd Make sure that you are online when you are trying to validate the document. Please let me know about any other problems, Edwin |
From: Rado K. <ra...@at...> - 2003-02-21 12:52:37
|
Hi Edwin, Thanks for your help. I have included schema in xml file. I replaced my code with this: > <?xml version="1.0" encoding="windows-1250"?> > <xsd:schema > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://www.w3.org/2001/XMLSchema > http://www.w3.org/2001/XMLSchema.xsd" > xmlns:xsd="http://www.w3.org/2001/XMLSchema"> > ........... > </xsd:schema> I got error message "Ln 6: cvc-elt.1: Cannot find the declaration of element 'xsd:schema'." for this : > xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ?? what is happen? thanks rado > Hello Rado, > > Thanks for your question. > > >>I tried xngr and schema service. >>When I press document->parse on xsd document, I get this error message: >>Ln 3: cvc-elt.1: Cannot find the declaration of element 'xsd:schema'. > > > If I'm correct, you are trying to parse a schema with the validation option > turned on. There are 2 solutions: > > [1] Make sure you include the schema/dtd > > For validation to work you need to include a schema/dtd in your xml. > > DTD: > > To validate against a DTD, the DTD needs to be defined in the > DOCTYPE element, like this: > > <!DOCTYPE test PUBLIC "http://test.org//1.0" "http://test.org/test.dtd"> > > SCHEMA: > > To validate the XML against the defined XML Schema, for a Schema without > namespaces: > > <test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:noNamespaceSchemaLocation="http://test.org/test.xsd"/> > > For a schema with namespaces: > > <test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://test.org/ http://test.org/test.xsd" > xmlns="http://test.org/"/> > > In this case, you could do this: > > <?xml version="1.0" encoding="windows-1250"?> > <xsd:schema > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://www.w3.org/2001/XMLSchema > http://www.w3.org/2001/XMLSchema.xsd" > xmlns:xsd="http://www.w3.org/2001/XMLSchema"> > ........... > </xsd:schema> > > > [2] Turn validation off > > Turn the validation option off (Editor->Document->Validation), the XML will > now only be checked for well-formedness. > > IMPORTANT: > In contrary to what the reviews say, the application allows for editing and > saving of non-valid/not well-formed XML. > > Hope this answered the question? > Edwin > > > > |
From: Edwin D. <eda...@cl...> - 2003-02-21 11:28:42
|
Hello Rado, Thanks for your question. > I tried xngr and schema service. > When I press document->parse on xsd document, I get this error message: > Ln 3: cvc-elt.1: Cannot find the declaration of element 'xsd:schema'. If I'm correct, you are trying to parse a schema with the validation option turned on. There are 2 solutions: [1] Make sure you include the schema/dtd For validation to work you need to include a schema/dtd in your xml. DTD: To validate against a DTD, the DTD needs to be defined in the DOCTYPE element, like this: <!DOCTYPE test PUBLIC "http://test.org//1.0" "http://test.org/test.dtd"> SCHEMA: To validate the XML against the defined XML Schema, for a Schema without namespaces: <test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://test.org/test.xsd"/> For a schema with namespaces: <test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://test.org/ http://test.org/test.xsd" xmlns="http://test.org/"/> In this case, you could do this: <?xml version="1.0" encoding="windows-1250"?> <xsd:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ........... </xsd:schema> [2] Turn validation off Turn the validation option off (Editor->Document->Validation), the XML will now only be checked for well-formedness. IMPORTANT: In contrary to what the reviews say, the application allows for editing and saving of non-valid/not well-formed XML. Hope this answered the question? Edwin |
From: Rado K. <ra...@at...> - 2003-02-21 09:48:35
|
Hi, I tried xngr and schema service. When I press document->parse on xsd document, I get this error message: Ln 3: cvc-elt.1: Cannot find the declaration of element 'xsd:schema'. xsd: <?xml version="1.0" encoding="windows-1250"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ........... </xsd:schema> Is there any way to resolve this problem? thanxs rado |
From: Edwin D. <eda...@cl...> - 2003-02-17 21:17:09
|
TaaaDaaa, finally, eXchaNGeR version 1.0 has been Released! -------------------------------------------------------- The eXchaNGeR XML browser and Editor is an open source browser and editor framework, written in Java, that visualizes elements in a XML document. The user can browse through and manage the visible elements in the document with external services, or she can make changes to the content of the XML document with the built-in XML editor. http://xngr.org/ ======================================================== FEATURES: * XML Editor with tag completion, Schema/DTD validation and Syntax highlighting. * XML Viewer with XPath search functionality, * XML Schema Viewer Service, * SVG Viewer Service, * XHTML Service, * SOAP Service, * PIMnet services ======================================================== XML Editor The XML Editor component is a text-based XML editor and can be used to edit XML Documents in the eXchaNGeR application. The editor has all basic functionality needed for a XML Editor. Besides the normal editing actions like Cut, Copy, Paste, Find, Goto and Undo/Redo, it also supports syntax highlighting, automatic tag completion and indentation, block indentation and the XML Document can be validated against a XML Schema or DTD. http://xngr.org/editor.htm --------------------------------------------------------- XML Viewer The XML Viewer component can be used to browse the XML documents available in the XML Documents in the eXchaNGeR application. The user can select elements by defining XPath expressions on the tool-bar. The selected elements are highlighted and expanded. The amount of information visible when browsing can be changed to avoid clutter when browsing. http://xngr.org/viewer.htm --------------------------------------------------------- XML Schema Viewer Service The free XML Schema Viewer service gives the user a simple way to navigate, test and browse any XML Schema (xsd) document. The Schema is represented as a tree view and detailed information about the Schema or a selected Element, Attribute or ModelGroup is available to the user. Global elements, Substitutions for elements and References to elements and attributes can be used to select new root elements for the viewer. http://cladonia.com/schemaviewer/ --------------------------------------------------------- SVG Viewer Service The SVG Image viewer service is associated with the SVG element and allows for opening and viewing SVG images. The Image viewer service uses the Apache Batik Java based toolkit to view a XML-Element in the Scalable Vector Graphics (SVG) format. http://xngr.org/services.htm#svg --------------------------------------------------------- XHTML Service The XHTML Service identifies the XHTML element and starts-up the default web-browser to open the element. http://xngr.org/services.htm#xhtml --------------------------------------------------------- SOAP Service The SOAP Service associates itself with a SOAP Envelope (1.1 and 1.2) element and can be used to send any type of SOAP messages. The Service allows for sending the SOAP-Message to any URL, with the possibility of specifying the SOAP-Action property. The result is made viewable and can be evaluated. http://xngr.org/services.htm#soap --------------------------------------------------------- PIMnet Services The PIMnet-Services can handle the XML data as is synchronised and saved by the PIMnet Hotsync Conduits. Using the PIMnet-Services transforms the eXchaNGeR application in an open source version of the Palm Desktop application. The current available services are for the addressbook, todolist and memopad applications. http://pimnet.org/ |
From: Edwin D. <eda...@cl...> - 2003-02-03 22:26:45
|
Version 0.11 of the eXchaNGeR XML-browser (and Editor) has been released. http://xngr.org/downloads.htm This version has some major Editor enhancements, bug fixes and uses the latest Xerces 2 and DOM4J packages. The Editor enhancements include editing and saving of non well-formed XML, improved formatting functionality with the option to not inline elements with mixed content for readability, better entity handling with built-in support for an extensive set of common entities and a new "save-as" option. Among the bugs fixed are all formatting problems, auto-reload when a document has been changed by an external process and added an overwrite warning when creating a new document. Thanks to the people who provided input for this release! ---------------- The 1.0 release is scheduled for the 18th of February! Please let me know about bugs or new features you want fixed and included for the 1.0 version. For more information: http://xngr.org/ Please send remarks to this mailinglist or you can submit your bugs and feature enhancements on the sourceforge site: http://sourceforge.net/tracker/?group_id=46235&atid=445486 ---------------- Have fun, Edwin |
From: Edwin D. <eda...@cl...> - 2003-01-31 14:17:34
|
Hi, The eXchaNGeR 1.0 Release date is set for the 18th of February! Next Tuesday (4th February) the final beta version will be distibuted, this will give people the opportunity to try out the new functionality. For this version we've changed over to dom4j-dev-8 and xerces 2.3.0. (This will be the first version using the Xerces2 parser, in contrary to what was written in the readme file!) The new functionality will include better entity handling (with an integrated common-entity list) and formatting options. Please let us know about any additional bugs or new features you want fixed and included for the 1.0 version. For more information: http://xngr.org/ Please send remarks to this mailinglist or you can submit your bugs and change requests on the sourceforge site! http://sourceforge.net/tracker/?group_id=46235&atid=445486 Edwin |
From: Edwin D. <eda...@cl...> - 2003-01-30 11:17:03
|
Hi, An overview about what to do when the eXchaNGeR browser does not run immediately 'out of the box'. Make sure you know the error message! For Windows users this means to run xngr.bat from the command-prompt. ERRORS: ------- [1] Java cannot be found. [2] -jar: illegal argument. [3] Exception in thread main" java.lang.NoClassDefFoundError: ??? [4] Exception in thread "main" java.util.zip.ZipException: ??? [1] Java cannot be found. ------------------------- 1) Add the java installation directory to your path, to avoid the same problem with other Java programs. Goto [Control Panel - System] or change the .cshrc or .profile file for Linux/Unix users. 2) Or change the xngr.bat / xngr.sh file to point directly to the java installation directory. [JAVA_DIR]java -Djava.security.policy=policy -jar xngr-browser.jar Where the java directory could be: [JAVA_DIR] = c:\jdk1.4\bin\ [2] -jar: illegal argument -------------------------- The -jar argument is standard since JDK 1.2.2, the currently installed version must be an older version of Java, to test this, try typing "java -version" on the command-line. To solve this, install a newer version from the SUN website: http://java.sun.com/j2se/1.4/ If a newer version is already available, make sure to point the PATH to the correct JDK! See [1] [3] Exception in thread "main" java.lang.NoClassDefFoundError: ??? ------------------------------------------------------------------ The problem is that the eXchaNGeR application can't find some of its library (.jar) files. Make sure when unzipping the setup file to keep the same directory structure as in the original zip file! To check wether this is the case, go to the xngr installation directory and find out if there is a directory called lib. All the .jar files except for the "xngr-browser.jar" should be in this directory. If the directory does not exist or the .jar files are not in the lib directory, install the eXchaNGeR application again. [4] Exception in thread "main" java.util.zip.ZipException: ??? -------------------------------------------------------------- The xngr-browser.jar file cannot be found! This can happen when the xngr.bat / xngr.sh file is not invoked from the eXchaNGeR installation directory. 1) Make sure the xngr-browser.jar file is available, if not reinstall the xngr application. 2) Invoke the xngr.bat / xngr.sh file from the eXchaNGeR installation directory! (make sure the working directory is set correctly for a Windows shortcut!) Hope this solves some of your problems, Edwin |
From: Edwin D. <eda...@cl...> - 2003-01-29 11:10:00
|
Hello Robert, Thanks for your question! I think I might need some more information, could you send me the complet= e description of the error? Here are some possible answers: [1] Could not find java.exe... - Change path ... This could happen when your jdk/bin directory is not in the path, you cou= ld add this to the path (Control panel->System), to avoid any problems with other Java applications. - Or change xngr.bat ... Otherwise try changing the xngr.bat file like this: (java dir)java -Djava.security.policy=3Dpolicy -jar xngr-browser.jar (java dir) =3D c:\jdk1.4\bin\ [2] Wrong startup/working directory The xngr application needs to be run from the directory where it was installed! Hope this solved the problem, Edwin ----- Original Message ----- From: "Robert Wallin" > Hi, > > I believe that I experience the same problem as Curtis Seyfried posted > 2002-10-24. When I execute the bat-file from windows I only see a flash= of > the command window. When I try to run the app from the command line I s= ee > why. I receive a message saying that the argument (for java) is illegal. > Still haven=92t been able to start the exchanger so any help would be > appreciated. I=92m running windows XP and jsdk 1.4. > > Robert |
From: Robert W. <mar...@ho...> - 2003-01-29 08:07:17
|
Hi, I believe that I experience the same problem as Curtis Seyfried posted 2002-10-24. When I execute the bat-file from windows I only see a flash of the command window. When I try to run the app from the command line I see why. I receive a message saying that the argument (for java) is illegal. Still havent been able to start the exchanger so any help would be appreciated. Im running windows XP and jsdk 1.4. Robert _________________________________________________________________ MSN 8 with e-mail virus protection service: 2 months FREE* http://join.msn.com/?page=features/virus |
From: Edwin D. <eda...@cl...> - 2003-01-22 15:39:33
|
Cladonia Ltd. (http://cladonia.com/) announces the first free public release of the XML Schema Viewer service for the eXchaNGeR XML Browser and Editor (http://xngr.org/). The XML Schema Viewer service provides a simple way to navigate, test and browse any XML Schema (xsd) document in the eXchaNGeR application. The Schema is dislayed as a tree with all detailed information about the Schema or selected Element, Attribute or ModelGroup directly available to the user. Global elements, Refering elements and possible Substitute elements can be selected as root element for the viewer. For more information: http://cladonia.com/schemaviewer/ Please let us know about any problems or enhancements, Edwin Dankert Cladonia Ltd. http://cladonia.com/ |
From: Edwin D. <eda...@cl...> - 2003-01-13 09:19:42
|
Version 0.10 of the eXchaNGeR XML-browser (and Editor) has been released. http://xngr.org/downloads.htm This version has some Major Linux and Editor bug fixes. The editor has new reload functionality, the error information on the status bar can now be scrolled, attribute string syntax highlighting has been improved and the system-identifier is set correctly when validating. Linux/Unix Support has been improved by changing the line-feeds in the xngr.sh script, handle the popup trigger correctly, and it is now possible to adjust the browser. Thanks to all the people who provided input for this release! ---------------- This version is a release candidate, please let me know about bugs or new features you want fixed and included for the 1.0 version. The final 1.0 version is 'scheduled' for release at the end of January. For more information: http://xngr.org/ Please send remarks to this mailinglist or you can submit your bugs and feature enhancements on the sourceforge site: http://sourceforge.net/tracker/?group_id=46235&atid=445486 ---------------- Have fun, Edwin |
From: Edwin D. <eda...@xn...> - 2002-12-23 11:06:38
|
Version 1.0 of the eXchaNGeR application has been postponed until the end of January. This is mainly because I'm waiting for the release of version 1.4 of the DOM4J package and I was very busy the last couple of weeks with other stuff. The 1.0 version will handle relative paths validation correctly, have some formatting bug fixes, editor syntax highlighting improvements and includes version '1.4' of DOM4J. Please let me know about any additional bugs or new features you want fixed and included for the 1.0 version. For more information: http://xngr.org/ Please send remarks to this mailinglist or you can submit your bugs and change requests on the sourceforge site! http://sourceforge.net/tracker/?group_id=46235&atid=445486 Merry Christmas, Edwin |
From: Female E. M. <fem...@ne...> - 2002-12-08 06:16:00
|
Female Entrepreneur is just about ready to launch its much awaited magazine and website!!! If you, or anyone you know, is interested in a complimentary issue and invitation, please respond to this message with the pertinent information including the mailing address and email contact. Find out what Female Entrepreneurs want and need to know... Kelly Swenson Female Entrepreneur p.s. We also have a few advertising spaces left for this issue AT DISCOUNTED PRICES. What better way to reach a targeted audience! Below are some facts you should know about advertising in Female Entrepreneur... As of 2002, there are an estimated 6.2 million majority-owned, privately-held women-owned firms in the U.S., employing 9.2 million people and generating $1.15 trillion in sales. 86% of women entrepreneurs say they use the same products and services at home that they do in their business, for familiarity and convenience. Women-owned businesses are just as financially strong and creditworthy as the average U.S. firm, with similar performance on bill payment and similar levels of credit risk. Women and men business owners are equally likely to be using the Internet for business - 61% of women and 55% of men use the Internet for business. Among Internet users, 50% of women- and 54% of men-owned firms have web sites. You Want Sales? Just be our guest! Reply to us if you are interested in rates and further information!!! ** To be removed from our list, reply with "remove" in the subject line. |
From: Edwin D. <eda...@xn...> - 2002-12-02 20:47:16
|
Version 0.9 of the eXchaNGeR XML-browser (and Editor) has been released. http://xngr.org/downloads.htm This version has new XML Viewer functionality and some XML Editor bug fixes. The Editor no longer has the problem that a phantom element gets added to the end of the document, closing a comment no longer creates an element end-tag, the content of the message windows is visible and the status message on the Explorer window changes correctly. New functionality in the XML Viewer allows the user to select elements based on a XPath expression, it displays element end-tags and it also has been extended to display comments and mixed elements correctly. ---------------- XPATH SELECTION: The user can select elements by defining a XPath expression on the tool-bar and pressing the 'Select' button. The selected elements are highlighted and expanded. Note: Only elements can be selected, XPath expressions that return text or other nodes will not result in a selection. When browsing through the elements, the XPath for the current selected element is displayed in the XPath field, this can be used to select similar elements. ---------------- This version is a release candidate, please let me know about bugs or new features you want fixed and included for the 1.0 version. The final 1.0 version is 'scheduled' for release before the end of the year. For more information: http://xngr.org/ Please send remarks to this mailinglist or you can submit your bugs and change requests on the sourceforge site! http://sourceforge.net/tracker/?group_id=46235&atid=445486 ---------------- Have fun, Edwin |
From: Edwin D. <eda...@xn...> - 2002-11-04 12:37:17
|
Version 0.8 of the eXchaNGeR XML-browser (and Editor) has been released. http://xngr.org/downloads.htm This version has some major Editor bug fixes and new functionality. The Editor no longer shows an annoying pop-up upon saving, it allows for empty tag creation, the last open comment tag no longer causes problems and the tab key works in all editor windows. New features allow the user to select documents that need to be validated automatically when loaded and to add multiple documents at the same time. This version is a release candidate, please let me know about bugs or new features you want fixed and included for the 1.0 version. The final 1.0 version is 'scheduled' for release before the end of the year. ----------------- By the way, have you seen the review by Mark Gibbs in his newsletter? http://www.nwfusion.com/newsletters/web/2002/01590348.html Thanks Mark! Remark: the word 'Validated' as used in the newsletter does not have the same meaning as used in the XML world. (Identified/Interrogated would probably have been better) ----------------- For more information: http://xngr.org/ Please send remarks to this mailinglist or you can submit your bugs and change requests on the sourceforge site! http://sourceforge.net/tracker/?group_id=46235&atid=445486 ---------------- Have fun, Edwin |
From: Edwin D. <eda...@xn...> - 2002-10-31 14:14:06
|
Hello Seymour, Thanks for your question and sorry for not replying earlier, was out of the office for a while. > I recently downloaded the Zip files for the XNGR XML Editor, Viewer, > Browser; along with the Soap and XHTML service files. That is a good way to start. > I unzipped the files into a directory called XNGR Editor, > ran the XNGR.bat file as stated in the read.me file, also > unzipped the soap and XHTML service files. That sounds perfectly fine to me. > All that happened is a DOS window appeared, a loin of code > appeared, the DOS window closed. All so fats I could not > tell what happened. Nothing else appeared. I don't know what the problem could be, especially since you say that you have JDK/JRE 1.3 installed... Could you startup a DOS box and go to the XNGR installation directory/folder and try running the xngr.bat file again by typing 'xngr' on the command prompt? This should give you more information about what is going wrong. > I went back and downloaded each successive previous version, > unzipped it, and overwrote the files 1-7 in order thinking > that 2 - 7 were just update files but the core files were > in the originals. Same results. I understand the reasoning but it should not be necessary to reinstall a previous version. Let me know how you get on, Edwin ----- Original Message ----- From: "Curtis Seyfried" <cur...@ve...> To: <xng...@li...> Sent: Thursday, October 24, 2002 10:50 PM Subject: [xngr-user] Running XNGR > I ma running a Dell PIII-700 with Windows 2000 pro workstation admin rights, > JAR 1.3 installed and running other applications or plugins to Web browsers > fine. > > I recently downloaded the Zip files for the XNGR XML Editor, Viewer, > Browser; along with the Soap and XHTML service files. I unzipped the files > into a directory called XNGR Editor, ran the XNGR.bat file as stated in the > read.me file, also unzipped the soap and XHTML service files. > > All that happened is a DOS window appeared, a loin of code appeared, the DOS > window closed. All so fats I could not tell what happened. Nothing else > appeared. I went back and downloaded each successive previous version, > unzipped it, and overwrote the files 1-7 in order thinking that 2 - 7 were > just update files but the core files were in the originals. Same results. > > I am new to this XML and JAVA. Is there something I am missing, as in not > doing ? I have Open Office 1.0 and it runs fine using my JAR 1.3. > Curtis Seyfried 2474 Davidson Ave., 3-E Bronx, NY. 10468-5321 > 718-295-6871 > cur...@ve... > |
From: Edwin D. <eda...@cl...> - 2002-10-04 11:31:40
|
Version 0.7 of the eXchaNGeR XML-browser (and Editor) has been released. http://xngr.org/downloads.htm This version provides: - better XML Editor functionality, The editor now supports automatic tag completion, block (un)indentation, tagging of selected text and no longer auto formats XML Documents. - new Move action, allowing documents to move between categories. - new easy to navigate Toolbars, - and other improvements. This version has all functionality that will be in version 1.0. Please let me know about bugs or new features you want fixed and included for the 1.0 version. The final 1.0 version is 'scheduled' for release before the end of the year. For more information: http://xngr.org/ Please send remarks to this mailinglist! Have fun, Edwin |
From: Edwin D. <eda...@cl...> - 2002-09-17 17:54:01
|
Hi, The initial version of the XHTML service for the eXchaNGeR application has been released: http://xngr.org/downloads.htm This service associates itself with the XHTML element and starts up the default Web Browser when opening the element. For more information: http://xngr.org/ Please send remarks to: in...@xn... or to this mailing list: xng...@li... Have fun, Edwin |
From: Edwin D. <eda...@xn...> - 2002-09-02 10:24:23
|
Version 0.6 of the eXchaNGeR XML-browser (and Editor) has been released. http://xngr.org/downloads.htm This version provides: - Categorisation of XML Documents, The user can now add documents to a tree of categories. - Allowing links and handling of Remote XML Documents, XML Documents on the internet can now be handled the same as documents on the local file system. - An improved (local) Help system. - The SOAP Service also has been changed, The previous version did not seem to be robust enough so the new version uses the Apache SOAP package in the background and it has been tested with the Amazon and Google Web-Services. Behind the scenes the application has been changed a bit as well: - The application uses the Xerces XML Parser instead of the Crimson Parser, this because of a problem found. (The SVG-Service needed the Crimson parser so this service had to be rewritten, please get the latest version) - A couple of methods in the API have changed, Please get the latest versions of the examples and X-Services, the previous versions should still work however. For more information: http://xngr.org/ Please send remarks to: in...@xn... Have fun, Edwin |
From: Edwin D. <eda...@xn...> - 2002-08-06 16:44:01
|
Version 0.5 of the eXchaNGeR XML-browser (and Editor) has been released. http://xngr.org/downloads.htm This version supports new XML Editor, Viewer and Refresh functionality: - The Editor allows for syntax highlighting, automatic indentation and validation. - The Viewer allows for selective viewing of the XML elements in a tree. - The XML information can now be refreshed/reloaded from file. For more information: http://xngr.org/ Have fun, Edwin |
From: Edwin D. <eda...@cl...> - 2002-06-23 21:11:00
|
Version 0.4 of the eXchaNGeR XML-browser has been released. http://xngr.org/downloads.htm This version contains a couple of bug fixes, the XML is saved to an even prettier format and the application ignores the DOCTYPE entity. Have a look at the 2 new services: - A SOAP service which allows users to send SOAP messages over HTTP specifying the URL and SOAP Action. - A SVG service which allows the user to view Scalable Vector Graphics elements. For more information: http://xngr.org/ Have fun, Edwin |
From: Edwin D. <eda...@cl...> - 2002-05-03 17:18:56
|
Hi, Version 0.3 of the eXchaNGeR XML-browser has been released. http://xngr.org/downloads.htm This version contains improved Security management, and will ask the user for confirmation before removing a service or document. The security management grants the eXchaNGeR application all rights on the users machine (same as it was before) but it allows the user to fine-tune these rights by changing the policy file. The services however are more restricted and run in a more controlled environment. Have fun, Edwin |
From: Edwin D. <eda...@xn...> - 2002-04-26 12:13:28
|
Hi, Version (0.2) of the eXchaNGeR XML browser has been released. It contains fixes for bugs found when creating the 'X-Services'. The xngr interface has not been changed so any already created xngr services should only work better. For more info: http://sourceforge.net/projects/xngr/ http://xngr.org/ Version (0.1) of the X-Services has been released. The X-Services can handle the information saved by the XML-Conduits. The XML-Conduits synchronise the information between the Palm handheld and the PC and save the information to a XML-file. The X-Services can be used to change this information on the PC. Services for the addressbook, todolist and memopad are available! For more info on the XML-Conduits: http://sourceforge.net/projects/conduitmanager/ http://xngr.org/cmanager/conduits.htm And for more info about the X-Services: http://xngr.org/services.htm Have fun, Edwin |