<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>OnTime FAQ</title><link>http://community.axosoft.com/forums/18/ShowForum.aspx</link><description>Answers to Frequently Asked Questions about OnTime.  This forum is updated regularly by the Axosoft Support team. Read Only - Send your FAQ Suggestions to Support@axosoft.com.</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61120.2)</generator><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/OnTimeFAQ" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>Errors when running details report</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/qDQdgVVFIGs/19431.aspx</link><pubDate>Thu, 17 Sep 2009 16:47:14 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:19431</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/19431.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=19431</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q: When I run one of the detail reports I sometimes get an error, what's causing this and is there work-around?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A:&lt;/b&gt; OnTime stores all of it's large text fields as HTML and our reporting engine then parses that HTML in order format things correctly. It's uncommon but there can sometimes be characters in your large text fields that may interpreted by the reporting engine as part of that HTML or even code. The two errors that you may see in 9.1.2 are&amp;nbsp; "Index was outside the bounds of the array." and "RTF parse errorecHexCharError". Our developers are aware of these and will be addressing this in a future release but in the interim there is a workaround.&lt;br&gt;&lt;br&gt;Since we'll be modifying a report you'll need to make a copy of the built-in report from the Reports Manager and you'll then edit that copy.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/reporterrors/editreport1.png" height="653" width="880"&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;In the reports designer make note of the sections that hold RichTextBoxes and then click on the c# editor.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/reporterrors/editreport2.png" border="2"&gt;&lt;br&gt;&lt;br&gt;Find the section of code that deals with the sections we found in the designer and comment out the line&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ((RichTextBox)rpt.Sections["GroupFooter4"].Controls["descriptionRichTextBox"]).Text = rptHelper.HtmlToText(_description);&lt;br&gt;&lt;br&gt;Now input the new code that escapes out of the strings that cause you errors&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string strReturn;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("'\\'","' \\ '");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\0","\\ 0");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\1","\\ 1");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\2","\\ 2");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\3","\\ 3");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\4","\\ 4");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\5","\\ 5");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\6","\\ 6");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\7","\\ 7");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\8","\\ 8");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strReturn = rptHelper.HtmlToText(_description).Replace("\\9","\\ 9");&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ((RichTextBox)rpt.Sections["GroupFooter4"].Controls["descriptionRichTextBox"]).Text = strReturn;&lt;br&gt;It should look like this when you're done:&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/reporterrors/editreport3.png" border="2" height="435" width="819"&gt;&lt;/p&gt;&lt;p&gt;Repeat for your other large text fields in your report and save this and re-run your report just to make sure everything goes smoothly and you're good to go.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/19431.aspx</feedburner:origLink></item><item><title>Importing From FogBugz into OnTime</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/z7IRoGfjavo/19374.aspx</link><pubDate>Wed, 09 Sep 2009 00:12:58 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:19374</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/19374.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=19374</wfw:commentRss><description>&lt;p style="font-weight:bold;"&gt;Q: I'm performing a migration from FogBugz to OnTime and was wondering if there were any scripts available for this.&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;"&gt;A:&lt;/span&gt; Axosoft hasn't developed any scripts for this purpose but a member of our community did and he was kind enough to share this with us. These scripts are not Axosoft's and we don't support them but if you find them useful, feel free to stop by &lt;a href="http://community.axosoft.com/forums/thread/18043.aspx"&gt;THIS &lt;/a&gt;thread and thank Brian for his trouble.&lt;/p&gt;&lt;p&gt;You can find the scripts &lt;a href="http://www.axosoft.com/images/community/fogbugzscript/FogBugzScript.zip"&gt;HERE &lt;/a&gt;and you'll find the instructions that Brian provided below&lt;/p&gt;&lt;blockquote&gt;There are&amp;nbsp; 4 SQL scripts, one for
each related area in OnTime that you would potentially run to pull data
from FogBugz (Bugs,Features,Support,Tasks.) The queries are all fairly
similar and change only to reflect area/category of data you want to
pull. The first insert is used to narrow down query results by category
(Bug=1, Feature=2, Inquiry=3) and we also used it to include or filter
out specific releases (FixFor). The release filtering can be removed if
not needed. The select statement on the lower half is actually
selecting the data, mapping FogBugz values to valid OnTime values, with
the resulting data being copied/exported into Excel using the
Template.xlt file or a CSV file you create too match your query
results. The following fields in that select statement you will want to
customize to your existing FogBugz environment and mapping how you want
them to show up in OnTime:&lt;br&gt;&lt;br&gt;&amp;nbsp;&lt;br&gt;&lt;br&gt;ixProject (project ID, we used the Project field to track our software products/projects)&lt;br&gt;&lt;br&gt;ixPriority (mapped to OnTime priorities accordingly)&lt;br&gt;&lt;br&gt;ixStatus
(Status used for workflow routing in FogBugz but we did not map these
directly to OnTime workflow items, used to determine OT status)&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (the OnTime Status could also be determined/mapped by using the open/closed/resolved date fields if desired)&lt;br&gt;&lt;br&gt;ixFixFor (release ID, we used the FixFor field to track the releases of our products/projects)&lt;br&gt;&lt;br&gt;&amp;nbsp;&lt;br&gt;&lt;br&gt;You will need to tweak the scripts to fit your needs. Not
a lot of documentation in the scripts but hopefully this helps. One
thing I will note.. When the description field is imported it loses all
of the formatting, making it a pain to read but the data is at least
there (o.output). We simply reformatted the more recent items as we
accessed them in OnTime.&lt;/blockquote&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/19374.aspx</feedburner:origLink></item><item><title>Running Internet Explorer 8 with OnTime Web and Portal 9.1.0 through 9.1.2</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/GuI-byhKAi0/19351.aspx</link><pubDate>Fri, 04 Sep 2009 00:52:20 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:19351</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/19351.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=19351</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q: I'm using OnTime Web or the Customer Portal and I've noticed a small bug in the interface, is there any way around that?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;A:&lt;/b&gt; If you've found something that you think might be a bug, feel free to email us in support at &lt;a href="mailto://support@axosoft.com"&gt;Support@Axosoft.com&lt;/a&gt; and we'll be sure to take a look at it, or you can always submit a bug in OnTime through our Customer Portal &lt;a href="http://community.axosoft.com/iframe.aspx?Tab=Defects"&gt;HERE&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;Small bugs do pop up in any application's interface depending on the browser you are using. For Internet Explorer 8 you can workaround almost all of these by clicking on the Compatibility Mode option next to the address bar.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/19351.aspx</feedburner:origLink></item><item><title>Setting up the OnTime iPhone application</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/mokaDSSvTAo/19036.aspx</link><pubDate>Mon, 20 Jul 2009 15:21:20 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:19036</guid><dc:creator>Tom Harder</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/19036.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=19036</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;&lt;font size="4"&gt;Q. How do I setup the new OnTime iPhone application to work with my existing OnTime database?&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;&lt;font size="4"&gt;A: &lt;/font&gt;&lt;/b&gt;For the iPhone client to function, it will require the URL path to your working 
 installation for OnTime Web. &amp;nbsp;There is no “OnTime 
 iPhone Server” piece to install--OnTime Web is the installation that needs 
 to be properly operating for the OnTime iPhone piece to work. &amp;nbsp;The 
 user logging into the client must also have an OnTime iPhone license activated 
 on his/her user account. &amp;nbsp;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To prepare your OnTime database for use with the OnTime iPhone client, 
 there are several settings you should be aware of:&lt;/p&gt;
&lt;h2&gt;iPhone Access for Users&lt;/h2&gt;

&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Individual users can be given access to the iPhone client. &amp;nbsp;This 
 can be done by going to “Tools&amp;gt;Manage Users” and editing a particular 
 user. &amp;nbsp;On the “Access Type” tab for that user, there 
 is an option called “Can use the iPhone client”. &amp;nbsp;This 
 checkbox must be selected in order for that user to log in using the iPhone 
 client. &amp;nbsp;All users may be given/removed access to 
 the OnTime iPhone client by selecting the “Modify user’s iPhone client 
 access settings” button on the toolbar of the “Manage Users” window.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Note that the OnTime iPhone user access option is always enabled for 
 the Administrator account. &amp;nbsp;In any version of OnTime, 
 the “admin” account can be used for OnTime iPhone access, even when an 
 iPhone license has not been purchased for a database (this is a free 
 license of the OnTime iPhone client for testing and experimentation). 
 &amp;nbsp;&lt;/p&gt;&lt;h2&gt;iPhone server will not work with Windows Authentication&lt;/h2&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If your OnTime team is currently using Windows Authentication to login to OnTime Web, the iPhone client will not be usable. Unless you're willing to switch your team and your OnTime Web over to using the standard OnTime Authentication, we recommend not trying to use the iPhone client at this time. &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; We suggest logging into our &lt;a href="http://community.axosoft.com/iframe.aspx?Tab=Features" target="_blank"&gt;Customer Portal&lt;/a&gt; and either creating a new Feature Request, or voting on an existing request, requesting this functionality to be considered in future versions of the iPhone client.&lt;br&gt;&lt;/p&gt;


