Hi, Here are my sqlmap.config file. If you need anything else please let me know.
Thanks <?xml version="1.0" encoding="utf-8"?> <sqlMapConfig xmlns="http://ibatis.apache.org/dataMapper" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > <!-- Rem : If used via a DataAccess context, properties tag will be ignored --> <properties resource="properties.config"/> <settings> <setting useStatementNamespaces="${useStatementNamespaces}"/> <setting cacheModelsEnabled="false"/> <setting validateSqlMap="false"/> </settings> <providers resource="providers.config"/> <database> <!-- Optional ( default ) --> <provider name="oracleClient1.0"/> <dataSource name="ISOData" connectionString="Data Source=${datasource};User Id=${userid};Password=${password}"/> </database> <sqlMaps> <!-- <sqlMap url="E:/Projet/iBatis/trunk/cs/mapper/IBatisNet.DataMapper.Test/${direct ory}/MSSQL/SqlClient/Account.xml"/> --> <sqlMap resource="Maps/RosterLocationMap.xml"/> <sqlMap resource="Maps/Security/GroupsMap.xml"/> <!-- Rem : If used as embbeded Resources, use <sqlMap embedded="Maps.MSSQL.SqlClient.Account.xml, IBatisNet.DataMapper.Test"/>--> </sqlMaps> </sqlMapConfig> -----Original Message----- From: Ron Grabowski [mailto:[EMAIL PROTECTED] Sent: Friday, October 14, 2005 5:16 PM To: [email protected] Subject: RE: ConfigureAndWatch Performance Issue Could you post your sqlMap.config file and any other files you use to configure IBatisNet? It sounds like you have a value in an xml config file that can't be converted into a Boolean correctly. --- Cynthia Torres <[EMAIL PROTECTED]> wrote: > I downloaded the bin files version 1.3.0. After this I changed the > sqlmap.config for the one provided in the folder and made some > changes > to my code: > > Dim handler As ConfigureHandler = New ConfigureHandler(AddressOf > Configure) > Dim builder As DomSqlMapBuilder = New DomSqlMapBuilder > mapper = builder.ConfigureAndWatch(handler) > > but I get this error: > > [FormatException: String was not recognized as a valid Boolean.] > System.Boolean.Parse(String value) +269 > System.Convert.ToBoolean(String value) +12 > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Initialize() > > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean useConfigFileWatcher, > Boolean > isCallFromDao) > > [ConfigurationException: > - The error occurred while loading global settings.] > > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, DataSource dataSource, Boolean useConfigFileWatcher, > Boolean > isCallFromDao) > > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.Build(XmlDocument > document, Boolean useConfigFileWatcher) > > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(St > ring resource, ConfigureHandler configureDelegate) > > IBatisNet.DataMapper.Configuration.DomSqlMapBuilder.ConfigureAndWatch(Co > nfigureHandler configureDelegate) > > > > -----Original Message----- > From: Ron Grabowski [mailto:[EMAIL PROTECTED] > Sent: Friday, October 14, 2005 3:03 PM > To: [email protected] > Subject: RE: ConfigureAndWatch Performance Issue > > I believe this is the only way Apache projects can be checked out of > source control. Last time I checked this directory: > > http://svn.apache.org/dist/ > > there was a alpha/beta(?) binary build from a few weeks ago that > should > have the configuration speedup code inside of it. You may want to > give > that a try. It should just be a matter of extracting the files and > rebuilding your project. > > --- Cynthia Torres <[EMAIL PROTECTED]> wrote: > > > Yes I'm able to see the site. Is this the only way you have to > > download > > the SVN? > > > > -----Original Message----- > > From: Ron Grabowski [mailto:[EMAIL PROTECTED] > > Sent: Friday, October 14, 2005 2:16 PM > > To: [email protected] > > Subject: RE: ConfigureAndWatch Performance Issue > > > > Hmmm, this is what I did (Flash movie): > > > > http://www.ronosaurus.com/IBatisNet/IBatisNet-svn.htm > > > > and it worked ok. Are you able to view this website in your > browser: > > > > http://svn.apache.org/ > > > > --- Cynthia Torres <[EMAIL PROTECTED]> wrote: > > > > > Ok...Thanks for the clarification. I did all your instructions > but > > > I'm > > > getting errors when try to check out the files > > > > > > Error: PROPFIND request failed on > > '/repos/asf/ibatis/trunk/cs/mapper' > > > > > > Error: PROPFIND of '/repos/asf/ibatis/trunk/cs/mapper': could not > > > connect to server (http://svn.apache.org) > > > > > > Please let me know what can I do to download the files. I could > > send > > > you > > > if you want screen captures of all the steps I did. > > > > > > Thanks > > > > > > > > > > > > -----Original Message----- > > > From: Ron Grabowski [mailto:[EMAIL PROTECTED] > > > Sent: Friday, October 14, 2005 11:12 AM > > > To: [email protected] > > > Subject: RE: ConfigureAndWatch Performance Issue > > > > > > SVN is an abbreviation for Subversion which is the source control > > > system that Apache projects use. You can view the most up to date > > > versions of IBatisNet here: > > > > > > http://svn.apache.org/repos/asf/ibatis/trunk/cs/mapper/ > > > > > > There is a program called TortoiseSVN that makes it very easy to > > > integrate SVN with the Windows Explorer. Its available here: > > > > > > http://tortoisesvn.tigris.org/ > > > > > > Once you've installed the program, create a new folder > > > (C:\Projects\IBatisNet-svn\ for example), go inside of it and > > select > > > SVN Checkout. Enter the http://svn.apache... address from above > and > > > it > > > will download the latest version to that folder. You may need to > > > comment out a few lines some of the AssemblyInfo.cs files to > avoid > > > errors with signed assemblies but other than that it should build > > > normally... > > > > > > The version of IBatisNet in SVN is able to load and process files > > > much > > > faster than the last binary release version on ibatis.apache.org. > > If > > > you want these speed improvements you'll have to use the SVN > > version > > > or > > > wait until the next release. When will the next version be > > released? > > > I > > > don't know. The code in SVN has been stable for a while (I'm > using > > it > > > on a live site right now). One of the holdups now is that the > > > documentation hasn't been completly updated to reflect the new > > > features. I'm working on that now. > > > > > > Anyone can help with the source and documentation. If you see > > > something > > > in the documentation that is confusing or you think can be > > explained > > > better please speak up! > > > > > > --- Cynthia Torres <[EMAIL PROTECTED]> wrote: > > > > > > > Sure, you can use my code to help others. If would be great if > > you > > > > could have some documentation and sample code for VB.Net users. > > > > > > > > Regarding my issue if I crearly understand, what you suggested > is > > > to > > > > change my method: > > > > > > > > Protected Shared Sub InitMapper() > > > > Dim handler As New ConfigureHandler(AddressOf Configure) > > > > mapper = SqlMapper.ConfigureAndWatch(handler) > > > > End Sub 'InitMapper > > > > > > > > To use: > > > > > > > > Protected Shared Sub InitMapper() > > > > mapper = IBatisNet.DataMapper.Mapper.Instance() > > > > End Sub 'InitMapper > > > > > > > > I made the change but still taking to much time in been > executed. > > > > > > The > > > > other thing I have tried was put the code in the > > Application_Start > > > > event > > > > but the effect was even worse. I'm not completely sure what > the > > > SVN > > > > (mentioned in the email) is, if you can clarify to me what I > have > > > to > > > > do > > > > with this I will appreciate. > > > > > > > > Thanks in advance. > > > > > > > > -----Original Message----- > > > > From: Ron Grabowski [mailto:[EMAIL PROTECTED] > > > > Sent: Thursday, October 13, 2005 11:06 PM > > > > To: [email protected] > > > > Subject: Re: ConfigureAndWatch Performance Issue > > > > > > > > Is it ok if I include your VB.Net code in the IBatisNet > === message truncated ===

