Re: Xerces-c Compilation Error on HP-UX

2011-11-21 Thread shathawa
Vinay, You may need to experiment with your build environment. This is the page that accompanies xercesc-2.8.0 for unix builds. To my knowledge, version 2.7.0 is no longer maintained even though it is the release recommended for xalan 1.10.

XERCES-C unable to build X64 DLLs using MS VC8, VC9, VC10

2011-11-22 Thread shathawa
XERCES-C Building X64 Sources ON MS (VC8, VC9, VC10) I am trying to create an integrated software release. Platform Win32 works OK, but the X64 platform fails with a LNK1112 error. fatal error LNK1112:module machine type 'X86' conflicts with target machine type 'x64' reference module - File:

Re: Xerces-c Compilation Error on HP-UX

2011-11-22 Thread shathawa
To download XALAN-C version 1.11 from the repository, you need to use a subversion or SVN program to access the following URL. http://svn.apache.org/repos/asf/xalan/c/trunk Example: svn co http://svn.apache.org/repos/asf/xalan/c/trunk xalan-c-1_11 where xalan-c-1_11 is your target

Re: XERCES-C unable to build X64 DLLs using MS VC8, VC9, VC10

2011-11-22 Thread shathawa
Interactive startup of MS Visual Studio Works OK. But I need to do builds from command line, batch jobs. If I first enter the MS Visual Studio and then interactively select the solution file for xerces-c, then the building for X64 platforms for configurations (Release) and (Debug) works OK.

Xerces-C (3.1.1) MS VC7.1 static release creates wrong pdb file

2011-11-25 Thread shathawa
Building Xerces-C Version 3.1.1 (Static Release) Platform (Win32) with Microsoft VC7.1 The library .pdb database is named xerceslib_vc71.pdb instead of the expected xerces-c_static_3.pdb. A fix should be made to the project file: projects/Win32/VC7.1/xerces-all/XercesLib/XercesLib.vcproj Note:

Re: Xerces Parse Function Crashing

2011-12-13 Thread shathawa
Vinay, Check to see what needs to be initialized in the Xerces environment for IGXMLScanner::scanReset to succeed. The stack trace indicates a dependency problem in scanReset. Steven J. Hathaway Hi All, I am using Xerces-2.8.0 on HP-UX itanium machine. I am trying to pass a string of

Xerces-C Unix build problems with current SVN repository

2012-03-06 Thread shathawa
I am having problems building Xerces-C from the current subversion download. Building all the source package distributions work fine. My platform is Linux using the GCC 4.4.5 compiler. I also have autoconfig and automake tools installed. I am missing some required build items and bad macro

Re: Xerces-C Unix build problems with current SVN repository

2012-03-06 Thread shathawa
Alberto, The reconf script solves the package issues. It creates the necessary files in the config/ directory and resolves the AM_INIT_AUTOMAKE macro. Steven J. Hathaway Hi Steven, I usually run autoreconf --force --install, but there is also a script named reconf that should do the same.

[Fwd: GSoC 2012 mentor signup]

2012-03-20 Thread shathawa
Original Message Subject: GSoC 2012 mentor signup From:Ulrich Stärk u...@apache.org Date:Tue, March 20, 2012 1:28 am To: p...@apache.org code-awa...@apache.org

Xerces-C Wrong Version in Trunk

2012-04-18 Thread shathawa
Compare Files: branches/xerces-3.1/version.incl (VER=3_1_1) tags/Xerces-C_3_1_1/version.incl (VER=3_1_1) trunk/version.incl(VER=3_1_0) Sincerely, Steven J. Hathaway - To unsubscribe, e-mail:

Re: Unable to pickup ICU Transcoder during Xerces-c-3.1.1 building

2012-04-18 Thread shathawa
Hi, If you have success integrating IBM ICU, I would like to know how! A companion XALAN-C (XSLT) project needs to have confirmed examples. The XALAN-C project uses XERCES-C as its XML parser library. Sincerely, Steven J. Hathaway Xalan Documentation Project xalan-...@xml.apache.org Hi

Date-Time Parsing Question

2012-04-26 Thread shathawa
I could use some clarification on XALAN and XERCES internals regarding the parsing and data storage in document nodes regarding XML dateTime type. XALAN I have not yet analyzed whether parsed dateTime values are saved as double values in XObjects. XObjects are used as the foundation for

Re: Fwd: Why does Xerces modify an invalid XML file while parsing?