&lt;h2&gt;iPhone Client Options&lt;/h2&gt;

&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; There are a few options available through “Tools&amp;gt;System Options&amp;gt;iPhone Client Options” 
 that control some of the iPhone functionality. &lt;br&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The first option, “Enable iPhone client access” controls whether the 
 OnTime iPhone clients will be allowed to work with this database at all. 
 &amp;nbsp;If you do not want the iPhone app to work with 
 your database, deselect this check box.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The following options are intended for security purposes of the OnTime iPhone 
 client. &amp;nbsp;If too many failed logins occur, the OnTime 
 database can lock out connections to particular IP addresses. &amp;nbsp;The 
 options are:&lt;/p&gt;



&lt;ul class="whs1"&gt;
&lt;ul&gt;
&lt;li class="p"&gt;
&lt;p&gt;How many minutes to lock out an IP address&lt;/p&gt;
&lt;/li&gt;
&lt;li class="p"&gt;
&lt;p&gt;How many failed attempts must occur for a lock to activate&lt;/p&gt;
&lt;/li&gt;
&lt;li class="p"&gt;
&lt;p&gt;Over how many minutes must the failed attempts occur 
 to initiate a lock&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;/ul&gt;
&lt;h2&gt;SSL Being Required&lt;/h2&gt;

&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Axosoft recommends that your web server uses an SSL certificate of your 
 choosing to secure communications with the iPhone client. &amp;nbsp;However, 
 some companies may choose not to use the SSL certificate, or they may 
 want to test the iPhone application before a certificate is ready. &amp;nbsp;Thus, 
 you may disable the iPhone’s requirement that an SSL certificate must 
 be applied. &amp;nbsp;This can be performed by editing the 
 OnTime Web server’s web.config file and adjusting the “RequireIPhoneSSL” 
 property (under the "appSettings" section) to “false” (this 
 value is true by default).&lt;/p&gt;

&lt;h2&gt;iPhone Client Configuration&lt;/h2&gt;

&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; First, you can &lt;a href="http://tr.im/ontimeiphone"&gt;click here to launch iTunes and download the iPhone client&lt;/a&gt;. &lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Once you've installed and launched the OnTime iPhone app, you'll see the following form which will need to be filled out before you can connect to your database:&lt;br&gt;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;img src="http://community.axosoft.com/photos/tom_harder/images/19037/original.aspx" border="0"&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Account Name: &lt;/b&gt;This is simply a label that you can create to distinguish this particular OnTime connection from any others you have configured in the OnTime iPhone application. This label is arbitrary and has no effect on your connection.&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; URL:&amp;nbsp; &lt;/b&gt;This is where you'll put the URL to your working OnTime Web installation. Make sure this URL is precisely the same as the one you use to access your OnTime Web account.&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Username: &lt;/b&gt;This is where you'll put your OnTime User account username.&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Password: &lt;/b&gt;This is where you'll put your OnTime User account password.&lt;/p&gt;





&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/19036.aspx</feedburner:origLink></item><item><title>IIS 7: Blank UI for OnTime Web after upgrade to 9.1</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/SZoEkUnWfls/19025.aspx</link><pubDate>Fri, 17 Jul 2009 19:58:21 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:19025</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/19025.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=19025</wfw:commentRss><description>&lt;p&gt;&lt;span style="font-weight:bold;"&gt;Q: I just upgraded to OnTime 9.1 and OnTime Web is loading with the treeview, main grid, item details and mini dashboard all blank, additionally I don’t see any menu options. How do I fix this?&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.axosoft.com/images/community/91_blank_ui/blankpanes.png" style="width:735px;height:483px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;"&gt;A: &lt;/span&gt;OnTime uses a third party component called component arts for most of these features and for IIS 7.0 web servers running OnTime 9.1 under an Application Pool using classic pipeline management this component will not load. You can resolve this by either configuring OnTime to use an existing Application Pool with integrated pipeline management or you can change the Application Pool that you are currently using over to integrated pipeline management.&lt;/p&gt;&lt;p style="font-weight:bold;"&gt;To switch to a another Application Pool:&lt;/p&gt;&lt;p style="font-weight:bold;"&gt;&lt;span style="font-weight:normal;"&gt;1) Launch Internet Information Services (IIS) Manager.&amp;nbsp; Select you OnTime website or virtual directory and choose the “Advanced Settings” option on the right hand side.&lt;/span&gt;&lt;/p&gt;&lt;p style="font-weight:bold;"&gt;&lt;span style="font-weight:normal;"&gt;2) Under “Advanced Settings” click on the name of the current Application Pool to open the “Select Application Pool dialog, use the picklist here to choose an Application Pool that uses Integrated Pipeline mode.&lt;/span&gt;&lt;/p&gt;&lt;p style="font-weight:bold;"&gt;&amp;nbsp;&lt;img src="http://www.axosoft.com/images/community/91_blank_ui/changeapppool.png" style="width:729px;height:699px;"&gt;&lt;/p&gt;&lt;p style="font-weight:bold;"&gt;To switch the pipeline mode of an existing Application Pool:&lt;/p&gt;&lt;p&gt;1) Launch Internet Information Services (IIS) Manager. Select Application Pools and double-click on application pool you would like to change.&lt;/p&gt;&lt;p&gt;2) Change Managed pipeline mode to Integrated and make certain that “Start application pool immediately" is still checked and click on OK.&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.axosoft.com/images/community/91_blank_ui/changepiplinemode.png"&gt;&amp;nbsp;&lt;img src="http://www.axosoft.com/images/community/91_blank_ui/changepipelinemode.png"&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/19025.aspx</feedburner:origLink></item><item><title>Upgrading OnTime to a Newer Version</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/iMgEomNK4uM/18928.aspx</link><pubDate>Wed, 01 Jul 2009 19:45:05 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18928</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18928.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18928</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q: How do I upgrade OnTime to the latest version?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;A:&lt;/b&gt; Upgrading OnTime to a newer version is actually a very
simple task. Conceptually, it simply involves upgrading your OnTime SQL
database to the new version and then updating all components that communicate
with the database to the same new version. From a practical standpoint it's not
much more complicated but we'll lay out some general guidelines as well as
touch on some frequently asked questions. &lt;/p&gt;

&lt;p&gt;&lt;b&gt;Upgrading the
database&lt;/b&gt;&lt;/p&gt;

&lt;ol&gt;&lt;li&gt;Download the new OnTime Windows Client from Axosoft.com&lt;/li&gt;&lt;li&gt;Backup your database&lt;/li&gt;&lt;li&gt;Install the new OnTime Windows Client and
connect it to the database you would like to upgrade&lt;/li&gt;&lt;li&gt;Once connected the Windows Client will inform
you that the database is of an older version than the client and will prompt
you to upgrade. After clicking yes, OnTime will walk you through an upgrade
wizard, follow all steps laid out in the wizard and enter the "Admin" username
and password when prompted.&lt;/li&gt;&lt;li&gt;If prompted for activation, click Reactivate Database
(make certain that this machine has an active internet connection, if this is
not possible, email &lt;a href="mailto:Support@Axosoft.com"&gt;Support@Axosoft.com&lt;/a&gt;
with your key requesting XML to manually activate your database).&lt;/li&gt;&lt;/ol&gt;









&lt;p&gt;&lt;b&gt;Upgrading the OnTime
Clients&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Once the database is upgraded you'll need to uninstall the
existing clients and reinstall the newer clients that work with the new
database. This includes:&lt;/p&gt;

&lt;ul class="unIndentedList"&gt;&lt;li&gt;
All OnTime Windows instances&lt;/li&gt;&lt;li&gt;
OnTime Web&lt;/li&gt;&lt;li&gt;
OnTime VS.net plugins&lt;/li&gt;&lt;li&gt;
Customer Portal&lt;/li&gt;&lt;li&gt;
OnTime Services&lt;/li&gt;&lt;li&gt;
OnTime Web Services (SDK)&lt;/li&gt;&lt;/ul&gt;











