Re: Work on 3.3.0 C++ patch starting

2024-10-02 Thread Boris Kolpackov
Cantor, Scott writes: > I still need to test the Windows build, but I've uploaded an > RC for 3.3.0 [1] We've tested the RC in 90+ build configurations (all the major platforms and compilers, but in C++11 or later only): https://ci.stage.build2.org/@071ef8c6-5d1a-4e3d-9bd0-acc62fc51d5c All loo

Re: Work on 3.3.0 C++ patch starting

2024-09-26 Thread Boris Kolpackov
Cantor, Scott writes: > I've resolved most of the issues I can feasibly tackle for 3.3, > possibly a CMake change or two left if I get responses. Sounds good, thanks for your effort! > Should be able to spin a RC next week. Great, will package and test. --

Re: Work on 3.3.0 C++ patch starting

2024-09-13 Thread Boris Kolpackov
Cantor, Scott writes: > As is apparent from the Jira messages, I'm starting to look at > a 3.3.0 to fix a bug in the Curl support along with some miscellany. Great, thanks for your effort! > ETA is probably October some time. I would be happy to package the RC and test it on our 100+ build co

Re: Xerces-C V3.2.5 now available

2023-12-22 Thread Boris Kolpackov
Cantor, Scott writes: > The Xerces project has released V3.2.5 of the C++ parser library [...] Thanks for making the release and doing all the administrative stuff! - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org

Re: Release candidate for V3.2.5 patch

2023-12-14 Thread Boris Kolpackov
Cantor, Scott writes: > I suggest we wait until next Wednesday and close the vote > that morning. I should be able to complete the release and > check in the site updates that day. Sounds good to me, thanks! - To unsubscribe,

Re: Release candidate for V3.2.5 patch

2023-12-14 Thread Boris Kolpackov
Cantor, Scott writes: > Windows has not yet been tested. I've built and tested using standard CMake/ninja instructions in both debug and release build types with MSVC 17.6 (19.36.32534). No errors, all tests passed. > If Windows builds, this would be the candidate to vote out. My +1 for the r

[jira] [Commented] (XERCESC-2188) Use-after-free on external DTD scan