2012-07-16 Thread shathawa
Neetha, Are you looking at the Parsed (DOM tree) instead of the source being parsed? The Parsed (DOM tree) is where the parsed content is recorded. Steven J. Hathaway Dear Alberto, Thank you for the quick reply. As I do not load the grammar (schema) to the parser, it gives error like

Re: Multithreaded SAX parser

2012-08-09 Thread shathawa
SonalG, The Xalan-C Transformer uses Xerces-C++ parser. Did you forget to reset the parser object before starting your next parse? Steven J. Hathaway Xalan Documentation Project Hi, You can look at the ThreadTest project sources in the Xerces-C++ distribution. Good luck! Vitaly

Solaris Studio 12.3 Install Problems

2012-08-20 Thread shathawa
Hi, I am having problems installing Solaris Studio 12.3 on Solaris 11 (intel 64). The solarisstudio.sh installer file appears to be missing from the download distribution. I am trying to get a virtual machine usable to build the Xerces-C and Xalan-C products. Steven J. Hathaway

Re: REplacement of DOMString and rest which are deprecated

2012-08-28 Thread shathawa
FYI If DOMString is deprecated in Xerces-C, it will also affect the Apache Xalan-C project. Sincerely, Steven J. Hathaway Xalan Documentation Hi, I am working the Xercesc C++ XML parser. I am migrating to Red Hat Linux 6.0. While compiling my C++ codes it is giving DOMString is

Re: xerces trunk on openbsd 5.1

2012-09-27 Thread shathawa
FYI Be careful with type wchar_t for code validation. GNU implements wchar_t as 32-bit. Windows implements wchar_t as 16-bit. Other platforms may also have 16/32, mixed, or undefined. The type XMLCh is a 16-bit type. The internal data storage is UTF-16. Sincerely, Steven J. Hathaway Hi, I

Re: xerces trunk on openbsd 5.1

2012-09-28 Thread shathawa
I am still recently new to the current Xerces. I use it through the Xalan project. If it is UCS-2, then that explains the apparent ambiguity when 2 XMLCh are required to render some large Unicode codepoints. - Steve I thought the internal format was UCS-2; is it actually UTF-16 ? -b. The

Xerces-C schema DateTime validation

2012-11-15 Thread shathawa
Xerces-C XMLDateTime Validation Issues It appears that the current code for Xerces-C XMLDateTime schema validation is good only for positive years. Many of the algorithms fail for negative years. Proposal to overcome the deficiencies and get better utility of mapping calendar systems is to

Xerces-C version identifiers in svn trunk

2012-12-19 Thread shathawa
The current xerces-c released version is 3.1.1 -- the development svn.a.o/xerces/c/trunk still references 3.1.0 in the following files. Sincerely, Steven J. Hathaway Index: configure.ac === --- configure.ac(revision 1424074)

ApacheCon-NA 2013 [XERCES]

2012-12-28 Thread shathawa
Greetings, I plan to be at ApacheCon-NA 2013. This will be my first ApacheCon. I live within 25 miles of the conference location and am willing to help represent the XALAN and XERCES projects. Sincerely, Steven J. Hathaway Xalan PMC

ApacheCon NA 2013

2013-01-23 Thread shathawa
ApacheCon (North America) 2013 This conference is being held in Portland, Oregon USA. Feb 24-25 Tutorials Feb 24 BarCamp Feb 25 Hackathon Feb 26-28 ApacheCon NA 2013 Conference Mar: 1-2Hackathons The conference website is http://na.apachecon.com I will be participating.

Xerces_C - Microsoft Upgrade

2013-02-07 Thread shathawa
FYI. As I work on getting Xalan-C ready for Microsoft Studio 2012, I plan to provide the necessary files to build Xerces-C for Microsoft Studio 2012. I hope to use the trunk codebase. Sincerely, Steven J. Hathaway Xalan Project

RE: Xerces_C - Microsoft Upgrade

2013-02-08 Thread shathawa
Daniel, I was just reviewing the Kitware CMake website and blog information. The Xerces-C project is mature and operates in maintenance mode with few patches being applied. Xerces is already configured for a UNIX build track and a WINDOWS build track. I am unsure how CMake can fit into the mix

Re: Xerces_C - Microsoft Upgrade

2013-02-15 Thread shathawa
Boris, Good to see someone else looking at Xerces-C. I am getting ready to launch the Microsoft Studio 2012 platform to support Xerces-C. I currently support VC6, VC7.1, VC8, VC9, VC10 and hopefully VC11. Xerces-C is a required library for the Xalan-C library which I help maintain. I will