&lt;p&gt;The new installer for all of these are available individually and in the
OnTime Professional Suite located on the Axosoft.com downloads page &lt;a href="http://axosoft.com/products/downloads.aspx"&gt;HERE&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Frequently Asked
Questions&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Q: Does it matter
what order I upgrade the OnTime Clients?&lt;br&gt;
A: &lt;/b&gt;No, you can upgrade the clients in any order you like.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Q: How can I tell if
I'm eligible for upgrade?&lt;br&gt;
A:&lt;/b&gt; If you purchased maintenance on your key and it is still active, you may
upgrade without any further cost. For more information on this contact &lt;a href="mailto:Sales@Axosoft.com"&gt;Sales@Axosoft.com&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;"&gt;Q: Do I have to upgrade the database using the Windows Client?&lt;/span&gt;&lt;br style="font-weight:bold;"&gt;&lt;span style="font-weight:bold;"&gt;A:&lt;/span&gt; No, you can upgrade the database using the Web Configuration Utility for OnTime Web as well, simply load the Configuration Utility, click Manage Database and continue with the instructions above.&lt;br&gt;&lt;/p&gt;



&lt;p&gt;&lt;b&gt;Q: Are there any podcasts on upgrading?&lt;/b&gt;&lt;br&gt;&lt;span style="font-weight:bold;"&gt;A: &lt;/span&gt;Check out these Fear the
Bug podcasts that we've devoted to the subject.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2009/01/09/fear-the-bug-episode-57-tips-for-upgrading-to-ontime-2009.aspx"&gt;Tips
for Upgrading to OnTime 2009&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2008/01/29/fear-the-bug-episode-10-tips-for-upgrading-to-ontime-2008.aspx"&gt;Tips
for Upgrading to OnTime 2008&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.axosoft.com/videos/ot_2008_installation/ot_2008_installation.html"&gt;Installation
Video Tutorial (Jump to 2 minute section on upgrading)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2009/05/05/fear-the-bug-episode-73-ontime-silent-installation.aspx"&gt;OnTime
Silent Installation&lt;/a&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18928.aspx</feedburner:origLink></item><item><title>Burndown Estimated Completion Date Says Never</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/HUlYCMzviJg/18853.aspx</link><pubDate>Mon, 15 Jun 2009 16:57:47 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18853</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18853.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18853</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q: My burndown always says that the estimated completion date is never, did I set something up wrong?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A: &lt;/b&gt;Whenever OnTime's Burndown chart is unable to calculate a downward trend from your releases start date it will tell you that the estimated completion date is never. &lt;/p&gt;&lt;p&gt;The important part thing to remember here is that the burndown will calculate the downward trend from the start date of the release. This means that if you start a release today but don't add any defects with remaining estimates on the same day, your burndown will never be able to estimate a downward trend. You can see here in this screenshot that I've started my release on 4/9/2009 but haven't added any work until 4/12/2009.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/burncompdate/burncompdate1.png" width="270" height="307"&gt;&lt;br&gt;I can solve this pretty easily by simply editing the release to start on the day when I added the work, in this case I'll change the start date to 4/12/2009&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/burncompdate/burncompdate2.png" width="271" height="306"&gt;&lt;br&gt;To edit the release start date, I'll highlight my release and clicking on edit, from there I'll simply change the start date.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/burncompdate/burncompdate3.png"&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18853.aspx</feedburner:origLink></item><item><title>Finding the releases tab</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/6qDzo02NLKA/18852.aspx</link><pubDate>Mon, 15 Jun 2009 16:38:38 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18852</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18852.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18852</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q: My users can't find the releases tab, where do I give them access to this?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A: &lt;/b&gt;There are two reasons why your users may not see the releases tab in the treeview pane, they may not have access, or they may simply not have it turned on in their view.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/findreleasestab/findreleasestab1"&gt;&lt;img src="http://www.axosoft.com/images/community/findreleasestab/findreleasestab1"&gt;&lt;img src="http://www.axosoft.com/images/community/findreleasestab/findreleasestab1.png" width="544" height="363"&gt;&lt;br&gt;To make certain that our users have access to the releases tab, we'll edit their security role by going to Tools&amp;gt;Manage&amp;gt;Security Roles and choosing their role. From here we'll scroll all the way down and look under Global Privileges&amp;gt;Administration&amp;gt;Access Releases Tree.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/findreleasestab/findreleasestab2.png" width="260" height="559"&gt;&lt;br&gt;Once we're certain that this user has privileges to the Releases Tree, we'll have them turn on the tab in their Treeview pane in OnTime&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/findreleasestab/findreleasestab31.png" width="236" height="121"&gt;&amp;nbsp;&lt;img src="http://www.axosoft.com/images/community/findreleasestab/findreleasestab32.png" width="278" height="91"&gt;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18852.aspx</feedburner:origLink></item><item><title>Which OnTime client to deploy</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/ErXE18ZgQD4/18851.aspx</link><pubDate>Mon, 15 Jun 2009 16:27:02 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18851</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18851.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18851</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q: I'm planning my deployment of OnTime and I'm trying to decide between the Windows and Web Clients for my end users. What are the major differences, what should I consider? Where does the OnTime Remote Server play into all of this?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;A:&lt;/b&gt; Both the Windows and the Web Client have the same core functionality and will allow users to perform the same tasks (with only a few small exceptions, more on that later), but there are things to consider when deciding which client you should use. &lt;/p&gt;&lt;p&gt;&lt;u&gt;&lt;b&gt;The OnTime Windows Client:&lt;/b&gt;&lt;/u&gt;&lt;br&gt;The Windows Client offers the most options to OnTime users. Its interface is very simple and easy to use, it runs fast on your PC and you won't need to worry about setting up and maintaining a web server for it. Keep in mind however that it was designed to access your SQL database in a LAN environment. If you have a distributed team located in different parts of the country or even different parts of the world, you may notice that pulling SQL data from Florida to your desktop in California over VPN is not quite as quick as you'd like it to be. You'll also want to take into account administration for a large user base. If you have a couple hundred machines to install OnTime to, this can be a major consideration, a good place to start would be &lt;a href="http://community.axosoft.com/forums/thread/18427.aspx"&gt;THIS &lt;/a&gt;Faq post and &lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2009/05/05/fear-the-bug-episode-73-ontime-silent-installation.aspx"&gt;THIS &lt;/a&gt;podcast, but you could also look at deploying the OnTime Web Client.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;The OnTime Web Client:&lt;/b&gt;&lt;/u&gt;&lt;br&gt;The Web Client has almost as many features as OnTime Windows and runs in a browser. The interface is very similar to the Windows Client, it runs fast on most modern browsers and is ideal for situations where bandwidth from the server to the end-user is at a premium. We usually recommend installing OnTime to a webserver on the same gigabit LAN as the SQL server but this is not required. Since the end user doesn't need a direct connection to the SQL server, the question of SQL security never comes up. OnTime Web is also much easier to distribute to large teams since you only need to install it to one Web Server rather than multiple workstations. The place where OnTime Web truly shines however is using it for distributed teams as OnTime Web uses much less bandwidth between the Server environment and the End User environment than the Windows Client.&lt;br&gt;&lt;br&gt;Differences between the two:&lt;br&gt;There are a few differences between the two clients in terms of what's available. OnTime Web Users will not be able to use the Source Control Management plugins and will also be unable to create custom reports.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;The Remote Server:&lt;/b&gt;&lt;/u&gt;&lt;br&gt;So let's say you really like the Windows Client but you've been relocated out of state and your IT department doesn't like the thought of allowing the SQL server to be exposed to the internet. You can use VPN, but you may not be a fan of the performance you'll see out of that as your still using a SQL connection designed for a LAN environment. In this situation we recommend the Remote Server. The Remote Server is a web interface that OnTime Windows can use to relay data to and from the SQL server without actually connecting to the SQL server itself. The Remote Server will compress the data before transport making a more efficient use of your bandwidth.The Remote Server is handy for enterprise environments where the SQL server cannot be accessed by the end-user's PC at all.One thing to keep in mind is that the Remote Server will not allow you to create custom reports as the report designer requires a separate SQL connection of its own, you'll also want to remember that even though the Remote Server compresses data before sending it to the client, the Web Client is still most effective when bandwidth to the end user is a concern.&lt;br&gt;&amp;nbsp;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18851.aspx</feedburner:origLink></item><item><title>OnTime tools that require the Administrator security role</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/HIYFVdbR8t0/18740.aspx</link><pubDate>Fri, 29 May 2009 18:17:30 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18740</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18740.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18740</wfw:commentRss><description>&lt;b&gt;Q: I created a security role that has every privilege but I still can't perform some tasks unless logged in with the 'Administrator' security role. Is there a comprehensive list of tasks I'll need this security role for?&lt;/b&gt;&lt;br&gt;&lt;b&gt;&lt;br&gt;A: &lt;/b&gt;While most tasks that can be performed in OnTime are configurable under a security role, there a few that are tied directly to the 'Administrator' role. These are:&lt;br&gt;Managing Security Roles - This is used for adding or removing privileges from a security role, applying security roles is tied to the "Edit User" privelege that you can assign to other roles. This option is located under Tools&amp;gt;Manage&amp;gt;Security Roles&lt;br&gt;&lt;ul&gt;&lt;li&gt;The Lock Manager - This is used for clearing item locks. This tool is located under Help&amp;gt;Lock Manager&lt;/li&gt;&lt;li&gt;The Exception Viewer - This is for viewing any exceptions that might occur within OnTime. This tool is located under Help&amp;gt;Exception Viewer&lt;/li&gt;&lt;li&gt;The OnTime Metrics tool - This is used for viewing database information about OnTime and performing some database maintenance. For a full rundown of the Metrics tool, check out &lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2008/09/03/fear-the-bug-episode-40-optimizing-ontime-performance-part-3.aspx"&gt;THIS &lt;/a&gt;podcast. This tool is located under Help&amp;gt;OnTime Metrics.&lt;/li&gt;&lt;li&gt;On a trial database, the Administrator security role will also have the option to convert OnTime to Express licensing for testing purposes. If you already have a purchased key, this option is not available.&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18740.aspx</feedburner:origLink></item><item><title>SQL Server Authentication Vs Integrated Windows Authentication for SQL</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/jcN0zN7X8_A/18739.aspx</link><pubDate>Fri, 29 May 2009 17:56:01 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18739</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18739.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18739</wfw:commentRss><description>&lt;b&gt;Q: OnTime allows me to use two methods to authenticate to its SQL backend, Windows Integrated Authentication or SQL Server Authentication. Which does OnTime recommend?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A: &lt;/b&gt;Before we talk about which option we recommend and why, let's talk about what kind of access we'll need. OnTime requires data_reader and data_writer access to the OnTime database at a minimum for a client to work, dbo access if the end user will be creating custom fields or custom reports, and various other privileges if the end-user will be using OnTime for backing up the database, restoring it to a previous version, creating the database in the first place or any of several database administration tasks that can be done through OnTime. &lt;br&gt;&lt;br&gt;That being said, while we have no official recommendation, we typically try to lean folks to using a a single named SQL user rather than Integrated Authentication as most administrators would not want even their lowest level OnTime user to have data_reader and data_writer access to the OnTime database.&lt;br&gt;&lt;br&gt;A good example of this would be an OnTime user using Integrated SQL authentication may be able to download SQL management studio or some other application to connect to the SQL database itself. This user would be able to authenticate (using his Integrated Authentication) to the database and manipulate data directly.&lt;br&gt;&lt;br&gt;Instead we usually recommend using a named SQL user, this way when OnTime is setup, an authorized user (such as the company's IT guy) can install OnTime, set up the database and connect to OnTime. Once that original connection is made, OnTime will store that info encrypted in the OnTime.Config file stored in the user's documents folder (usually "C:\Documents and Settings\&amp;lt;user&amp;gt;\Local Settings\Application Data\Axosoft\OnTime Windows\9.0"). With the connection info stored in the OnTime.Config file the user has no way of learning the password to the SQL database. Additionally, if we need to distribute OnTime to a wide user base you can configure one OnTime client to the database, and then distribute the OnTime.Config file to our users.&lt;br&gt;&lt;br&gt;Another option would be to use the OnTime Remote server. For more info on the remote server check out &lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2008/07/22/fear-the-bug-episode-35-remote-server.aspx"&gt;THIS &lt;/a&gt;podcast.&lt;br&gt;&lt;br&gt;It should also be noted that some OnTime clients will require named user authentication to SQL, such as the OnTime services, the OnTime Web Client, Customer Portal, and the OnTime SDK. This is because these application typically tend to run under a system identity. A good example would be OnTime Web, which typically runs in an un-modified app-pool will identify itself as Network Service, you'll usually want to avoid giving system identities integrated access to SQL.&lt;br&gt;&lt;br&gt;To conclude, we generally recommend using SQL Server Authentication for OnTime's database connection. Keep in mind that this is only a recommendation however, we provide the option so that you can use whichever method works best for your organization.&lt;br&gt;[Please visit the site to access the poll]</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18739.aspx</feedburner:origLink></item><item><title>Top Faq and Forum Posts</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/zTjX5mwLt_o/18724.aspx</link><pubDate>Wed, 27 May 2009 18:42:07 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18724</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18724.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18724</wfw:commentRss><description>&lt;p&gt;Below are some Faq and Forum posts as well as popular podcasts that we thought deserved to be permanently linked in a sticky post. Come back to this post on a regular basis as it will be updated on a regular basis.&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;text-decoration:underline;"&gt;FAQ Posts&lt;/span&gt; &lt;br&gt;&lt;/p&gt;&lt;p style="margin-left:40px;"&gt;&lt;a href="http://community.axosoft.com/forums/thread/18575.aspx"&gt;&lt;span class="Apple-style-span" style="border-collapse:separate;font-family:Arial;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:normal;orphans:2;text-indent:0px;text-transform:none;white-space:normal;widows:2;word-spacing:0px;"&gt;&lt;span class="Apple-style-span" style="font-family:Tahoma;font-size:11px;text-align:left;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://community.axosoft.com/forums/thread/18575.aspx"&gt;Using Windows Authenication for your OnTime Web Users&lt;/a&gt;&lt;span style="font-weight:bold;font-style:italic;"&gt;&lt;/span&gt;&lt;a href="http://community.axosoft.com/forums/thread/18575.aspx"&gt;&lt;br&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-left:40px;"&gt;&lt;a href="http://community.axosoft.com/forums/thread/18636.aspx"&gt;Configuring the Web.Config for the OnTimeSDK (Web Services)&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-left:40px;"&gt;&lt;a href="http://community.axosoft.com/forums/post/12448.aspx"&gt;Running OnTime Web in a 64-bit environment&lt;/a&gt;&lt;/p&gt;&lt;p style="margin-left:40px;"&gt;&lt;a href="http://community.axosoft.com/forums/thread/18427.aspx"&gt;Performing a silent installation of OnTime Windows&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="text-decoration:underline;font-weight:bold;"&gt;Podcast Playlists &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://community.axosoft.com/blogs/tomh/archive/2009/04/01/fear-the-bug-playlist-scrum-features-in-ontime-2009.aspx"&gt;Scrum Features in OnTime 2009&lt;br&gt;&lt;/a&gt;This is a playlist with several podcasts explaining key Scrum-related features in OnTime 2009 starting with our Scrum in 10 minutes video.&lt;a href="http://community.axosoft.com/blogs/tomh/archive/2009/04/01/fear-the-bug-playlist-scrum-features-in-ontime-2009.aspx"&gt;&lt;br&gt;&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://community.axosoft.com/blogs/tomh/archive/2009/03/12/fear-the-bug-playlist-extracting-data-from-ontime.aspx"&gt;Extracting Data From OnTime&lt;/a&gt;&lt;br&gt; This playlist covers the two videos on importing and exporting data as a CSV format (which can be read in Excel) as well as reporting and the user/project dashboard.&lt;/p&gt;&lt;p&gt;&lt;a href="http://community.axosoft.com/blogs/tomh/archive/2009/02/27/fear-the-bug-playlist-configuring-and-using-email-in-ontime.aspx"&gt;Configuring and Using Email&lt;/a&gt;&lt;br&gt;This playlist covers almost anything you'll want to know about email in OnTime, definately a must watch.&lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18724.aspx</feedburner:origLink></item><item><title>OnTime Web redirecting to Registration.aspx</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/KPNsO7Mf1oM/18706.aspx</link><pubDate>Fri, 22 May 2009 21:10:41 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18706</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18706.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18706</wfw:commentRss><description>&lt;b&gt;Q: I just installed OnTime Web Edition, but whenever I browse there I'm redirected to Registration.aspx, am I missing a setting?&lt;/b&gt;&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/regaspx/regaspx.jpg" style="width:702px;height:300px;"&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A:&lt;/b&gt; OnTime will redirect you to Registration.Aspx for one of two reasons.&lt;br&gt;&lt;ul&gt;&lt;li&gt;OnTime cannot find the OnTime.Config file in the web directory&lt;/li&gt;&lt;li&gt;OnTime cannot connect to it's SQL database&lt;/li&gt;&lt;/ul&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;To resolve this we'll open up the OnTime Web Configuration Utility on the Web Server, located under Start Menu&amp;gt;All Programs&amp;gt;Axosoft&amp;gt;OnTime 2009&amp;gt;OnTime Web Configuration&amp;gt;OnTime 2009 Web Configuration.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/regaspx/regaspxstart.jpg" style="width:697px;height:168px;"&gt;&lt;br&gt;&lt;br&gt;From here we'll make certain that OnTime is looking in the right location for it's OnTime.Config file, for OnTime Web this should be the actual file path of the website itself. This would most commonly be "&lt;i&gt;c:\inetpub\wwwroot\\OnTime2009Web&lt;/i&gt;" for a default installation. Once we're certain that we're pointing to the right location for the OnTime.config file, we'll click on Load Settings.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/regaspx/regaspxconfigutil.jpg"&gt;&lt;br&gt;&lt;br&gt;The next thing we'll want to do is make certain that OnTime Web has the correct credentials to connect to it's SQL database. To do this, we'll click on Manage Database (Note: you'll need to click "Load Settings" before this button will be available) From here you'll provide the location of the SQL Server, the credentials you'll be providing to the SQL Server, and the actual name of the database (note: you can create a new OnTime database from here as well, however I usually recommend doing that through the OnTime Windows Client). Once all the information is provided and we've tested the connection, we'll click on "Open Database" and then "Save Settings" in the Web Configuration Utility.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/regaspx/regaspxmandb.jpg"&gt;&lt;br&gt;&lt;br&gt;Once those two steps are complete, reset IIS, clear your cache and browse to OnTime Web again.&lt;br&gt;&lt;br&gt;If you have any questions over anything covered above, feel free to email Axosoft Support at &lt;a href="mailto://support@axosoft.com"&gt;Support@Axosoft.com&lt;/a&gt;.&lt;br&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18706.aspx</feedburner:origLink></item><item><title>The OnTime Lock Manager</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/EhxUudZSATk/18705.aspx</link><pubDate>Fri, 22 May 2009 21:01:31 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18705</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18705.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18705</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q: I'm attempting to edit an item in OnTime but I'm receiving a message stating that the item is locked by another user, is there any way that I can clear that lock?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A:&lt;/b&gt; When a user edits an item in OnTime, the item is locked until that user is finished with his/her edit. While these locks generally clear themselves when the edit dialog is closed and will eventually time out if for some reason it didn't, as a user with the administrator security role, we can clear these locks manually. To do this we'll go to Help&amp;gt;Lock Manager&lt;br&gt;&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/lockmanager/lockmanager.png" width="374" height="392"&gt;&lt;br&gt;From the lock manager we can view all the active locks within OnTime and kill any lock simply by highlighting it and clicking the red X in the top left corner.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/lockmanager/lockmanagergui.png" width="548" height="335"&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18705.aspx</feedburner:origLink></item><item><title>Enter key is double spacing/new paragraph in large text fields</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/_akfuNDegfY/18704.aspx</link><pubDate>Fri, 22 May 2009 20:53:27 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18704</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18704.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18704</wfw:commentRss><description>&lt;span style="font-weight:bold;"&gt;Q: When I'm editing a large text field and I hit the enter key, OnTime skips two lines. Is there any way to change this?&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;span style="font-weight:bold;"&gt;A:&lt;/span&gt; By Default, OnTime uses HTML to store rich text and the html it uses for a new line (from the [Enter] key) is a paragraph tag &lt;span style="font-style:italic;"&gt;&amp;lt;p/&amp;gt;&lt;/span&gt;. We can change this behavior for the enter key under Tools&amp;gt;System Options.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/newline/newline.png" width="511" height="536"&gt;&lt;br&gt;&lt;br&gt;By changing this setting from &lt;span style="font-style:italic;"&gt;&amp;lt;p/&amp;gt;&lt;/span&gt; to &lt;span style="font-style:italic;"&gt;&amp;lt;br/&amp;gt;&lt;/span&gt; we'll get a simple line break instead of a new paragraph. If you don't want to change this setting but still need a new line instead of a new paragraph, you can simply hold down the shift-key and hit enter.&lt;br&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18704.aspx</feedburner:origLink></item><item><title>The OnTime Email Queue</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/4cXGJJLiRSs/18702.aspx</link><pubDate>Fri, 22 May 2009 19:40:05 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18702</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18702.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18702</wfw:commentRss><description>&lt;b&gt;Q: What is the Email Queue? Do I need to use it?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A:&lt;/b&gt; OnTime Professional users can use the OnTime Email Queue which enables OnTime to send all emails from a central location. This not only enables OnTime to use alerts, but it can also make life much simpler for your network admin.&lt;br&gt;&lt;u&gt;&lt;b&gt;&lt;br&gt;Outgoing Email without the Email Queue.&lt;/b&gt;&lt;/u&gt;&lt;br&gt;If the Email Queue is not enabled in OnTime (under Tools&amp;gt;Manage&amp;gt;Email Notifications&amp;gt;Use Email Queue) then your OnTime client will always connect to the SMTP server to send any outgoing emails. This can become a problem if you have a large number of OnTime Windows clients as each client will establish it's own connection to the SMTP server and can quickly overrun it.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;Outgoing Email with the Email Queue.&lt;/b&gt;&lt;/u&gt;&lt;br&gt;When the Email Queue is enabled, email will be stored in a special table in the OnTime database, the OnTime EmailQueue Service will scan this table and send any emails it finds to the SMTP server, this gives us several distinct advantages:&lt;br&gt;&lt;ul&gt;&lt;li&gt;Email can be attempted multiple times. If the SMTP server is being restarted or is otherwise unavailable the email queue can attempt to send multiple times, the number of attempts can be set under Tools&amp;gt;Manage&amp;gt;Email Notifications&amp;gt;Maximum number of attempts to send an email. If all attempts fail, OnTime will store the email until the OnTime administrator resets the attempt count to resend it or deletes it from the email queue.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Single connection between the SMTP server and OnTime. Since all outgoing email will be going through the email queue, you'll be able to configure your firewalls to limit access to the SMTP server.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Sending Alert Emails. For a full run-down on the difference between alerts and notifications, check out &lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2008/12/17/fear-the-bug-episode-55-notifications-and-alerts.aspx"&gt;THIS &lt;/a&gt;podcast, but for our purposes here, know that alerts allow us to create automatic emails based on more advanced logic than standard notifications. Sending alert emails will require two services however, the first one is the OnTime Alert Service, installed at the same time as the Email Queue Service. The Alert Service scans the database looking for conditions that trigger alerts, it then creates emails and places them in the Email Queue. Once the emails are in the Queue, the Email Queue Service will need to be running in order to forward them along to the SMTP server.&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;Administrating the OnTime Email Queue&lt;/b&gt;&lt;/u&gt;&lt;br&gt;You can check the OnTime Email Queue for failed email by using the OnTime Metrics tool. You can also turn off the Email Queue service and simply use this function to test email without actually sending email (this is handy for test environments).&lt;br&gt;&lt;ul&gt;&lt;li&gt;In the OnTime Windows, logged in with the Administrator Security Role, click on Help&amp;gt;OnTime Metrics. Enter in your SQL credentials and load the OnTime Metrics Tool.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Click on Email Queue, from here you can multi-select emails and reset the attempt count to resend or simply delete them if you'd rather they not be sent.&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;You can also clear the entire Email Queue at once by going to Cleanup from the Metrics tool and choosing Email Queue, this will remove all emails that have reached the max number of send attempts.&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18702.aspx</feedburner:origLink></item><item><title>SQL log file growth affecting OnTime performance</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/P4BwHd-x5LY/18637.aspx</link><pubDate>Fri, 15 May 2009 00:10:55 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18637</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18637.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18637</wfw:commentRss><description>&lt;b&gt;Q: OnTime is running slow, my server specs are above the recommend specs and I've watched all of the Fear The Bug Podcasts on performance located &lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2008/08/18/fear-the-bug-episode-38-optimizing-ontime-performance-part-1.aspx"&gt;HERE&lt;/a&gt;, &lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2008/08/28/fear-the-bug-episode-39-optimizing-ontime-performance-part-2.aspx"&gt;HERE &lt;/a&gt;and &lt;a href="http://community.axosoft.com/blogs/fearthebug/archive/2008/09/03/fear-the-bug-episode-40-optimizing-ontime-performance-part-3.aspx"&gt;HERE&lt;/a&gt;, is there anything else that I should look at?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A:&lt;/b&gt; In some instances where the database is not managed properly the log file can grow so large that it affects the performance of OnTime, in some extreme cases we've even seen this cause timeouts. This can be resolved by simply shrinking the Log File in SQL. While this is an operation normally performed by your Database Administrator and is usually even scripted to be performed automatically, we do offer an option for shrinking the log file through the OnTime Metrics Tool. &lt;br&gt;&lt;br&gt;&lt;ul&gt;&lt;li&gt;In the OnTime Windows, logged in with the Administrator Security Role, click on Help&amp;gt;OnTime Metrics. Enter in your SQL credentials and load the OnTime Metrics Tool.&lt;/li&gt;&lt;li&gt;Click on the Cleanup Menu&amp;gt;SQL&amp;gt;Shrink Log File.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Consult your Database Administrator before shrinking the log file as SQL Administration is a complex subject and we've just scratched the surface here.&lt;/p&gt;&lt;p&gt;Here's a link that covers the subject a little bit more in-depth: &lt;a href="http://support.microsoft.com/kb/873235%20"&gt;http://support.microsoft.com/kb/873235&lt;/a&gt;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18637.aspx</feedburner:origLink></item><item><title>Configuring the Web.Config file for the OnTimeSDK (WebServices)</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/vDCviyYepBM/18636.aspx</link><pubDate>Fri, 15 May 2009 00:00:10 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18636</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18636.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18636</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q: I'm just getting started with the OnTime SDK but none of my code seems to work. Did I miss something when installing the SDK?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A:&lt;/b&gt; Once the OnTime SDK is installed to your webserver you'll need to configure it. If we open up the Web.Config file in SDK's filepath we'll find a tag called appSettings, you'll need to configure some settings in here before we can start writing code. The section in your Web.Config file should look something like this.&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/sdkwebconfigfaq/webconfig.jpg" style="width:686px;height:307px;"&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;span style="font-weight:bold;"&gt;The first thing we'll need to set up here will be the connection string that the SDK will use to talk to the OnTime database. This should be old hat for most developers but a good example of this string would be:&lt;/span&gt;&lt;br&gt;"server=myserver\sqlexpress;database=OnTimeDB;uid=sa;pwd=SuperPwd;"&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/sdkwebconfigfaq/webconfigconstr.jpg" style="width:698px;height:305px;"&gt;&lt;br&gt;&lt;br&gt;&lt;span style="font-weight:bold;"&gt;The second thing we'll work with is the SecurityToken, this is a GUID that the SDK will use for security so that nobody else builds code to interact with the OnTime SDK. For info on generating a GUID check out &lt;a href="http://msdn.microsoft.com/en-us/library/ms241442.aspx"&gt;THIS &lt;/a&gt;MSDN entry.&lt;/span&gt;&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/sdkwebconfigfaq/webconfigsectok.jpg" style="width:698px;height:307px;"&gt;&lt;br&gt;&lt;br&gt;&lt;span style="font-weight:bold;"&gt;Once we put that GUID in the Web.Config, we can use it in our code to let the SDK know that we have rights to call this webservice. In the screenshot below I'm simply adding a project via the SDK using that GUID.&lt;/span&gt;&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/sdkwebconfigfaq/webconfigcode.jpg" style="width:696px;height:135px;"&gt;&lt;br&gt;&lt;br&gt;&lt;span style="font-weight:bold;"&gt;The last bit that we'll configure is for the Web Services user, any changes made by the SDK will show up as the user defined here, by default this is set to User ID 1 which is the Admin user.&lt;/span&gt;&lt;br&gt;&lt;img src="http://www.axosoft.com/images/community/sdkwebconfigfaq/webconfiguserid.jpg" style="width:699px;height:306px;"&gt; &lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18636.aspx</feedburner:origLink></item><item><title>MicroSoft Visual SourceSafe</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/6tc1H3V1ntE/18633.aspx</link><pubDate>Thu, 14 May 2009 17:14:06 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18633</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18633.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18633</wfw:commentRss><description>&lt;b&gt;Q: I'm trying to configure the Microsoft Visual Sourcesafe plugin for OnTime, do you have any specific instructions for this?&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;A: &lt;/b&gt;You betcha! Here's what you'll need.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;Visual SourceSafe Checklist:&lt;/b&gt;&lt;/u&gt;&lt;br&gt;&lt;ul&gt;&lt;li&gt;A working Vault server&lt;/li&gt;&lt;li&gt;OnTime installed client-side&lt;/li&gt;&lt;li&gt;The command-line SourceSafe client for windows&lt;/li&gt;&lt;li&gt;The GUI SourceSafe client for windows&lt;/li&gt;&lt;li&gt;An active connection between the SourceSafe Database and your SourceSafe Client&lt;/li&gt;&lt;li&gt;A local folder that you want to be your working directory&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;Your OnTime Administrator is going to need to change a couple things.&lt;/b&gt;&lt;/u&gt;&lt;br&gt;1) Enable your SCM Files under Tools&amp;gt;System Options&amp;gt;Details Tab Settings.&lt;br&gt;2) Ensure that your users have the appropriate privileges to use SCM for each Item Type. *Note, SCM is not available for incidents*&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;Here the steps you'll need to follow&lt;/b&gt;&lt;/u&gt;&lt;br&gt;1) Open up the SourceSafe Visual Client, click on file&amp;gt;Set Working Folder, Choose an appropriate working folder. Also be certain to checkin and checkout the SourceSafe folder you are working with at least once through SourceSafe before continuing.&lt;br&gt;2) From OnTime highlight a project in OnTime and then click on the Projects menu, then go to Manage Source Control.&lt;br&gt;3) Fill out all fields under SourceSafe Connection Information.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a. SourceSafe Command-Line Client: The location of ss.exe&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; b. User Name: Your SourceSafe Username&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; c. Password: Your SourceSafe Password&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; d. SourceSafe GUI Client: The location of ssexp.exe&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; e. Location of srcsafe.ini: The location of your SourceSafe Database&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; f. Timeout = Default is 15 seconds which should be good unless you have network issues or a huge repository, then you can increase this.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; g. Enable Logging = You'll usually turn this on, it's helpful if you run into problems. The log is kept in the same location as your OnTime.config.&lt;br&gt;4) Set your Default Folder to a Project folder and not the Root of the Database.&lt;br&gt;&lt;br&gt;&lt;u&gt;&lt;b&gt;One last thing&lt;/b&gt;&lt;/u&gt;&lt;br&gt;SCM settings work at the project level and inherit downward, this is especially helpful if you have a giant repository, you can set up SCM settings for one project to only use one SourceSafe Project per OnTime Project, this way you are not loading your entire repository every time you need to check in a file.&lt;br&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18633.aspx</feedburner:origLink></item><item><title>Storing Attachments in the database or Storing the path.</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/dYfn7tsoFV0/18609.aspx</link><pubDate>Tue, 12 May 2009 23:26:54 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18609</guid><dc:creator>Sean McHugh</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18609.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18609</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;Q. I've seen that there are two methods for storing attachments in OnTime, which one should I use?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-weight:bold;"&gt;A.&lt;/span&gt; By Default your users can choose their own storage type when creating
attachments, but as the OnTime Administrator you can choose to disable
one type or the other. The setting for this is located under
Tools&amp;gt;System
Options&amp;gt;Attachments. There are Pros and Cons to consider when deciding whether to store an attachment in the OnTime database or simply store the path of the file.&lt;/p&gt;&lt;u&gt;&lt;b&gt;Storing Files in the OnTime database. When you attach a file to an item or project in OnTime, you can store the file directly in the OnTime database a couple advantages to this might be...&lt;/b&gt;&lt;/u&gt;&lt;ul&gt;&lt;li&gt;Easier access to files - No need to grant access to file shares to individual users or groups, if the user has rights to view the attachments in OnTime they can get to the files.&lt;/li&gt;&lt;li&gt;Easier backup - Files are backed up when the OnTime database is backed up.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br&gt;A couple things to keep in mind... &lt;br&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;When you are editing an item that's stored in the database, you'll need to save it locally and then re-upload the file to OnTime.&lt;/li&gt;&lt;li&gt;If you'll be storing especially large files in OnTime such as uncompressed photoshop images or video files, this can cause your OnTime database to balloon in size and can affect performance.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;b&gt;&lt;u&gt;You can also store a file location in OnTime, a couple advantages to this approach are.&lt;/u&gt;&lt;/b&gt;&lt;ul&gt;&lt;li&gt;More effective for large files - Keeps your database trim and there is no need to upload large files.&lt;/li&gt;&lt;li&gt;No need to save the file locally before uploading to OnTime.&lt;/li&gt;&lt;li&gt;Another layer of security - If a user has access to the releases tab of an item, they'll be able to see all of attachments, but if they don't have access to the file's path, they won't be able to open or view it.&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;A few things to keep in mind...&lt;ul&gt;&lt;li&gt;When attaching a file to OnTime as a path, the file is not stored in the database, so backing up the file will need to be done separately.&lt;br&gt;&lt;/li&gt;&lt;li&gt;Users accessing files that are stored as a path will not only need access in OnTime to view the attachment but also access to the network path.&lt;/li&gt;&lt;li&gt;Attachments that are stored in this matter will need to be attached as the full UNC path, in other words OnTime can't use c:\files\image.jpg as this path wouldn't be available to other users, you would need to store the path as a full UNC path such as \\fileserver\files\image.jpg&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18609.aspx</feedburner:origLink></item><item><title>Using Windows Authentication for your OnTime Web Users</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/uKBn6pbvNFg/18575.aspx</link><pubDate>Wed, 06 May 2009 21:56:42 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18575</guid><dc:creator>Tom Harder</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/18575.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18575</wfw:commentRss><description>
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You may already know that &lt;b&gt;you can configure your OnTime Users to be automatically logged into OnTime using their current Windows domain\profile credentials&lt;/b&gt;.&amp;nbsp; This allows them to simply launch the OnTime Windows application and be&lt;b&gt; logged in automatically&lt;/b&gt;, without needing to supply any kind of username/password credentials. &lt;/p&gt;