2023-12-06 Thread Boris Kolpackov (Jira)
[ https://issues.apache.org/jira/browse/XERCESC-2188?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17793670#comment-17793670 ] Boris Kolpackov commented on XERCESC-2188: -- A new PR with the fix: [h

Re: C++ Class Generation Based off .xsd Files

2023-10-11 Thread Boris Kolpackov
Thomas Ranneberger writes: > I am attempting to take provided .xsd files that detail the xml schema > definitions of certain message types, and turn these into C++ classes > for sending messages and validating those message fields. Does this > sound like something Xerces is capable of doing? The

Re: Probably a 3.2.5 fix coming

2022-10-20 Thread Boris Kolpackov
Cantor, Scott writes: > I am open to either doing a patch at some point after a little > time elapses or officially moving the code base to C++-11. I would prefer to move to C++11. If nobody cares, why create unnecessary churn by making another release? I propose the following plan: 1. Wait a

Re: Probably a 3.2.5 fix coming

2022-10-19 Thread Boris Kolpackov
Cantor, Scott writes: > I've patched the use of nullptr out simply for consistency but there's > no apparent need to rush out a fix, so I'll let it sit for the time > being. I don't mind waiting (to see if anything else shakes out) but I think we either need a bugfix release eventually or offici

Re: Probably a 3.2.5 fix coming

2022-10-19 Thread Boris Kolpackov
Roger Leigh writes: > nullptr is a language keyword, so that should just have worked. Unless > an older language standard was being explicitly forced, the use of > nullptr should be benign. nullptr was added in C++11 so by using it you effectively drop support for C++98/03. I personally don't

Re: 3.2.4 release candidate

2022-10-12 Thread Boris Kolpackov
Cantor, Scott writes: > On 10/12/22, 9:09 AM, "Boris Kolpackov" wrote: > > >2. We build with ICU and Curl everywhere so other transcoders > > and netaccessors were not tested. > > Do you actually use them? Because in my testing, I haven't man

Re: 3.2.4 release candidate

2022-10-12 Thread Boris Kolpackov
Cantor, Scott writes: > I've posted a signed RC here: > https://dist.apache.org/repos/dist/dev/xerces/c/3/sources/ We've updated our build2 package[1] to RC1 and ran the CI. Everything seems to be fine except for the wasm32-emscripten target, which is not unexpected. The complete list of tested

Re: 3.2.4 release candidate

2022-10-11 Thread Boris Kolpackov
Cantor, Scott writes: > On 10/11/22, 10:28 AM, "Boris Kolpackov" wrote: > > >Remind me where does the source for the front page live? > > doc/readme.xml I think (it's in doc, but page is from memory, should > be clear from the commit). That's what

Re: Prepping a 3.2.4 release

2022-10-11 Thread Boris Kolpackov
Cantor, Scott writes: > On 10/10/22, 12:17 PM, "Boris Kolpackov" wrote: > > >Not every application that uses Xerces-C++ is security sensitive. > > If that were our perspective as a project, then among other things > there should be no networking code i

Re: 3.2.4 release candidate

2022-10-11 Thread Boris Kolpackov
Cantor, Scott writes: > Done, v3.2.4rc1. Thanks! > > The web site update embedded in it includes a note on the front page > > that the library lacks maintainers and should not be used for new > > projects. Are we talking about this change or something else? > > I changed both the front page a

Re: 3.2.4 release candidate

2022-10-11 Thread Boris Kolpackov
Cantor, Scott writes: > I've posted a signed RC here: > https://dist.apache.org/repos/dist/dev/xerces/c/3/sources/ Thanks for your work on this! The corresponding git branch is xerces-3.2 and the commit is bfe32a149e8c ("Adjust release info."), correct? Wouldn't be bad to tag the RC to make sur

Re: Prepping a 3.2.4 release

2022-10-10 Thread Boris Kolpackov
Cantor, Scott writes: > On 10/10/22, 10:14 AM, "Boris Kolpackov" wrote: > > > What would be the other options for XML Schema validation usable > > from C++? > > Libxml2? > > Says it supports XML Schema 1.0 (which is all Xerces ever did AFAIK). Last ti

Re: Prepping a 3.2.4 release

2022-10-10 Thread Boris Kolpackov
Roger Leigh writes: > If Xerces-C++ was to be retired, projects will need to consider other > options, be that other libraries, or other languages. What would be the other options for XML Schema validation usable from C++? It's easy to say people should do this and that in the abstract. Given a

Re: Prepping a 3.2.4 release

2022-10-06 Thread Boris Kolpackov
Cantor, Scott writes: > Were it my decision, I would post a warning that the code is being > sunsetted and anybody on it should be getting off it. Getting off to what? Xerces-C++, with all its warts, is the only working, open source XML Schema implementation for C/C++. And I know for a fact that

Re: Xerces-C++ 3.2.4

2021-08-24 Thread Boris Kolpackov
Roger Leigh writes: > Would it be possible to add 3.2.4 as a new unreleased version in Jira? Done. > As you have probably seen, Even Rouault has made several changes to > fix bugs on the 3.2 branch, and it would be useful to release them. Sounds good. Is Even finished with everything they wan

Re: https support

2020-08-17 Thread Boris Kolpackov
Michael Behrisch writes: > I saw that there are libcurl implementations for Windows as well: > https://stackoverflow.com/questions/53861300/how-do-you-properly-install-libcurl-for-use-in-visual-studio-2017 > but the docs say libcurl does not work with Windows. Did nobody try yet > or are there an

Xerces-C++ 3.2.3 available as build2 package

2020-07-23 Thread Boris Kolpackov
We've added build2[1] build support for Xerces-C++ (in a separate repository[2]) and it's now available as a package on cppget.org: https://cppget.org/libxerces-c/ For now it's a uniform libcurl/ICU-based configuration on all platforms/compilers. We are currently building and testing it for 37 bu

Re: Proposal for future development of Xerces-C 4.0.0

2020-06-22 Thread Boris Kolpackov
Roger Leigh writes: > I'm not entirely sure how to class code written using L"". It's not really > portable, being Windows-only as you say (Windows being the only platform > where wchar_t is 16-bit and usable as XMLCh). And it's not strictly portable > even to different builds of Xerces-C, given

Re: Proposal for future development of Xerces-C 4.0.0

2020-06-19 Thread Boris Kolpackov
Hi Roger, Thanks for getting the ball rolling. See my comments below. Roger Leigh writes: > One of the issues I encountered was difficulty in building on modern > platforms, Windows in particular, which was the impetus for developing > the CMake build now incorporated officially in the Xerces-C

[jira] [Commented] (XERCESC-2204) Remove message loader

2020-06-16 Thread Boris Kolpackov (Jira)
[ https://issues.apache.org/jira/browse/XERCESC-2204?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17136595#comment-17136595 ] Boris Kolpackov commented on XERCESC-2204: -- I think it's pretty cl

[jira] [Commented] (XERCESC-2204) Remove message loader

2020-06-11 Thread Boris Kolpackov (Jira)
[ https://issues.apache.org/jira/browse/XERCESC-2204?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17133959#comment-17133959 ] Boris Kolpackov commented on XERCESC-2204: -- I am not sure about this. W

Re: Xerces V3.2.3 release candidate - call for vote

2020-04-08 Thread Boris Kolpackov
+1 Thanks! - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org For additional commands, e-mail: c-dev-h...@xerces.apache.org

Re: Xerces-C 3.2.3 timeline

2020-04-02 Thread Boris Kolpackov
Cantor, Scott writes: > I have external constraints such that if I'm going to do this patch release > it needs to be done next week, so any remaining work would need to be in > this week so I can do a build for vote early next. > > There is nothing I would expect is getting done that I think is

Re: Branching for 3.3 work?

2020-03-09 Thread Boris Kolpackov
Cantor, Scott writes: > On 3/6/20, 9:56 AM, "Boris Kolpackov" wrote: > > > I am not aware though from the names internal/ and dom/impl/ should be > > off-limits while everything else is probably fair game. > > I'm happy if we decide we just say that si

Re: Branching for 3.3 work?

2020-03-06 Thread Boris Kolpackov
Cantor, Scott writes: > I may have mispoke in that issue too: is there any formal definition of > which include directories are "API" and which should be off limits for > library clients? I am not aware though from the names internal/ and dom/impl/ should be off-limits while everything else is p

Re: Branching for 3.3 work?

2020-03-06 Thread Boris Kolpackov
Cantor, Scott writes: > Normally I wouldn't be keen to branch now if the next patch was to 3.2, > but because the changes are so minimal now, maintaining patches to two > branches would not be very much work. Ok, makes sense, thanks. -

Re: Branching for 3.3 work?

2020-03-05 Thread Boris Kolpackov
Cantor, Scott writes: > There's an open bug or two that probably would need to lead to an API bump > from 3.2 and the suggestion was made that even if we may not have a ton of > active effort, there may be value in allowing such work to occur if the > cycles to do it happen to be available. > > I

[ANN] Xerces-C++ has switched to Git

2020-01-14 Thread Boris Kolpackov
The Xerces-C++ project has switched to Git and I have asked Infra to mark everything under https://svn.apache.org/repos/asf/xerces/c/ as read-only. As discussed, the two new repositories are: xerces-c.git xerces-c-admin.git You can use either the Apache GitBox: https://gitbox.apache.org/

Re: Git migration [PLEASE READ]

2020-01-13 Thread Boris Kolpackov
Roger Leigh writes: > I've opened an initial pull request on GitHub here: > https://github.com/apache/xerces-c/pull/1 > > I didn't see Scott on GitHub, so I added Boris as a reviewer. This change is > basically to ensure that we have sanity in line ending conventions when > making changes with c

Re: Git migration

2020-01-10 Thread Boris Kolpackov
Cantor, Scott writes: > It's just https://gitbox.apache.org/repos/asf/reponame.git Got it, thanks. Are you all setup for write access to xerces-c.git? Can you maybe push and delete a test branch just to confirm? - To unsubscri

Re: Git migration

2020-01-10 Thread Boris Kolpackov
I've created the xerces-c.git repository and pushed the conversion result with the latest changes: https://gitbox.apache.org/repos/asf?p=xerces-c.git https://github.com/apache/xerces-c.git If everyone is happy, I can ask Infra to mark the SVN repository read-only (until that happens, please trea

Re: Git migration

2019-12-30 Thread Boris Kolpackov
Vincent Ulitzsch writes: > Bhargava and I sent a PR your way using this new git: > https://github.com/boris-kolpackov/xerces-c/pull/1 > However, it seems to me that the new git might not be the right place > for this PR. Correct, this is a temporary repository that I published for

Re: Git migration

2019-12-23 Thread Boris Kolpackov
Cantor, Scott writes: > On 12/20/19, 4:21 AM, "Boris Kolpackov" wrote: > > > Wouldn't checking out corresponding tags from Git and SVN and then > > running diff on the directories (ignoring .git/ and .svn/) be > > sufficient? > > Yes, either way.

Re: Git migration

2019-12-20 Thread Boris Kolpackov
Cantor, Scott writes: > I don't know enough to say what the cherry-pick warnings mean, [...] I did a bit of googling on this one and it appears to be harmless. > For us it took weeks of time over months to get it right, but we don't > have that kind of time. Right. I did spend a couple of day

Re: Git migration

2019-12-17 Thread Boris Kolpackov
Cantor, Scott writes: > On 12/16/19, 5:08 AM, "Boris Kolpackov" wrote: > > > Please let me know if you see any issues. And if everything looks > > good, I would like to proceed with pushing this to its "official" > > place and then requesti

Git migration

2019-12-16 Thread Boris Kolpackov
I've finally got around to converting the Xerces-C++ SVN repository to Git and the result is available for inspection here: https://github.com/boris-kolpackov/xerces-c The conversion log (specifically, the git-svn fetch log) is available here: https://codesynthesis.com/~boris/tmp/xerces-sv

No Xerces-C++ packages in RHEL/CentOS 8

2019-10-17 Thread Boris Kolpackov
I see[1] that Xerces-C++ packages are no longer part of RHEL/CentOS 8. Anyone knows the back story and if there are any alternative sources, like Fedora's EPEL (web search didn't yield anything promising)? Actually, scratch that, there is EPEL 8[2] and Xerces-C++ 3.2.2 is there[3]. [1] https://

Re: Migration to Git

2019-07-16 Thread Boris Kolpackov
Ok, I've got the ball rolling on this, sorry for the delay: https://issues.apache.org/jira/browse/INFRA-18755 - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org For additional commands, e-mail: c-dev-h...@xerces.apache

Re: Migration to Git

2019-05-15 Thread Boris Kolpackov
Cantor, Scott writes: > On 5/13/19, 9:23 AM, "Boris Kolpackov" wrote: > > > I also think we can drop any mentinoning of 2-series during this > > conversion. There are, however, other bits of the documentation > > (like Doxygen-generated). Here is step #15 th

Re: Migration to Git

2019-05-13 Thread Boris Kolpackov
Roger Leigh writes: > Mentioned briefly a few months back, but we could take the Git migration as > an opportunity to convert the old StyleBook XML to Markdown and move the > docs to github pages, generated directly from git automatically. I assume the "github pages" part is acceptable to Apache

Re: Migration to Git

2019-05-10 Thread Boris Kolpackov
Cantor, Scott writes: > On 4/29/19, 10:34 AM, "Boris Kolpackov" wrote: > > > The latter two are direct copies from the web/ and admin/ SVN directories. > > I believe that the web/ repository is actually directly published as > the web site, so there probably is

Re: Migration to Git

2019-05-10 Thread Boris Kolpackov
Roger Leigh writes: > > xerces-cxx.git > > xerces-cxx-web.git > > xerces-cxx-admin.git > > Do we need "-cxx" as a suffix here, or would "-c" be better? Yes, good point. Our source distributions are called xerces-c, binary packages seem to also be called like that (e.g., Debian's, libxerces-c).

Migration to Git

2019-04-29 Thread Boris Kolpackov
The vote to migrate the Xerces-C++ repository from SVN to Git has passed and I would like to discuss the next step. According to https://gitbox.apache.org, this should be as easy as opening and issue with the Apache Infra. Before doing this, however, it would be good to agree on the desired reposi

Re: Call for vote on migrating Xerces-C++ repositories to Git

2019-04-29 Thread Boris Kolpackov
Boris Kolpackov writes: > I would like to call for a vote to migrate Xerces-C++ SVN repositories > to Git, specifically, to the Apache Gitbox service: > > https://gitbox.apache.org/ The vote passes with 7 in favor and 0 against. Shortly I am going to send an email to c-dev with

Call for vote on migrating Xerces-C++ repositories to Git

2019-04-22 Thread Boris Kolpackov
I would like to call for a vote to migrate Xerces-C++ SVN repositories to Git, specifically, to the Apache Gitbox service: https://gitbox.apache.org/ This is my +1. - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org F

Re: Git source repository

2019-04-20 Thread Boris Kolpackov
Roger Leigh writes: > With the reboot of the Xalan PMC, the Xalan SVN repositories are currently > being converted to Gitbox. For those unaware, Gitbox is the Apache's Git service with writable mirroring on GitHub: https://gitbox.apache.org/ > Would it please be possible to do this for the Xe

Re: Support for build2, migration to git, etc

2019-03-25 Thread Boris Kolpackov
Cantor, Scott writes: > Practically speaking, the security process and the web site have been the > main sources of friction for me, and I think the latter is definitely a > choice. We could simply accept that it's not viable and shut it down in > favor of a simple wiki page with the download lin

Re: Support for build2, migration to git, etc

2019-03-25 Thread Boris Kolpackov
Roger Leigh writes: > I'm doing all my work in git using the git mirror anyway,, so I would be > more than happy to use git for the main repository. It's much more > efficient. Great! > Regarding build2, are there sufficient benefits over the existing autotools > and cmake build to make it wo

Re: Support for build2, migration to git, etc

2019-03-24 Thread Boris Kolpackov
Cantor, Scott writes: > No concerns with git, if that's something Apache allows as the > "official" repo now [...] I would sure hope so. > My only concern with the build system is that I need the autoconf > support so as long as that's not going anywhere, anything else is > up to the people of

Support for build2, migration to git, etc

2019-03-23 Thread Boris Kolpackov
I would like to add support for the build2[1] build system, similar to how it was done recently for CMake. One of the benefits will be continuous building and testing[2] on a wide range of platforms and compilers[3] (currently 33). I am committing to maintaining this support going forward. Before

Re: Xerces-C 3.2.1 - call for vote

2018-02-26 Thread Boris Kolpackov
+1 & thanks for all the hard work! Boris - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org For additional commands, e-mail: c-dev-h...@xerces.apache.org

Re: Can we assume C99?

2017-07-07 Thread Boris Kolpackov
Cantor, Scott writes: > I don't know what the baseline has been for the code base, is C99 a > reasonable requirement? > > I need SIZE_MAX to fix some bounds checking errors, just need to know > if I need to waste time on an autoconf test for it. My experience has been that supporting a standard

Re: Integrating CMake support for xerces

2017-06-11 Thread Boris Kolpackov
Roger Leigh writes: > If we every wanted to drop the Autotools to only have one system to > maintain, this would provide compatibility with a traditional > configure/make/make install workflow. I'm not suggesting doing this at this > point in time, just wanted to mention the existence of this so

Re: Status of trunk / main-3.3 comparison

2017-05-02 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > If anybody who knows the DOM impl could weigh in on what the heck that > code in DOMCasts.hpp/cpp was doing and why, I'd welcome the perspective. Yeah, infamous Xerces-C++ brain-death ;-) Try to replace this (and if it works other similar) function with: temp

Re: Integrating CMake support for xerces

2017-04-25 Thread Boris Kolpackov
Hi All, Cantor, Scott writes: > So I'm inclined to do the very ugly work of figuring out what's > missing from the trunk and reviewing all the additional work > there that was done before the project went into moribundity, > and try and get a 3.2 out the door this summer. That would be great.

Re: Call for vote

2016-06-24 Thread Boris Kolpackov
+1, Thanks Scott! Unfortunately couldn't find time to test. Boris - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org For additional commands, e-mail: c-dev-h...@xerces.apache.org

Re: [VOTE] release of 3.1.3

2016-02-11 Thread Boris Kolpackov
+1 Thanks, Scott, you are the man! Boris - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org For additional commands, e-mail: c-dev-h...@xerces.apache.org

Re: Status of cleanup after release

2015-03-23 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > I have one last TODO, which is to rewrite the admin/release-procedure > file to reflect the actual process [...] Yes, that would definitely be very helpful. I haven't done it myself when I did the release which I regretted many, many times. Thanks again for yo

Re: [VOTE] release of 3.1.2

2015-03-18 Thread Boris Kolpackov
+1 Thanks, Scott! Boris - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org For additional commands, e-mail: c-dev-h...@xerces.apache.org

Re: Next release (was RE: [jira] [Resolved] (XERCESC-2043))

2015-02-17 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > I don't either, but to be blunt, the branch shouldn't be in the state it's > in if you think it needs that much testing, because if a security issue > pops up, you don't have the luxury of taking a lot of time. > > I completely understand your point about usi

Re: Next release (was RE: [jira] [Resolved] (XERCESC-2043))

2015-02-17 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > It's been years, Boris. I think you're being very aggressive here with > somebody trying to help and able to do so only within the limits of his > own funding and project needs. That's how this stuff works. If you're > going to set requirements that I can't m

Re: Next release (was RE: [jira] [Resolved] (XERCESC-2043))

2015-02-17 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > I've reviewed all the resolved issues against the trunk, and backported > 15-20 or so to the branch. > > Once I have access I'll commit. Before you do this have someone review your back-ports to double check there are no ABI breakages. Boris ---

Re: Next release (was RE: [jira] [Resolved] (XERCESC-2043))

2015-02-17 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > I definitely don't have the cycles for a beta and it wouldn't fit my > timeline anway. Then you shouldn't be making the release. > I'm on VC10 for my builds, and I believe those are already there. What about other users of Xerces-C++? When we publish a new

Re: Next release (was RE: [jira] [Resolved] (XERCESC-2043))

2015-02-17 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > Correction, it's not an ABI change, the pool entry class isn't exported on > Windows... What about other platforms?! If this class is defined in a public header (i.e., a header that is installed) and the function is virtual, then this is an ABI change. Boris

Re: Next release (was RE: [jira] [Resolved] (XERCESC-2043))

2015-02-16 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > FWIW, I've done very little testing of trunk other than building it, > so I don't have a sense of how good a shape it's in or how much has > changed. Unless you are prepared to do a good amount of testing (I can help somewhat but you will have to take the lead,

[ANN] CodeSynthesis XSD 4.0.0 released, adds support for C++11

2014-07-22 Thread Boris Kolpackov
Hi, I am pleased to announce the release of CodeSynthesis XSD 4.0.0. XSD is an open source, cross-platform W3C XML Schema to C++ data binding compiler. Provided with a schema, it generates C++ classes that represent the given vocabulary as well as XML parsing and serialization code. You can then

Re: Issue with collapsing whitespace in a union during schema validation

2014-01-07 Thread Boris Kolpackov
hat you also file a bug report in Jira (and attach the test case) so that this doesn't get lost. We can then try to fix it for the next release. Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~boris/blog Compiler-based ORM system for C++ http://codesynthesis.com/

Re: Regarding Xercesc++ performance

2013-06-14 Thread Boris Kolpackov
] http://www.codesynthesis.com/products/xsd Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~boris/blog Compiler-based ORM system for C++ http://codesynthesis.com/products/odb Open-source XML data binding for C++ http://codesynthesis.com/products/xsd XML

Re: Xerces-C / Patch Release Request

2013-04-11 Thread Boris Kolpackov
Hi Scott, Cantor, Scott writes: > I'm happy to spend some time testing the build on my supported platforms > once it's ready to go. Yes, that would great. The more testing we can get done, the better. > I would suggest as a way of perhaps reducing time commitment than actually > producing bin

Re: Xerces-C / Patch Release Request

2013-04-10 Thread Boris Kolpackov
nd try to fix some new bugs that have been uncovered since the 3.1.0 release. Not sure if you would like to wait or if you want to press ahead. But your help would be greatly appreciated. Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~boris/blog Compiler-based ORM system

Re: [VOTE]: Set up admin group for Xerces Wiki to eliminate SPAM

2013-04-04 Thread Boris Kolpackov
Sounds good to me. +1. Boris - To unsubscribe, e-mail: c-dev-unsubscr...@xerces.apache.org For additional commands, e-mail: c-dev-h...@xerces.apache.org

Re: Xerces_C - Microsoft Upgrade

2013-02-15 Thread Boris Kolpackov
Hi, shath...@e-z.net writes: > FYI: Windows - Cygwin and MinGW > > These systems are deprecated. I don't think anyone deprecated MinGW. Everything should build fine with autotools and I see at least MinGW supported in the future. Boris -- Boris Kolpackov, Code Synthes

Re: Xerces Performance Acceleration Project: icXML

2013-01-27 Thread Boris Kolpackov
n results for icXML in two configurations, single- threaded and with 2 threads. Is there any documentation that describes these extra parameters/options/etc. In other words, how would I go about specifying the number of threads? [1] http://www.codesynthesis.com/products/xsd/ Boris --

Re: Xerces-C version identifiers in svn trunk

2012-12-20 Thread Boris Kolpackov
shath...@e-z.net writes: > 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. The trunk will eventually become 3.2.0. Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~bori

[jira] [Commented] (XERCESC-1971) Cannot build on Mac OS X 10.7

2011-08-14 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1971?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13084825#comment-13084825 ] Boris Kolpackov commented on XERCESC-1971: -- Nathaniel, Xerces-C++ 2.8.0 i

Re: Win32TransService.obj LNK2019 error

2011-03-05 Thread Boris Kolpackov
cesc_3_1::isAlias(struct HKEY__ * const,char * const,unsigned int)" > (?isAlias@xercesc_3_1@@YA_NQAUHKEY__@@QADI@Z) You are linking to a static version of Xerces-C++ library. All the unresolved symbols are Registry functions. You need to link your application to Advapi32.lib. Boris -- Boris

[jira] Commented: (XERCESC-1959) serializeGrammars does not work between 32 and 64 bit systems

2011-03-05 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1959?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13002969#comment-13002969 ] Boris Kolpackov commented on XERCESC-1959: -- Daniel, I agree the cur

Re: Error configuring Xerces 3.1.1

2010-12-16 Thread Boris Kolpackov
e performs various tests and some of them are expected to fail on some platforms. If you see no errors in STDERR and the script existed with 0, then everything went fine. Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~boris/blog Compiler-based ORM system for C++

Re: Static Xerces 3.0.0 lib for HPUX pa-risc architecture

2010-12-13 Thread Boris Kolpackov
is no "out of box" binaries is there a way to build it for > pa-risc 32 bit. Follow the build instructions for UNIX and add --disable-shared to the configure command line. Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~boris/blog Compiler-bas

[jira] Updated: (XERCESC-1951) Missing Libs.private in the xerces-c pkg-config file

2010-11-29 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1951?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov updated XERCESC-1951: - Fix Version/s: (was: 3.1.1) Thanks for the patch. > Missing Libs.private in

[jira] Updated: (XERCESC-1950) Build-in UCS4 transcoder does not respect endianess

2010-11-22 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1950?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov updated XERCESC-1950: - Attachment: test.xml > Build-in UCS4 transcoder does not respect endian

[jira] Created: (XERCESC-1950) Build-in UCS4 transcoder does not respect endianess

2010-11-22 Thread Boris Kolpackov (JIRA)
: Utilities Affects Versions: 3.1.1 Environment: any Reporter: Boris Kolpackov Fix For: 3.1.2, 3.2.0 Attachments: test.xml Built-in UCS4 transcoder does not respect endianess of the requested encoding. Try this on the attached test file: DOMPrint -wenc=UCS

[jira] Updated: (XERCESC-1947) XMLUTF8Transcoder::transcodeTo fails with an exception when transcoding single characters that require 3 or more bytes as UTF8.

2010-10-14 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1947?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov updated XERCESC-1947: - Fix Version/s: 3.2.0 3.1.2 Ben, the reason I am interested in

[jira] Commented: (XERCESC-1947) XMLUTF8Transcoder::transcodeTo fails with an exception when transcoding single characters that require 3 or more bytes as UTF8.

2010-10-12 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12920195#action_12920195 ] Boris Kolpackov commented on XERCESC-1947: -- Ben, is this only a proble

[jira] Updated: (XERCESC-1936) ICUTransService and IconvGNUransService CAN NOT deal with huge file.

2010-09-07 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1936?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov updated XERCESC-1936: - Fix Version/s: 3.1.2 3.2.0 4.0.0 Yes, I just

[jira] Commented: (XERCESC-1451) Valgrind reports mismatched new/delete[] usage

2010-08-24 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1451?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12901970#action_12901970 ] Boris Kolpackov commented on XERCESC-1451: -- Daniel, Have you tried the la

[jira] Updated: (XERCESC-1940) Problem in prefix parsing while creating Documnet, Element, Attributes on all platforms : Issue is in poolString creation

2010-08-23 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1940?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov updated XERCESC-1940: - Fix Version/s: 3.1.2 3.2.0 Thanks for the report, Anil. I am

[jira] Updated: (XERCESC-1936) ICUTransService and IconvGNUransService CAN NOT deal with huge file.

2010-08-03 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1936?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov updated XERCESC-1936: - Hi, Can you attach the sample files to the bug report? The content that you have pasted

Re: Validate the data contained in a DOM tree

2010-07-30 Thread Boris Kolpackov
n validation error). For a more detailed discussion of this topic, see the following post: http://www.codesynthesis.com/pipermail/xsd-users/2008-January/001443.html Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~boris/blog Open-source XML data binding fo

Re: Problem using static compile of xerces

2010-07-21 Thread Boris Kolpackov
e to a newer version of VC++. The project files that are supported all provide static library. Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~boris/blog Open-source XML data binding for C++ http://codesynthesis.com/products/xsd XML data binding for embedded systems

[jira] Created: (XERCESC-1934) SAX2 reports the xmlns attribute without a namespace

2010-07-02 Thread Boris Kolpackov (JIRA)
: SAX/SAX2 Affects Versions: 3.1.1 Reporter: Boris Kolpackov Fix For: 3.1.2, 3.2.0, 4.0.0 When you have something like xmlns:foo="foo", SAX2 reports the 'xmlns:foo' attribute as belonging to the XML namespace. However, if the namespace is declared

Re: Development plans for XML Schema 1.1

2010-06-27 Thread Boris Kolpackov
lidation errors are detected only after the SAX events have been fired). Also, the XML Schema 1.1 spec is not yet a recommendation. I am not very familiar with the W3 process, but isn't it still a moving target? Boris -- Boris Kolpackov, Code Synthesishttp://codesynthesis.com/~boris/b

[jira] Created: (XERCESC-1931) Add support for Windows-style UNC URIs

2010-06-01 Thread Boris Kolpackov (JIRA)
Versions: 3.1.1 Reporter: Boris Kolpackov Fix For: 3.1.2, 3.2.0 There are three ways to represent Windows network share paths in URI that are in use today: file://host/path file:host/path file:/host/path Xerces-C++ only supports the later two. The first encoding

[jira] Closed: (XERCESC-1930) CRLF is replaced by space

2010-05-31 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1930?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov closed XERCESC-1930. Resolution: Invalid > CRLF is replaced by sp

  1   2   3   4   5   6   7   8   9   10   >