<?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>workgroup environment Archives - Dragonsoft Technology View</title>
	<atom:link href="https://blog.dragonsoft.us/tag/workgroup-environment/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.dragonsoft.us/tag/workgroup-environment/</link>
	<description>Talk about Technologies, Software Architecture and Management</description>
	<lastBuildDate>Thu, 14 Aug 2008 15:49:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://blog.dragonsoft.us/wp-content/uploads/2022/04/logo-main-bw-150x150.png</url>
	<title>workgroup environment Archives - Dragonsoft Technology View</title>
	<link>https://blog.dragonsoft.us/tag/workgroup-environment/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">2577970</site>	<item>
		<title>Was: Delphi in the workgroup</title>
		<link>https://blog.dragonsoft.us/2008/08/12/was-delphi-in-the-workgroup/</link>
					<comments>https://blog.dragonsoft.us/2008/08/12/was-delphi-in-the-workgroup/#comments</comments>
		
		<dc:creator><![CDATA[Serguei Dosyukov]]></dc:creator>
		<pubDate>Tue, 12 Aug 2008 21:16:31 +0000</pubDate>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[delphi]]></category>
		<category><![CDATA[development infrastructure]]></category>
		<category><![CDATA[Product Management]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[workgroup environment]]></category>
		<guid isPermaLink="false">http://blog.dragonsoft.us/?p=280</guid>

					<description><![CDATA[<p>In his post today, Marshall Fryman discsusses problems with shared development environment or workgroup development. Yes, it could be a complex problem which is rarelly addressed. Note. Even though we are talking about Delphi here, it is really could be applied to any development environment. Let look at the problem closer. Problem You<a class="moretag" href="https://blog.dragonsoft.us/2008/08/12/was-delphi-in-the-workgroup/"> Read more</a></p>
<p>The post <a href="https://blog.dragonsoft.us/2008/08/12/was-delphi-in-the-workgroup/">Was: Delphi in the workgroup</a> appeared first on <a href="https://blog.dragonsoft.us">Dragonsoft Technology View</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In <a href="http://ruminatedrumblings.blogspot.com/2008/08/delphi-in-workgroup.html" target="_blank"><span style="color: #800080;">his post</span></a> today, Marshall Fryman discsusses problems with shared development environment or workgroup development. Yes, it could be a complex problem which is rarelly addressed.</p>
<p>Note. Even though we are talking about Delphi here, it is really could be applied to any development environment.</p>
<p>Let look at the problem closer.</p>
<h3>Problem</h3>
<p>You have development environment with over dozen of development stations. You have similar development environment: versions of development tools used, locations, components. How to do easy update/upgrade in this environment and keep it up-to-date?</p>
<h3>Solutions</h3>
<h3>1. Virtualization</h3>
<p>My vote goes for virtualization &#8211; choose from VMWare, Microsoft VirtualPC or other solutions.<br />
Then create base image which everyone would share, change your settings that anything which is user specific goes to his/her local drive instead of virtual image space. Yes, you would have to have some sort of unification, but it is true for any development environment nowadays.</p>
<p>If you go with Server editions of such products then it could be even easier since some of them could allow you maintain your own sessions without affecting main image.</p>
<p>Then make it through your virtual environment has a priority over your hardware so if you are in the development mode you would not really suffer penalty of virtualization. With new versions of Windows coming, I think it would become common and internally supported by default. For now you would have to do some maintenance.</p>
<h3>2. &#8220;Virtualization&#8221;</h3>
<p>The same name, but a way to achieve it is different. Instead of virtualizing a whole Windows environment, you do that for your Delphi environment only.</p>
<p>What does Delphi environment consists of?</p>
<ul type="disc">
<li><strong>Delphi installation</strong>. We have to assume that everyone is on the same version. Best to have it in the same location, but it is not really necessary.</li>
<li><strong>Project source code</strong>. If you use any change management system, then you most likely already have everything in one place, and in the same folder structure. Projects are open from similar locations and exe/dcu files created in the same designated areas.</li>
<li><strong>Components, wizards</strong>. That could be a problem and this is where you really put &#8220;<em>virtualization</em>&#8221; in place.</li>
</ul>
<p>Let&#8217;s think about it for a second. What does Delphi have to have to properly use custom components?</p>
<p><strong>BPL, DCP, DCU, DFM/RES files location! </strong>IDE really does not care where code was compiled, but rather that components are properly registered and place to find all required files.</p>
<p>Keeping that in mind, let&#8217;s create proper infrastructure:</p>
<ol>
<li>Put everything in your source control system and have it in the same places on all machines. You could have BPL/DCP in the same folder with DCU files or in different locations. Also folder with DCU files should include all necessary DFM/RES files.</li>
<li>In Delphi, add your new location for DCU to &#8220;<strong>Library Path</strong>&#8221; in IDE options, and your BPL/DCP location to &#8220;<strong>BPL/DCP output directory</strong>&#8220;.</li>
<li>Do not add source location to a &#8220;<strong>Browsing path</strong>&#8220;, you do not want THIS shared code to be recompiled on individual machines. It will also prevent some &#8220;strange&#8221; errors when DCUs start to &#8220;walk around&#8221;.</li>
<li>Then install all necessary Design time packages and you done.</li>
</ol>
<p>How would upgrade process work?</p>
<p>Now it is easy. On your master computer update components, recompile if necessary, then check them into your source control system. Then, when necessary, before launching Delphi IDE your developers would get latest form depository, which will update all components and proper DCU/BPL/DCP.</p>
<p>It is rare when new components has to be reinstalled in Delphi since file/BPL structure is usually remain the same. Even when such maintenance is required it can be accomplished with simple .REG file deployed and applied to all machines. But it is rare situation.</p>
<p>Result &#8211; you now have fully maintainable, distributed development infrastructure.</p>
<h3>Conclusion</h3>
<p>Both scenario are result of my own experience in resolving an issue of handling workgroup environment and have been used in real life.</p>
<hr/><span style="font-size: 7pt">Copyright &copy; 2026 <strong><a href="https://blog.dragonsoft.us">Dragonsoft Technology View</a></strong>. This Feed is for personal non-commercial use only.</span><p>The post <a href="https://blog.dragonsoft.us/2008/08/12/was-delphi-in-the-workgroup/">Was: Delphi in the workgroup</a> appeared first on <a href="https://blog.dragonsoft.us">Dragonsoft Technology View</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.dragonsoft.us/2008/08/12/was-delphi-in-the-workgroup/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">280</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Minified using Disk
Database Caching 18/82 queries in 0.071 seconds using Disk

Served from: blog.dragonsoft.us @ 2026-05-31 04:31:05 by W3 Total Cache
-->