&lt;p&gt;When using the OnTime Windows client there are no additonal steps needed beyond configuring the User accounts to use Windows Authentication. But in order to use Windows Authentication within the OnTime Web client,&lt;b&gt;&amp;nbsp; you(or your web server administrator) must complete the following steps&lt;/b&gt;:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;span style="font-weight:bold;"&gt;&lt;font size="3"&gt;For IIS 5.1 or 6.0&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt; &lt;br&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;&lt;font size="3"&gt;1) First, on the web server where the OnTime Web is installed,&lt;span style="font-weight:bold;"&gt; launch IIS&lt;/span&gt;. &lt;/font&gt;&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;&lt;font size="3"&gt;2) Then, &lt;span style="font-weight:bold;"&gt;right-click the OnTime Web virtual directory&lt;/span&gt; in IIS and open the '&lt;span style="font-weight:bold;"&gt;Properties&lt;/span&gt;'.&lt;/font&gt;&lt;/p&gt;
&lt;p style="margin-left:40px;"&gt;&lt;font size="3"&gt;3) In the OnTime Web's properties, select the '&lt;span style="font-weight:bold;"&gt;Directory Security&lt;/span&gt;' tab, and click the &lt;span style="font-weight:bold;"&gt;topmost 'Edit' button under the 'Anonymous access and authentication control' section&lt;/span&gt;.&lt;/font&gt;&lt;/p&gt;
&lt;p style="margin-left:40px;"&gt;&lt;font size="3"&gt;4) On the &lt;span style="font-weight:bold;"&gt;'Authentication Methods' screen&lt;/span&gt;, you'll need to &lt;span style="font-weight:bold;"&gt;uncheck 'Anonymous Access' &lt;/span&gt;and&lt;span style="font-weight:bold;"&gt; check the option labeled 'Integrated Windows Authentication'&lt;/span&gt;.&lt;/font&gt;&lt;/p&gt;
&lt;p style="margin-left:40px;"&gt;&lt;font size="3"&gt;5) Save your changes and &lt;span style="font-weight:bold;"&gt;reset IIS&lt;/span&gt;. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;span style="font-weight:bold;"&gt;For IIS 7&lt;/span&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;
&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;1) First, on the web server where the OnTime Web is installed,&lt;span style="font-weight:bold;"&gt; launch IIS&lt;/span&gt;. &lt;/font&gt;&lt;/div&gt;&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/div&gt;&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;2) Then, &lt;span style="font-weight:bold;"&gt;single-select the OnTime Web virtual directory&lt;/span&gt; on the left hand side of the screen. &lt;/font&gt;&lt;/div&gt;&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/div&gt;&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;3) &lt;span style="font-weight:bold;"&gt;Double-click the 'Authentication' icon &lt;/span&gt;on the right hand pane.&lt;/font&gt;&lt;/div&gt;&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/div&gt;&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;4) From the 'Authentication'&amp;nbsp; screen which appears, simply&lt;span style="font-weight:bold;"&gt; disable the 'Anonymous Access' option&lt;/span&gt;, and &lt;span style="font-weight:bold;"&gt;enable the 'Windows Authentication' option.&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/div&gt;&lt;div style="margin-left:40px;"&gt;&lt;font size="3"&gt;5) Save your changes and &lt;span style="font-weight:bold;"&gt;reset IIS&lt;/span&gt;.&amp;nbsp; &lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;font size="3"&gt; &lt;/font&gt;
&lt;p&gt;After following those steps, Windows Authentication should now work for OnTime Web. When using IE 7 to browse to your OnTime Web directory your Users'&amp;nbsp;
Windows credentials will be automatically passed through to OnTime, and
an attempt will be made to match them up with a User account in your OnTime database&lt;span style="font-weight:bold;"&gt;.
If no match is made they'll be redirected to the standard OnTime
'login.aspx' page&lt;/span&gt;, and they'll have the opportunity to login in with other
credentials.&lt;span style="font-weight:bold;"&gt; If using FireFox or Chrome, they'll be prompted with a standard Windows Domain login prompt in order to gather their credentials for OnTime. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Send any questions you may have regarding this FAQ to &lt;a href="mailto:%20support@axosoft.com"&gt;support@axosoft.com.&lt;/a&gt;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18575.aspx</feedburner:origLink></item><item><title>Can I perform a silent installation of OnTime Windows?</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/R5vSv_sVY2o/18427.aspx</link><pubDate>Thu, 16 Apr 2009 20:36:07 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:18427</guid><dc:creator>Tom Harder</dc:creator><slash:comments>1</slash:comments><comments>http://community.axosoft.com/forums/thread/18427.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=18427</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;&lt;font size="5"&gt;Q. &lt;span style="font-style:italic;"&gt;Can I perform a silent installation of OnTime Windows?&lt;/span&gt;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;font size="5"&gt;&lt;b&gt;A.&lt;/b&gt;&lt;/font&gt;&lt;b&gt; &lt;font size="3"&gt;Yes you can! &lt;/font&gt;&lt;/b&gt;&lt;font size="3"&gt; The installer we use for &lt;span style="font-weight:bold;"&gt;&lt;font size="3"&gt;OnTime2009WindowsSetup.exe&lt;/font&gt;&lt;/span&gt; can be run with a "&lt;span style="font-weight:bold;"&gt;/S&lt;/span&gt;" suffix parameter in order to install OnTime silently.&amp;nbsp; &lt;/font&gt;&lt;/p&gt;
&lt;font size="3"&gt;&lt;/font&gt;

