User Maggie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T22:03:56Zhttp://stackoverflow.com/feeds/user/6294http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1586791/looking-for-working-hibernate-examples/1586813#15868132Answer by Maggie for Looking for *working* Hibernate examplesMaggie2009-10-19T03:14:15Z2009-10-19T03:22:43Z<p><a href="https://www.hibernate.org/400.html" rel="nofollow">https://www.hibernate.org/400.html</a> is the source code page for Java Persistence/ Hibernate in Action books. It has a 'Hello, World' example. There is also a sample chapter that walks you through the example.</p>
http://stackoverflow.com/questions/1582704/need-help-with-three-visual-studio-errors-c-errors-occuring-when-trying-to-b/1582725#15827251Answer by Maggie for Need help with three visual studio errors - C++ errors occuring when trying to build solutionMaggie2009-10-17T17:26:50Z2009-10-17T17:26:50Z<p>You have void before your call which is the signature of the function - you are not actually calling it which is why the compiler is complaining.</p>
http://stackoverflow.com/questions/1561742/how-to-send-email-from-windows-form-app-with-log4net0How to send email from windows form app with log4netMaggie2009-10-13T17:30:29Z2009-10-13T17:49:22Z
<p>I have set up log4net in my C# 3.5 windows form application. I am looking for how to send email from a client pc with log4net. The SMTPAppender requires knowledge of SMTPHost and the examples I've seen are for web applications.</p>
<p>Is there a way to send email from an application that will work on any client's computer that may or may not be in a domain or network. I guess I would also need to be able to check if there is a connection available.</p>
<p>I've searched for an answer but I don't have much experience programming with email or the web to know what to look for. Any ideas to steer me in the right direction?</p>
http://stackoverflow.com/questions/1512335/c-cross-reference-generation/1512399#15123992Answer by Maggie for C# cross reference generation?Maggie2009-10-03T00:26:05Z2009-10-03T00:26:05Z<p>ReSharper and CodeRush/RefactorPro integrate with visual studio and provide better visibility for finding usages and references. They each have a two-panel display with a tree structure of references on the top with code on the bottom.</p>
<p>The ReSharper version has tabs so you can easily switch between several different references - visual studio does not give you a way to have more than one open.</p>
<p>The CodeRush one has a handy feature that it can 'live sync' references as you work so whenever you click on a symbol, class, method, etc you can see all of the references in the window. You can turn this off and have it update 'on command' where it only tracks the references you choose.</p>
<p>Each of these tools have free trial versions you can try.</p>
http://stackoverflow.com/questions/1450525/open-visual-studio-project-as-readonly/1512363#15123630Answer by Maggie for Open Visual Studio project as readonlyMaggie2009-10-03T00:06:44Z2009-10-03T00:06:44Z<p>There are several options depending on how involved you are with the project and if you will be changing it. </p>
<p>For a project I am primarily using for the libraries I do not put the open-source projects into my solution - just the dll's which I keep in my source control repository in a libraries folder.</p>
<p>When you are debugging you can step into the code of the library in VS2008 without actually opening the 2005 project file; so no update is necessary.</p>
<p>When I do need to work on the code for the opensource library I open it in it's own solution. If it needs to update to vs2008 I let it - it is not a big deal as only the project files get changed - not the source code. Since it is in source control you can always revert the project files to the originals or rename your new copies and keep 2 csproj files side by side. </p>
<p>I only do a svn-update with tortoise on the open-source projects and do not get conflicts. Svn will merge any changes into my copy. If I have changes that are needed for the open-source project I submit a patch and do not commit from my copy.</p>
<p>If this is a project that you are an active developer and the other team members need to stay in VS2005 then you could load VS2005 side-by side without issue. I have had 4-5 copies of VS installed on the same machine - the only downside is disk space.</p>
<p>It sounds like you may need to do a fresh checkout of the project into a new folder if you have too many conflicts. Then you can use a good diff tool to resolve the conflicts manually - I use WinMerge.</p>
http://stackoverflow.com/questions/1418769/fluent-nhibernate-automapping-supposed-to-save-time-but-this-has-me-pulling-my-h/1418843#14188432Answer by Maggie for Fluent NHibernate AutoMapping, supposed to save time but this has me pulling my hair outMaggie2009-09-13T21:11:02Z2009-09-13T21:11:02Z<p>Are you using the latest version of FNH and NHibernate 2.1 RTM?</p>
<p>I am not so sure about your Overrides of the Id code. Have you tried without this and having an Id in each table?</p>
<p>Here is how I do my mappings with Automap. I tell it what Assembly to pull from, what Namespace in particular and then I give it the BaseTypes that my entities derive from.
I use the ConventionDiscovery to change some of the foreign key naming conventions and set up cascading and inverse properties, etc.</p>
<p><pre><code>PersistenceModel = AutoPersistenceModel
.MapEntitiesFromAssemblyOf<>()
.Where(type => type.Namespace != null && type.Namespace.Contains("Model"))
.WithSetup(s =>
{
s.IsBaseType = type => type == typeof (DateTimeBase)
|| type == typeof (SimpleBase);
})
.ConventionDiscovery.AddFromAssemblyOf();</code></pre>
Then I add the persistence model to the automappings. I use the ExportTo method to get a copy of the generated xml files - looking at the xml helps to diagnose some problems.</p>
<p><pre><code>.Mappings(m => m.AutoMappings
.Add(persistenceModel)
.ExportTo(@"../../ExportAutoMaps"));</code></pre></p>
<p>AutoMapping has worked great for me - though it did take time to learn and experiment.<br>
I am using jet database and I have to explicitly create my database file for NHibernate to run the schema on. I am unfamiliar with how sqlLite works.</p>
http://stackoverflow.com/questions/1418277/controller-static-state-class-in-winforms-application-where-to-put/1418772#14187720Answer by Maggie for Controller/Static State Class in WinForms Application - Where to put?Maggie2009-09-13T20:32:12Z2009-09-13T20:32:12Z<p>I don't know if this is a better way, but I am having Structuremap create my controller and database instance. <br>
The main form has no real code in it - it just loads the first set of controls and then starts the controller. The user controls on the form use StructureMap to access the controller.<br>
My project is regular WinForms and not WPF and is my first time using the MVC pattern with WinForms.</p>
http://stackoverflow.com/questions/1034707/nhibernate-session-management-and-lazy-loading/1044206#10442061Answer by Maggie for NHibernate session management and lazy loadingMaggie2009-06-25T14:17:24Z2009-06-25T14:17:24Z<p>I am working on a similar application. I am using one session that I keep open.</p>
<p>Whenever I write to the database I use begin/commit transaction which does not close the underlying session. the database connection is only open by NHibernate while the transaction is in progress.</p>
<p>Is there a reason you need to close the session while the user is actively using the form?</p>
<p>Can you provide more details on what you are using to manage your session, repository pattern, ... etc?</p>
http://stackoverflow.com/questions/817950/simple-way-to-create-an-erd-for-a-database-design-review1Simple way to create an ERD for a database design review.Maggie2009-05-03T20:41:12Z2009-06-24T14:55:55Z
<p>I am working on a new application that uses a jet (MS Access) database. I have built the database using FluentNHibernate's AutoMapping feature from my C# objects.</p>
<p>I need to present this database for an on-line WebEx design review on Tuesday and am looking for a tool to create ERD's for my database that I can group onto slides.</p>
<p>The diagramming in MS Access is poor-to-unusable.</p>
<p>I have: VS2008 Pro, MS Access 2007, Visio 2007, Visio for Enterprise Architects, etc...
My C# Code
Schema exported with NHibernate Hbm2Ddl
hbm.xml mapping files created by FluentNHibernate
.accdb file containing the database</p>
<p>I need: quick, free and easy way to create clear diagrams.</p>
<p>Since I have everything for Fluent NH and NHibernate, I could use their drivers/dialects to create a schema for any supported database to use in generating the diagrams.</p>
<p>Any suggestions to help?</p>
http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/983148#9831485Answer by Maggie for What's Your Biggest Visual Studio 2008 Annoyance?Maggie2009-06-11T19:31:52Z2009-06-11T19:31:52Z<p>The biggest annoyance is when you open a project that was built in another version of VS it has to convert. It should be able to open any project in read-only mode for browsing. </p>
<p>I also don't like how it implies you can never go back - you can if you edit the proj files. This should all be more transparent and simpler.</p>
<p>Second annoyance is when it tells you it is going to check files out of source control when opening a solution especially since I do not use source control through the IDE and often I'm looking at open source software for read-only.</p>
http://stackoverflow.com/questions/962007/what-one-feature-would-you-cut-from-your-favorite-language/978744#9787441Answer by Maggie for What one feature would you cut from your favorite language?Maggie2009-06-11T00:16:52Z2009-06-11T00:16:52Z<p>Not a true language feature but, I would get rid of /* */ comments in C++ and C# as code in them shows up in searches without an indication that it is not used.</p>
<p>I would also get rid of most conditional compilations within a file in C++ - many times the code can be structured better to get the same effect.</p>
http://stackoverflow.com/questions/978469/log-combination-of-keyboard/978524#9785240Answer by Maggie for Log combination of keyboard Maggie2009-06-10T22:48:48Z2009-06-10T22:48:48Z<p>You just need to check the <a href="http://msdn.microsoft.com/en-us/library/aa984219%28VS.71%29.aspx" rel="nofollow">Control.ModifierKeys</a> to see if the control and/or shift keys were used.</p>
http://stackoverflow.com/questions/958839/msvc-express-publish-c-project-to-include-a-file-e-g-mdb-xml/958844#9588442Answer by Maggie for (msvc# express) publish c# project to include a file (e.g. .MDB, .XML)Maggie2009-06-06T02:16:15Z2009-06-06T02:16:15Z<p><a href="http://wix.sourceforge.net/" rel="nofollow">http://wix.sourceforge.net/</a></p>
<p>WiX - Windows Installer XML is an OS tool you can use to build an installer you can tell it where to put each file and create folders, etc.</p>
http://stackoverflow.com/questions/958190/filling-a-form-with-c/958272#9582720Answer by Maggie for Filling a form with C#Maggie2009-06-05T21:42:18Z2009-06-05T21:42:18Z<p>I've used the SDK from Mi-Co :</p>
<p><a href="http://mi-corporation.com/page.php?pageid=13" rel="nofollow">http://mi-corporation.com/page.php?pageid=13</a></p>
<p>It's awesome software that lets you build form software with .Net and is ink enabled for the tablet pc. I would look into buying something like this if you need a full featured form package as it would cost more to develop from scratch. It allows you to save the forms on a server and extract the data from the form into a database in addition to rendering it to tif or pdf. The SDK has hooks everywhere for customization.</p>
<p>If you just need a simple form than it may be too much.</p>
http://stackoverflow.com/questions/957038/break-in-a-case-with-return-and-for-default/957080#9570800Answer by Maggie for break in a case with return.. and for defaultMaggie2009-06-05T17:21:38Z2009-06-05T17:21:38Z<p>I would put the break in to show that you do not intend to fall through to next case.</p>
http://stackoverflow.com/questions/953437/learning-sharepoint/953593#9535931Answer by Maggie for Learning SharepointMaggie2009-06-04T23:17:46Z2009-06-04T23:17:46Z<p><a href="http://www.microsoft.com/click/SharePointDeveloper/html/Default.html" rel="nofollow">http://www.microsoft.com/click/SharePointDeveloper/html/Default.html</a></p>
<p>This site has the information I started with when learning SharePoint: webcasts from TechEd by Andrew Connell and Rob Bogue and the hands-on-labs that go along with them. </p>
<p>There are very many SharePoint MVPs that have blogs that are easy to find and many of them hang around on twitter so it's easy to get help.</p>
<p><a href="http://andrewconnell.com/blog/archive/2008/11/25/Free-MSDN-Webcasts-amp-HOLs-for-MOSS-2007-WCM-Development.aspx" rel="nofollow">http://andrewconnell.com/blog/archive/2008/11/25/Free-MSDN-Webcasts-amp-HOLs-for-MOSS-2007-WCM-Development.aspx</a> has info on some newer webcasts</p>
<p><a href="http://www.sharepointpodshow.com/" rel="nofollow">http://www.sharepointpodshow.com/</a> and <a href="http://www.methings.com/podcast/70342/MOSS-Gone-Wild.php" rel="nofollow">http://www.methings.com/podcast/70342/MOSS-Gone-Wild.php</a>
are 2 excellent SharePoint Podcasts.</p>
http://stackoverflow.com/questions/950373/c-project-structure-header-per-module-vs-one-big-header/950474#9504740Answer by Maggie for C project structure - header-per-module vs. one big headerMaggie2009-06-04T13:08:24Z2009-06-04T13:08:24Z<p>In C++ you would definitely want one header file per class and use pre-compiled headers as mentioned above.</p>
<p>One header file for an entire project is unworkable unless the project is extremely small - like a school assignment</p>
http://stackoverflow.com/questions/942657/what-are-some-recommended-resources-and-tutorials-for-learning-the-vtk-library-to/942773#9427732Answer by Maggie for What are some recommended resources and tutorials for learning the VTK library toolkit?Maggie2009-06-03T02:13:47Z2009-06-03T02:13:47Z<p>I used vtk on my last project. I used it with C++ though, not python.</p>
<p>I remember the forums, wiki and mailing lists had a lots of useful information and helpful people:</p>
<p><a href="http://www.vtk.org/VTK/project/getinvolved.html" rel="nofollow">http://www.vtk.org/VTK/project/getinvolved.html</a></p>
<p><a href="http://www.vtk.org/VTK/resources/applications.html" rel="nofollow">http://www.vtk.org/VTK/resources/applications.html</a> </p>
http://stackoverflow.com/questions/930257/need-help-adding-scroll-bar-to-edit-box/930974#9309740Answer by Maggie for Need help adding scroll bar to edit boxMaggie2009-05-31T00:51:22Z2009-05-31T00:51:22Z<p><a href="http://www.functionx.com/visualc/controls/scrollbar.htm" rel="nofollow">http://www.functionx.com/visualc/controls/scrollbar.htm</a></p>
<p>has code you can use to control the scroll bar.</p>
http://stackoverflow.com/questions/930811/advice-on-building-a-fast-distributed-database/930925#9309252Answer by Maggie for Advice on building a fast, distributed databaseMaggie2009-05-31T00:18:42Z2009-05-31T00:18:42Z<p>I'd suggest you listen to this podcast for some excellent information on distributed databases.</p>
<p><a href="http://se-radio.net/podcast/2008-09/episode-109-ebay039s-architecture-principles-randy-shoup" rel="nofollow">http://se-radio.net/podcast/2008-09/episode-109-ebay039s-architecture-principles-randy-shoup</a></p>
http://stackoverflow.com/questions/930863/how-to-build-custom-assertions-in-c-vs/930922#9309220Answer by Maggie for How to build custom assertions in C#/VS ? Maggie2009-05-31T00:14:54Z2009-05-31T00:14:54Z<p>From these posts it looks like MbUnit already supports this with AreElementsEqualIgnoringOrder. </p>
<p><a href="http://japikse.blogspot.com/2008/12/my-favorite-mbunit-assertions.html" rel="nofollow">http://japikse.blogspot.com/2008/12/my-favorite-mbunit-assertions.html</a></p>
<p><a href="http://blog.bits-in-motion.com/2008/10/announcing-gallio-and-mbunit-v304.html" rel="nofollow">http://blog.bits-in-motion.com/2008/10/announcing-gallio-and-mbunit-v304.html</a></p>
http://stackoverflow.com/questions/834855/seeking-good-examples-of-find-and-replace-user-interfaces-in-text-editors-and-ide/835014#8350143Answer by Maggie for Seeking good examples of Find and Replace user interfaces in text editors and IDEsMaggie2009-05-07T14:34:37Z2009-05-07T14:34:37Z<p>The best one I've used is the utility Flexible Renamer. It is simple to use, supports regular expressions and previews exactly what it will change before you commit.</p>
<p>Another one that works well is Ultra Edit. I like that you can look in all open files or all in a path, mask out filenames to search and use regular expressions on find string and replace string. Pressing the help button in the dialog box brings you right to the page with the regex syntax.</p>
<p>I often use UltraEdit to make changes on a .Net project as it's simpler to use and more reliable than VS. I hate using find/replace in Visual Studio
.
I also like that you can have the searches directed to an edit window where it appends each new search so you can see all previous ones.</p>
<p><p> <a href="http://flexible-renamer.en.softonic.com/" rel="nofollow">http://flexible-renamer.en.softonic.com/</a></p>
<a href="http://www.ultraedit.com/" rel="nofollow">http://www.ultraedit.com/</a></p>
http://stackoverflow.com/questions/817769/how-to-log-stuff-in-console-in-visual-studio-c/817814#8178141Answer by Maggie for How to log stuff in console in Visual Studio C++ Maggie2009-05-03T19:37:56Z2009-05-03T19:37:56Z<p>Along with conditional breakpoints you can also have the breakpoint write the vector values to the console and not stop.</p>
<p>Right click on your breakpoint and select "When Hit" click "print a message" and then add your values to the message in curly braces. Use the "Hit Count" to have the breakpoint execute after so many cycles. The "Condition" option is also useful for setting the breakpoint dependent on a certain value in your variables.</p>
http://stackoverflow.com/questions/817439/which-algoritm-to-use-with-many-to-many-relation-in-nhibernate/817787#8177870Answer by Maggie for Which algoritm to use with many-to-many relation in NHibernateMaggie2009-05-03T19:25:14Z2009-05-03T19:25:14Z<p>If you want the new tag to be in the database when you check it each time you need to commit the transaction after you save to put it there.</p>
<p>Another approach would be to read the tags into a collection before you process the photos.
Then like you said you would search local and add new tags as needed. When you are done with the folder you can commit the session.</p>
<p>You should post your mappings as i may not have interpreted your question correctly.</p>
http://stackoverflow.com/questions/817359/nhibernate-schemaexport-does-not-create-tables-when-script-is-false/817740#8177407Answer by Maggie for NHibernate SchemaExport does not create tables when "script" is falseMaggie2009-05-03T19:03:27Z2009-05-03T19:03:27Z<p>The SchemaExport is part of the Hbm2Ddl utility which is really separate from NHibernate functionality. It does not use "show_sql" which is used while NHibernate is running only.</p>
<p>To get a copy of the schema you create you use .SetOutputFile(filename)</p>
<p>This is the method I use when I wish to create a new database.
I get a formatted schema in MyDDL.sql file and the database is built from the schema:</p>
<pre><code> private void BuildSchema(Configuration config)
{
new SchemaExport(config)
.SetOutputFile(_fileName + "MyDDL.sql")
.Execute(true /*script*/, true /*export to db*/,
false /*just drop*/, true /*format schema*/);
}
</code></pre>
<p>SchemaExport.Create is just a shortcut to Schema.Execute with the just drop false and format true.</p>
<pre><code>public void Create(bool script, bool export)
{
Execute(script, export, false, true);
}
</code></pre>
http://stackoverflow.com/questions/800249/nhibernate-and-multiple-database-backends-architecture-question/802850#8028501Answer by Maggie for NHibernate and Multiple Database backends - Architecture questionMaggie2009-04-29T15:17:38Z2009-04-29T15:17:38Z<p>The data types NHibernate uses depends on the Dialect used in your configuration file. When it processes the xml it looks up the proper data type dependent on this dialect for each field. You would use a different dialect for each database so can use the same hbm.xml for the whole project.</p>
http://stackoverflow.com/questions/791990/based-on-your-experience-how-many-of-you-would-recommend-fluent-nhibernate-over/794965#7949650Answer by Maggie for Based on your experience, how many of you would recommend fluent NHibernate over Nhibernate way of doing things for my new project?Maggie2009-04-27T19:36:03Z2009-04-27T19:36:03Z<p>I am using FNH for a new project. What I like the best is the ability to generate and build the database directly from the entity classes.</p>
<p>I have had to write a few conventions for the properties but I'd rather that then maintain more than one list for each class.</p>
http://stackoverflow.com/questions/1617630/non-repeating-random-numbersComment by Maggie on Non repeating Random Numbers.Maggie2009-10-24T11:12:54Z2009-10-24T11:12:54ZIf you don't want duplicates then you are not looking for randomness <a href="http://en.wikipedia.org/wiki/Randomness" rel="nofollow">en.wikipedia.org/wiki/Randomness</a> , sounds like you are looking for a randomized shuffling algorithm <a href="http://en.wikipedia.org/wiki/Random_permutation" rel="nofollow">en.wikipedia.org/wiki/Random_permutation</a>http://stackoverflow.com/questions/1601372/is-try-catch-around-whole-c-program-possibleComment by Maggie on Is try/catch around whole C# program possible?Maggie2009-10-21T15:05:57Z2009-10-21T15:05:57ZThe OP is not asking how exceptions should be used - just how to catch them in a certain scenario. Obviously if an exception bubbles to the top layer then something is wrong - seems like he wants to find out more information when something is wrong so it can be addressed. Mitch's answer is much more helpful than assuming the op doesn't know what he's doing.http://stackoverflow.com/questions/1582704/need-help-with-three-visual-studio-errors-c-errors-occuring-when-trying-to-b/1582725#1582725Comment by Maggie on Need help with three visual studio errors - C++ errors occuring when trying to build solutionMaggie2009-10-17T23:04:57Z2009-10-17T23:04:57ZDon't feel dumb - it is so easy to miss mistakes - better to ask then spin your wheels:)http://stackoverflow.com/questions/1561742/how-to-send-email-from-windows-form-app-with-log4net/1561852#1561852Comment by Maggie on How to send email from windows form app with log4netMaggie2009-10-13T20:22:38Z2009-10-13T20:22:38ZThanks, I'm not sure of what to use for the host string. Is it the IP address of the PC?
So to work on every machine I should use CredentialCache.DefaultNetworkCredentials for authentication?http://stackoverflow.com/questions/1512335/c-cross-reference-generation/1512399#1512399Comment by Maggie on C# cross reference generation?Maggie2009-10-06T14:38:50Z2009-10-06T14:38:50ZI actually use both tools at the moment as each has their strengths - I'm still tweaking settings where they overlap. My current project is not as large as your sounds so turning off parts where the tool compiles and analyses in the background may help. I am using the latest releases of both tools.http://stackoverflow.com/questions/1521765/creating-a-polygon-shape-from-a-2d-tile-arrayComment by Maggie on Creating a polygon shape from a 2d tile arrayMaggie2009-10-05T19:10:55Z2009-10-05T19:10:55ZThis sounds like homework. Is it, what have you tried? I'd suggest discovering the opposite algorithm first. Give yourself a simple shape and decide which coordinates would have tiles to cover the shape.http://stackoverflow.com/questions/1418769/fluent-nhibernate-automapping-supposed-to-save-time-but-this-has-me-pulling-my-hComment by Maggie on Fluent NHibernate AutoMapping, supposed to save time but this has me pulling my hair outMaggie2009-09-14T12:06:19Z2009-09-14T12:06:19ZThere should not be a problem with your book/user relationships - they should automap correctly. Have you been able to look at the xml fileshttp://stackoverflow.com/questions/1034707/nhibernate-session-management-and-lazy-loading/1044206#1044206Comment by Maggie on NHibernate session management and lazy loadingMaggie2009-06-26T13:01:09Z2009-06-26T13:01:09ZI create my session/repositories via StructureMap and only the model uses them. My view is unaware of persistence.http://stackoverflow.com/questions/817950/simple-way-to-create-an-erd-for-a-database-design-review/1038889#1038889Comment by Maggie on Simple way to create an ERD for a database design review.Maggie2009-06-25T14:45:52Z2009-06-25T14:45:52ZThanks! This worked and will be very helpful.http://stackoverflow.com/questions/983574/unravelling-assembly-language-spaghetti-code/983673#983673Comment by Maggie on Unravelling Assembly Language Spaghetti CodeMaggie2009-06-11T23:20:44Z2009-06-11T23:20:44ZThis is a case where greenbar printouts shine. http://stackoverflow.com/questions/960122/xerces-c-problems-segfault-on-call-to-object-destructorComment by Maggie on Xerces-C problems; segfault on call to object destructor Maggie2009-06-06T20:19:10Z2009-06-06T20:19:10ZI think you should delete the parser after the errhandler and before terminate.
I'd also suggest you check the errhandler after the parse call.
xmlParser->parse( *memBufIS );
// check errors here
xmlDoc = xmlParser->getDocument();
http://stackoverflow.com/questions/960122/xerces-c-problems-segfault-on-call-to-object-destructorComment by Maggie on Xerces-C problems; segfault on call to object destructor Maggie2009-06-06T18:32:02Z2009-06-06T18:32:02ZHave you tried simplifying the code and just open and close the xerces document to see if you can isolate the error. If I get the chance later I will look for code I wrote that uses xerces in a similar way.http://stackoverflow.com/questions/942657/what-are-some-recommended-resources-and-tutorials-for-learning-the-vtk-library-to/942773#942773Comment by Maggie on What are some recommended resources and tutorials for learning the VTK library toolkit?Maggie2009-06-03T02:40:45Z2009-06-03T02:40:45Z<a href="http://www.imaging.robarts.ca/~dgobbi/vtk/vtkpython.html" rel="nofollow">imaging.robarts.ca/~dgobbi/vtk/…</a>http://stackoverflow.com/questions/942657/what-are-some-recommended-resources-and-tutorials-for-learning-the-vtk-library-to/942773#942773Comment by Maggie on What are some recommended resources and tutorials for learning the VTK library toolkit?Maggie2009-06-03T02:34:48Z2009-06-03T02:34:48Z<a href="http://www.ivtools.org/ivtools/interviews.html" rel="nofollow">ivtools.org/ivtools/interviews.html</a>
one morehttp://stackoverflow.com/questions/942657/what-are-some-recommended-resources-and-tutorials-for-learning-the-vtk-library-to/942773#942773Comment by Maggie on What are some recommended resources and tutorials for learning the VTK library toolkit?Maggie2009-06-03T02:29:41Z2009-06-03T02:29:41Z<a href="http://vxl.sourceforge.net/" rel="nofollow">vxl.sourceforge.net</a>
<a href="http://www.robots.ox.ac.uk/~tgtjr/" rel="nofollow">robots.ox.ac.uk/~tgtjr</a>
<a href="http://www.fresco.org/" rel="nofollow">fresco.org</a>
These related sites might help as well.