Re: Regarding Xerces-C++ porting

2013-02-18 Thread shathawa
Hi, I am trying to port Xerces-C++ 3.1 on HP NonStop (nse) machines. Please let me know if you have any information about it. Best Regards, Rinil I don't do any work with HP NonStop systems. Looking at the specifications on the Internet, the systems use the Intel Itanium (IA64)

Xerces-C // ms vs 2012

2013-03-09 Thread shathawa
Greetings, And thanks for the Microsoft VS 2012 support for Xerces-C. The solution and project templates look clean and seem to work well. I am using your VS 2012 support when building the coming patch release of the Apache Xalan(C++) project. This weekend I was successful at compiling Apache

Re: [jira] [Commented] (XERCESC-2011) Xerces 3.1.1 Xerces.Lib fails to build with new Visual Studio 2012 Update 1 when v110_xp platform is chosen

2013-04-06 Thread shathawa
I get the same identifier truncation with both 32-bit and 64-bit platforms: ref string.h This is a Microsoft issue. I have successfully been able to ignore the warning when building the *.dll libraries. Sincerely, Steven J. Hathaway [

Re: Xerces-C / Patch Release Request

2013-04-11 Thread shathawa
Thanks Boris! I will be glad to pursue the release issues, patches, documentation, and features. Expect to see more activity from me on these in JIRA. Steven J. Hathaway Hi Steven, shath...@e-z.net shath...@e-z.net writes: I would like to see a patch release for Xerces-C (XML Parser).

Re: Xerces-C / Patch Release Request

2013-04-11 Thread shathawa
Scott Boris, Besides windows builds with VS 2003, 2005, 2008, 2010, 2012 - I also perform builds on FreeBSD, PCBSD, and GNU Linux. I DO NOT build packages for Debian and RedHat package managers. I DO build debug and release builds of Xerces-C from sources. I can send some pings to other

Re: Xerces-C / Patch Release Request

2013-04-11 Thread shathawa
On 4/11/13 12:35 PM, shath...@e-z.net shath...@e-z.net wrote: Besides windows builds with VS 2003, 2005, 2008, 2010, 2012 - I also perform builds on FreeBSD, PCBSD, and GNU Linux. I DO NOT build packages for Debian and RedHat package managers. I DO build debug and release builds of Xerces-C from

Re: Xerces-C / Patch Release Request

2013-04-27 Thread shathawa
Boris, Are there enough new features in the trunk to warrant a 3.2 release? Just adding support for a new platform should not be considered a feature. This is why I suggested a 3.1.2 patch release. I am building and testing xerces-c from the trunk on the following platforms: VC7.1 VC8 VC9 VC10

Xerces-C web pages

2013-04-28 Thread shathawa
I can probably assist with website documentation - preparing for a new release. Do you want to keep using the stylebook .jar transformation? I have an xslt transformation library that can use the same stylebook xml markup to render xhtml web pages. The xslt stylesheet will need a little work to

Re: XML 1.0 5th edition support

2013-05-02 Thread shathawa
Greetings Rob, I can also check for correctness. I will need to download the 5th edition and familiarize myself with the changes. I have already done significant proof-of-correctness evaluation of Xerces-C supporting the 4th edition of XML-1.0. I can also do some evaluation of XML-1.1

Xerces - xml:lang spec

2013-05-06 Thread shathawa
The schema specification for xml:lang references internet RFC3066 as supplying the format for xml:lang content. RFC3066 is obsoleted by RFC4646 RFC4646 is obsoleted by RFC5646 Is the xml:lang specification to follow the additional content definitions for language tokens? If so, then the

Re: XML 1.0 5th edition support

2013-05-06 Thread shathawa
FYI: Comparing XML-1.0 and XML-1.1 specs. Comparing the XML 1.0-5 for name chars, the text from XML 1.1-2 has been copied into the XML 1.0-5 specification verbatum. The distinction of control characters disallowed in XML-1.0 and restricted in XML-1.1 still remains. The differences in XML-1.0

OSU Capstone 2016-2017 Project

2016-10-02 Thread shathawa
Apache Xerces/C and Apache Xalan/C libraries are being deployed in an OSU Capstone 2016-2017 project. I am mentoring an Oregon State University - undergraduate Capstone project this school year. I have three students that have been accepted to work on this project. The project will be