&lt;p style="margin-left:40px;"&gt;For instance, by pulling up a &lt;span style="font-weight:bold;"&gt;command prompt&lt;/span&gt; in Windows and running the following command, you can install OnTime silently on the local machine:&lt;/p&gt;

&lt;p style="margin-left:80px;font-weight:bold;"&gt;&lt;font color="blue" size="3"&gt;c:\...\ontime2009windowsSetup.exe /S &lt;/font&gt;&lt;/p&gt;
&lt;font size="4"&gt;&lt;/font&gt;

&lt;p style="margin-left:40px;"&gt;Also, the "&lt;span style="font-weight:bold;"&gt;/D&lt;/span&gt;" parameter allows you to &lt;span style="font-weight:bold;"&gt;override the default installation directory and specify your own installation path&lt;/span&gt;. (usage: /D=C:\Path\To\Installation)&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;For instance, you could run the following command to install OnTime in an alternative directory:&lt;/p&gt;

&lt;p style="margin-left:80px;font-weight:bold;"&gt;&lt;font color="blue" size="3"&gt;c:\...\ontime2009windowsSetup.exe /D=C:\BestSoftwareEver\ &lt;/font&gt;&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;These paramaters will only silently install the OnTime in a directory of
your choosing, so &lt;span style="font-weight:bold;"&gt;you'll still need to connect the newly installed OnTime application
to your OnTime database&lt;/span&gt;.&lt;span style="font-weight:bold;"&gt; &lt;/span&gt;Thankfully, there's a way you can configure this for your users so they don't need to make this connection themselves.&lt;br&gt;&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;First, you'll need to have a copy of OnTime installed on at least one
machine, and it will need to be connected to your OnTime database. The encrypted connection string to your database is saved within the '&lt;span style="font-weight:bold;"&gt;OnTime.config&lt;/span&gt;' file on that local machine under&amp;nbsp; "&lt;span style="font-weight:bold;"&gt;C:\Documents and Settings\{USER}\Local Settings\Application Data\Axosoft\OnTime Windows\9.0\&lt;/span&gt;". &lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;Then, &lt;span style="font-weight:bold;"&gt;you
can copy that 'OnTime.config' file from your installation to the corresponding directory on your user's machine.&lt;/span&gt; This will allow the to connect without having to configure the connection to your SQL Server themselves.&lt;/p&gt;

