<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog infocube &#124; sviluppo applicazioni web &#187; tutorial</title>
	<atom:link href="http://blog.infocube.it/category/web-engineering/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.infocube.it</link>
	<description>il blog del percorso di crescita infocube</description>
	<lastBuildDate>Fri, 22 Jan 2010 09:52:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto</title>
		<link>http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/</link>
		<comments>http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 10:42:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Access 2007]]></category>
		<category><![CDATA[infocube]]></category>
		<category><![CDATA[migrate]]></category>
		<category><![CDATA[migrazione]]></category>
		<category><![CDATA[solutions]]></category>
		<category><![CDATA[soluzioni]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.infocube.it/?p=11</guid>
		<description><![CDATA[E&#8217; una soluzione ad un problema che puo&#8217; capitare a chi non ha installato MS office sulla porpria macchina e deve accedere ad un db Access 2007.
E&#8217; una soluzione alternativa a openoffice base, che nella versione 2.4 consente di accedere ad un db access2007, ma che non ci consentiva di effettuare query o esportare dati [...]]]></description>
			<content:encoded><![CDATA[<p>E&#8217; una soluzione ad un problema che puo&#8217; capitare a chi non ha installato MS office sulla porpria macchina e deve accedere ad un db Access 2007.</p>
<p>E&#8217; una soluzione alternativa a openoffice base, che nella versione 2.4 consente di accedere ad un db access2007, ma che non ci consentiva di effettuare query o esportare dati in formato excel.</p>
<p>Sul sito microsoft danno la cosa come non possibile (almeno in questo <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2875714&amp;SiteID=1" target="_blank">post</a>), ma noi in <a title="infocube solutions" href="http://www.infocube.it" target="_blank">infocube </a>ci siamo riusciti, seguendo proprio le loro istruzioni:</p>
<ul>
<li><span id="more-11"></span>abbiamo installato <span id="_ctl0_MainContent_PostFlatView"><span><span style="font-size: x-small;"><a title="sito microsoft" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7554F536-8C28-4598-9B72-EF94E038C891&amp;displaylang=it" target="_blank"><span style="font-weight: bold; font-family: Verdana;">2007 Office System Driver: Data Connectivity Components</span></a></span></span></span></li>
</ul>
<ul>
<li>abbiamo installato SQL Server 2005 Express</li>
</ul>
<ul>
<li>abbiamo abilitato <span style="font-size: x-small;">l&#8217;opzione <strong>consenti in-process</strong> da oggetti server -&gt; server collegati -&gt; provider -&gt; </span><span id="_ctl0_MainContent_PostFlatView"><span><span style="font-size: x-small;"><span style="font-weight: bold; font-family: Verdana;">Microsoft.ACE.OLEDB.12.0</span></span></span></span></li>
</ul>
<ul>
<li>abbiamo eseguito le seguenti istruzioni sostituendo opportunamente i percorsi ed il nome del server:</li>
</ul>
<pre>use master</pre>
<pre>GO</pre>
<pre><span id="_ctl0_MainContent_PostFlatView"><span>EXEC sp_addlinkedserver
    @server = N'nome del server collegato',
    @provider = N'Microsoft.ACE.OLEDB.12.0',
    @srvproduct = N'Access2007',
    @datasrc = N'C:\path\to\your\db.accdb'
GO

-- impostiamo un login anonimo
EXEC master.dbo.sp_addlinkedsrvlogin
    @rmtsrvname = N'</span></span><span id="_ctl0_MainContent_PostFlatView"><span>nome del server collegato</span></span><span id="_ctl0_MainContent_PostFlatView"><span>',
    @locallogin = NULL ,
    @useself = N'False'
GO

-- verifichiamo di aver effettuato il collegamento elencando le tabelle del server
EXEC sp_tables_ex N'</span></span><span id="_ctl0_MainContent_PostFlatView"><span>nome del server collegato</span></span><span id="_ctl0_MainContent_PostFlatView"><span>'
GO

-- Select all the rows from table1
SELECT * FROM [</span></span><span id="_ctl0_MainContent_PostFlatView"><span>nome del server collegato</span></span><span id="_ctl0_MainContent_PostFlatView"><span>]...table1</span></span></pre>
<p>attenzione ad utilizzare i &#8230; tra il nome del server ed il nome della tabella.</p>
<ul>
<li>abbiamo inoltre impostato l&#8217;accesso al file .accdb come consentito a tutti (da windows vista)</li>
</ul>
<ul>
<li>poi per poter accedere ai dati della tabella tramite una connessione JDBC abbiamo fatto una copia della tabella sul server MS 2005 express con la seguente query:</li>
</ul>
<pre>select * into [MyServer2005Express].dbo.table1 from [<span id="_ctl0_MainContent_PostFlatView"><span>nome del server collegato</span></span>]...[table1]</pre>
<p>a questo punto la migrazione di una singola tabella e&#8217; compiuta, si puo&#8217; ripetere l&#8217;ultima istruzione per tutte le tabelle utente.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Segnala presso:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/&amp;title=Migrare+un+db+access2007+%28.accdb%29+a+SQLServer+2005+Express+%26%238211%3B+howto" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Del.icio.us"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Del.icio.us" alt="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/&amp;title=Migrare+un+db+access2007+%28.accdb%29+a+SQLServer+2005+Express+%26%238211%3B+howto" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a digg"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a digg" alt="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Migrare+un+db+access2007+%28.accdb%29+a+SQLServer+2005+Express+%26%238211%3B+howto&amp;u=http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a FURL"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a FURL" alt="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Technorati"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Technorati" alt="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/&amp;t=Migrare+un+db+access2007+%28.accdb%29+a+SQLServer+2005+Express+%26%238211%3B+howto" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Yahoo My Web"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Yahoo My Web" alt="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/&amp;title=Migrare+un+db+access2007+%28.accdb%29+a+SQLServer+2005+Express+%26%238211%3B+howto&amp;description=Migrare+un+db+access2007+%28.accdb%29+a+SQLServer+2005+Express+%26%238211%3B+howto" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Ma.gnolia"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Ma.gnolia" alt="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/&amp;title=Migrare+un+db+access2007+%28.accdb%29+a+SQLServer+2005+Express+%26%238211%3B+howto" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Google Bookmarks"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Google Bookmarks" alt="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/&amp;t=Migrare+un+db+access2007+%28.accdb%29+a+SQLServer+2005+Express+%26%238211%3B+howto" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a FaceBook"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a FaceBook" alt="Aggiungi 'Migrare un db access2007 (.accdb) a SQLServer 2005 Express &#8211; howto' a FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.infocube.it/web-engineering/tutorial/migrare-un-db-access2007-accdb-a-sqlserver-2005-express-howto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>liferay + tomcat6 bundle as a windows service</title>
		<link>http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/</link>
		<comments>http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 10:08:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[liferay]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[tomcat]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.infocube.it/?p=10</guid>
		<description><![CDATA[In infocube abbiamo provato ad installare il pacchetto bundle di liferay5.1 con tomcat6 come un servizio windows secondo le istruzioni contentute nei due articoli seguenti della wiki di liferay e nell&#8217;how-to di apache.
La wiki di liferay fa ancora riferimento alla versione 5 di tomcat, basta sostituire chiaramente i file della 6, ma a noi, inoltre, [...]]]></description>
			<content:encoded><![CDATA[<p>In <strong><a title="infocube webdevelop " href="http://www.infocube.it">infocube </a></strong>abbiamo provato ad installare il pacchetto bundle di liferay5.1 con tomcat6 come un servizio windows secondo le istruzioni contentute nei due articoli seguenti della <strong><a title="liferay wiki" href="http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Starting+Liferay+as+a+Windows+Service">wiki di liferay</a></strong> e nell&#8217;<strong><a title="apache tomcat how-to" href="http://tomcat.apache.org/tomcat-6.0-doc/printer/windows-service-howto.html">how-to di apache</a></strong>.</p>
<p>La wiki di <strong>liferay </strong>fa ancora riferimento alla versione 5 di tomcat, basta sostituire chiaramente i file della 6, ma a noi, inoltre, si presentava sempre una eccezione: <span style="font-size: x-small; font-family: Verdana,Arial;">java.lang.OutOfMemoryError: PermGen space</span>.</p>
<p>Facendo partire il tutto con startup.bat il problema non si presentava.</p>
<p>Per l&#8217;installazione abbiamo seguito i passi della wiki, aggiungendo alle java-opts, tramite il tool di configurazione di tomcat, tomcat6w.exe, anche i parametri contenuti nel file setEnv.bat, che non veniva richiamato dal service.bat, tra questi in particolare:</p>
<p><span style="font-size: x-small; font-family: Verdana,Arial;">-XX:MaxPermSize=256m</span></p>
<p>limita l&#8217;utilizzo del PermGen space ed evita il verificarsi dell&#8217;eccezione.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Segnala presso:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/&amp;title=liferay+%2B+tomcat6+bundle+as+a+windows+service" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Del.icio.us"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Del.icio.us" alt="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/&amp;title=liferay+%2B+tomcat6+bundle+as+a+windows+service" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a digg"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a digg" alt="Aggiungi 'liferay + tomcat6 bundle as a windows service' a digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=liferay+%2B+tomcat6+bundle+as+a+windows+service&amp;u=http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a FURL"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a FURL" alt="Aggiungi 'liferay + tomcat6 bundle as a windows service' a FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Technorati"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Technorati" alt="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/&amp;t=liferay+%2B+tomcat6+bundle+as+a+windows+service" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Yahoo My Web"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Yahoo My Web" alt="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/&amp;title=liferay+%2B+tomcat6+bundle+as+a+windows+service&amp;description=liferay+%2B+tomcat6+bundle+as+a+windows+service" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Ma.gnolia"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Ma.gnolia" alt="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/&amp;title=liferay+%2B+tomcat6+bundle+as+a+windows+service" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Google Bookmarks"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Google Bookmarks" alt="Aggiungi 'liferay + tomcat6 bundle as a windows service' a Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/&amp;t=liferay+%2B+tomcat6+bundle+as+a+windows+service" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a FaceBook"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Aggiungi 'liferay + tomcat6 bundle as a windows service' a FaceBook" alt="Aggiungi 'liferay + tomcat6 bundle as a windows service' a FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.infocube.it/web-engineering/tutorial/liferay-tomcat6-bundle-as-a-windows-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tutorial configurazione bonita workflow su MySQL</title>
		<link>http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/</link>
		<comments>http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 22:09:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[bonita]]></category>
		<category><![CDATA[jonas]]></category>
		<category><![CDATA[kettle]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[pentaho data]]></category>
		<category><![CDATA[workflow]]></category>
		<category><![CDATA[xpdl]]></category>

		<guid isPermaLink="false">http://blog.infocube.it/?p=4</guid>
		<description><![CDATA[ecco alcuni appunti per l&#8217;installazione/configurazione di bonita workflow su MySQL
anche se non proprio banale come descritta nel documento bonitagettingstarted&#8230;
CREATE DATABASE db_jonas;
GRANT ALL PRIVILEGES ON db_jonas.* TO jonas@localhost IDENTIFIED BY &#8216;jonas&#8217;;
dopo aver lanciato ant install-windows (installazione std su hsql)
modificati files:
bonita.properties
datasource.name         bonita
datasource.url        [...]]]></description>
			<content:encoded><![CDATA[<p>ecco alcuni appunti per l&#8217;installazione/configurazione di bonita workflow su MySQL</p>
<p>anche se non proprio banale come descritta nel documento bonitagettingstarted&#8230;</p>
<p>CREATE DATABASE db_jonas;</p>
<p>GRANT ALL PRIVILEGES ON db_jonas.* TO jonas@localhost IDENTIFIED BY &#8216;jonas&#8217;;</p>
<p>dopo aver lanciato ant install-windows (installazione std su hsql)</p>
<p>modificati files:<br />
bonita.properties</p>
<p style="padding-left: 30px;">datasource.name         bonita<br />
datasource.url          jdbc:mysql://localhost:3306/db_jonas<br />
datasource.classname    com.mysql.jdbc.Driver<br />
datasource.username     jonas<br />
datasource.password     jonas</p>
<p>jiapadmin.properties</p>
<p style="padding-left: 30px;">datasource.name         jiap<br />
datasource.url          jdbc:mysql://localhost:3306/db_jonas<br />
datasource.classname    com.mysql.jdbc.Driver<br />
datasource.username     jonas<br />
datasource.password     jonas</p>
<p>dopo aver fatto partire il server e copiato la<br />
e copiato junit.jar nella lib di ant1.7<br />
D:\sviluppo\testProdotti\apache-ant-1.7.0\bin\ant -q initDB</p>
<p>ho dovuto copiare i contenuti delle tabelle a mano(utilizzando kettle ), ma probabiolmete xche&#8217; avevo sbagliato alcuni parametri(seguendo passo passo quanto riportato dovrebeb andar bene)</p>
<p>NOTA: dopo aver effettuato la copia delle tabelle, se necessaria, nel file jonas.properties e&#8217; possibile eliminare il servizio db (hsql), come descrittto in http://heavyz.sourceforge.net/zpetstore/installation/jonas.html</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Segnala presso:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/&amp;title=tutorial+configurazione+bonita+workflow+su+MySQL" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Del.icio.us"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Del.icio.us" alt="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/&amp;title=tutorial+configurazione+bonita+workflow+su+MySQL" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a digg"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a digg" alt="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=tutorial+configurazione+bonita+workflow+su+MySQL&amp;u=http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a FURL"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a FURL" alt="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Technorati"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Technorati" alt="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/&amp;t=tutorial+configurazione+bonita+workflow+su+MySQL" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Yahoo My Web"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Yahoo My Web" alt="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/&amp;title=tutorial+configurazione+bonita+workflow+su+MySQL&amp;description=tutorial+configurazione+bonita+workflow+su+MySQL" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Ma.gnolia"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/magnolia.png" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Ma.gnolia" alt="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Ma.gnolia" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/&amp;title=tutorial+configurazione+bonita+workflow+su+MySQL" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Google Bookmarks"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Google Bookmarks" alt="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/&amp;t=tutorial+configurazione+bonita+workflow+su+MySQL" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a FaceBook"><img src="http://blog.infocube.it/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a FaceBook" alt="Aggiungi 'tutorial configurazione bonita workflow su MySQL' a FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://blog.infocube.it/web-engineering/tutorial/tutorial-configurazione-bonita-workflow-su-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