&lt;font size="4"&gt;
&lt;p style="margin-left:40px;"&gt;I'm sure you can begin to imagine how using this knowledge inside batch files or other scripts can help you install OnTime silently to your OnTime Windows Users. While we cannot offer specific examples or best practices for unassisted installations, I'm confident that the information in this FAQ will give you the information you need to decide upon the best deployment of OnTime in your network environment.&lt;/p&gt;
&lt;/font&gt;

&lt;p style="margin-left:40px;"&gt;As usual, send any questions or comments about this FAQ to &lt;a href="mailto:support@axosoft.com" target="_blank"&gt;support@axoaoft.com&lt;/a&gt;.&lt;/p&gt;

&lt;p style="margin-left:40px;"&gt;&amp;nbsp;[Please visit the site to access the poll]&lt;/p&gt;&lt;p style="margin-left:40px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin-left:40px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin-left:40px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/18427.aspx</feedburner:origLink></item><item><title>Removing fields from within copied reports in the OnTime 2009 report designer</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/GkdqXwFXRk0/17669.aspx</link><pubDate>Tue, 13 Jan 2009 15:42:55 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:17669</guid><dc:creator>Tom Harder</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/17669.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=17669</wfw:commentRss><description>&lt;p&gt;This FAQ is aimed at &lt;b&gt;advanced OnTime 2009 users&lt;/b&gt; &lt;b&gt;who use the&lt;/b&gt; &lt;b&gt;integrated Data Dynamic's Active Reports report designer to customize reports&lt;/b&gt;. It's designed for OnTime Admins who have some experience modifying the built in reports within OnTime and are familiar with the Active Reports designer.&lt;br&gt;&lt;/p&gt;&lt;p&gt;If you've ever edited a copy of one of our built-in reports within OnTime 2007 or 2008, you know you can remove data columns from the report layout fairly easily by simply removing the Textbox in which the data is linked to. Even if there was C# script associated with the textbox, the Active Report designer would handle the script and not produce an error. &lt;/p&gt;&lt;p&gt;&lt;b&gt;We've updated the Data Dynamic's Active Reports designer in OnTime 2009, and that situation will now produce an error.&lt;/b&gt; &lt;b&gt;If you remove a data-related field from the Layout view of a report you must also go into the C# script and remove any associated script which refers to the removed field.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;For instance, If you remove the 'Start Date' data textbox from the 'Defect List' report Layout, you must also remove any reference to that particular textbox in the C# script portion of the report. Once all of the referential script has been removed, the error will no longer occur.&lt;/p&gt;&lt;p&gt;If a data-related textbox has no C# script associated with in in the script portion of the report, no other steps are needed.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;[Please visit the site to access the poll]</description><feedburner:origLink>http://community.axosoft.com/forums/thread/17669.aspx</feedburner:origLink></item><item><title>Unable to activate OnTime 2009! My product key is not valid!</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/9RTalFT3mxQ/17668.aspx</link><pubDate>Tue, 13 Jan 2009 15:31:30 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:17668</guid><dc:creator>Tom Harder</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/17668.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=17668</wfw:commentRss><description>
&lt;p&gt;&lt;font size="3"&gt;&lt;b&gt;Q: I've just &lt;/b&gt;&lt;b&gt;upgraded a previous version of OnTime to &lt;/b&gt;&lt;b&gt;OnTime 2009, but when I get to the activation screen I see the message &lt;/b&gt;&lt;b&gt;'&lt;span style="font-style:italic;"&gt;Your key does not appear to be valid for this version&lt;/span&gt;'. I know I have current Maintenance on my OnTime product key, so what's the problem!?!?!&lt;/b&gt;&lt;br&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p&gt;&lt;font size="3"&gt;&lt;b&gt;A:&lt;/b&gt;&lt;/font&gt; If you're certain that you have current Maintenance on your OnTime product key, there may be a simple explanation and resolution to this problem.&lt;br&gt;&lt;/p&gt;

&lt;p&gt;Occasionally there's a problem with the initial connection from your OnTime installer to our activation server, in which you may get an error telling you that your key appears to be invalid for the new 
version.&lt;br&gt;&lt;/p&gt;

&lt;p&gt;The solution is simple: &lt;font size="3"&gt;&lt;b&gt;Try clicking the 'Activate Database' button again&lt;/b&gt;&lt;/font&gt;&amp;nbsp;to allow OnTime &lt;b&gt;another 
attempt at reaching our activation server&lt;/b&gt;. &lt;/p&gt;&lt;p&gt;In almost all cases this will allow your local installation of OnTime to contact our activation server and verify your product key, &lt;b&gt;thus allowing you to use OnTime 2009. &lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Yet, if you're unsure whether you have Maintenance on your key, we &lt;b&gt;highly recommend&lt;/b&gt; contacting us at 1.800.653.0024 to &lt;span style="font-weight:bold;"&gt;verify your current Maintenance status before upgrading. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;[Please visit the site to access the poll] &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/17668.aspx</feedburner:origLink></item><item><title>Modifying or translating the resource strings in OnTime</title><link>http://feedproxy.google.com/~r/OnTimeFAQ/~3/vHHHnWfSTxo/17562.aspx</link><pubDate>Mon, 05 Jan 2009 18:46:57 GMT</pubDate><guid isPermaLink="false">d315da8f-0088-447e-a94f-056123fb98a9:17562</guid><dc:creator>Dan Suceava</dc:creator><slash:comments>0</slash:comments><comments>http://community.axosoft.com/forums/thread/17562.aspx</comments><wfw:commentRss>http://community.axosoft.com/forums/commentrss.aspx?SectionID=18&amp;PostID=17562</wfw:commentRss><description>&lt;p&gt;If you are looking to modify certain strings in the OnTime UI, or if you want to translate the strings to another language, follow these steps to modify the resource file to your needs: &lt;br&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;copy the Axosoft.OnTimeResources.dll file from the OnTime folder into a new folder&lt;/li&gt;&lt;li&gt;run the VS.NET command prompt from Start Menu -&amp;gt; Microsoft Visual Studio 2008 -&amp;gt; Visual Studio Tools -&amp;gt; Visual Studio 2008 Command Prompt&lt;/li&gt;&lt;li&gt;at the command prompt run 'ildasm'&lt;br&gt;&lt;/li&gt;&lt;li&gt;in ildasm go to File -&amp;gt; Open and select the copy of the Axosoft.OnTimeResources.dll file&lt;/li&gt;&lt;li&gt;now select File -&amp;gt; Dump to disassemble the dll&lt;/li&gt;&lt;li&gt;type in 'resources' for the name of the file&lt;/li&gt;&lt;li&gt;4 files will be created in your folder&lt;/li&gt;&lt;ul&gt;&lt;li&gt;resources.il&lt;/li&gt;&lt;li&gt;resources.res&lt;/li&gt;&lt;li&gt;Axosoft.OnTimeResources.Images.resources&lt;/li&gt;&lt;li&gt;Axosoft.OnTimeResources.Strings.resources&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;the file containing all the string resources is the Axosoft.OnTimeResources.Strings.resources&lt;/li&gt;&lt;li&gt;edit this file with a resource editor - either the binary editor in VS.NET or some other resource editor you can download&lt;/li&gt;&lt;ul&gt;&lt;li&gt;for simplicity, I download a free editor from http://www.topshareware.com/Resource-.NET-2.0-download-58815.htm&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;modify or translate the strings as needed and save the file&lt;/li&gt;&lt;li&gt;go back to the command prompt and change the directory so you are in the folder with the resource files&lt;/li&gt;&lt;li&gt;generate a strong name key by running sn.exe&lt;/li&gt;&lt;ul&gt;&lt;li&gt;sn -k key.snk&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;now reassemble the resource dll using ilasm&lt;/li&gt;&lt;ul&gt;&lt;li&gt;ilasm /DLL /OUTPUT=Axosoft.OnTimeResources.dll /KEY=key.snk /resource:resources.res resources.il&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;you will now have a new version of the Axosoft.OnTimeResources.dll file&lt;/li&gt;&lt;li&gt;copy this file back to the OnTime folder where you originally copied it from&lt;/li&gt;&lt;li&gt;now when you run OnTime you will see the new strings&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;NOTE that this will replace the English version (the default language) with the file you generate. &lt;br&gt;&lt;/p&gt;</description><feedburner:origLink>http://community.axosoft.com/forums/thread/17562.aspx</feedburner:origLink></item></channel></rss>
