Browsing all articles in Development
Jun
2

How to add a new discipline item in visual studio team foundation server 2008 project

Adding a new discipline item in visual studio team foundation server is just a matter of simple command but if you are newbie and don’t have any idea about visual studio team foundation server than I hope this article will help you to add a new discipline item or even edit an existing one. I assume that you have installed visual studio team foundation server 2008 or 2005 already and configured a team project, if not please refer to the installation guide given on MSDN. Steps are given as under to add a new discipline item:

  1. Open Visual Studio 2008 go to the Team menu
    vstfs discipline
  2. Go to Team Foundation Server Settings
  3. Go to Process Template Manager
  4. Download the Process Template Manager at any location on your hard drive
  5. Under Process Template Folder Go to WorkItem Tracking
  6. Under WorkItem Tracking folder go to TypeDefinitions Folder
  7. Edit the Respective XML File (In my case I was editing the file task.xml)
  8. Add new discipline items or edit any existing and enter the under given command on your command prompt
  9. U:\>"E:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\witimport.exe" /f
    "E:\Documents and Settings\itoperationz\My Documents\MSF for Agile Software Development –
    v4.2\WorkItem Tracking\TypeDefinitions\task.xml" /t http://itoperationz:8080 /p itoperations

Note: Edit the command according to your path and project name along with server URL and port

Note:

/f        Specifies the work item type XML definition file to be imported.
/t        Specifies the name of the Team Foundation Server. This can also be a
          fully specified URL such as http://server:8080.
/p        Specifies the Team Project on the Team Foundation Server to which the
          file is imported.

Popularity: 3% [?]

Apr
16

dot net framework 4 has been release

Dot Net Developers!!! I think its a big news that dot net 4 (.net 4) has been released and available for download. The .NET Framework is Microsoft’s comprehensive and consistent programming model for building applications that have visually stunning user experiences, seamless and secure communication, and more. It is highly compatible with applications that are built with earlier .NET Framework versions, except for some changes that were made to improve security, standards compliance, correctness, reliability, and performance.

What is new in .net framework?

dot net framework 4

Download .Net Framework 4

Popularity: 3% [?]

Apr
6

Plan and grow your career with Microsoft professional career chart

What is the next step in your career? have you ever thought about this? I started my career as a web developer but switched towards IT after few months, why?  The reason was nothing but interest. I was much more attracted by the IT infrastructure creation and managing big servers. Working with the security settings, have a complete control on the system, etc. What are you guys planning for your career growth? Let me help you to decide what you have to do next because if you are working on only one technology it will be obsolete after a while and what next? Use Microsoft Professional Career Chart to plan your next step for you bright future. 

Microsoft Professional Career Chart
Microsoft Professional Career Chart

read more

Popularity: 2% [?]

Feb
17

Setting Up Java Heap Space in Tomcat 6 on Windows 2003

Setting up java heap space in windows is not a big deal. You just need to open a file named CATALINA and replace the old entries but if you guys have installed apache tomcat6 on windows 2003 using MSI installer then you are at a right place. Under given are few easy steps to do this task;

1. Open the installation folder of Apache Tomcat6.

(In My Case Its C:\Program Files\Apache Software Foundation\Tomcat 6.0)

2. Go to Bin Folder

3. Double click the EXE tomcat6w

4. Go to java tab and set you initial and default java heap space!!!!!!!

java heap space

Popularity: 6% [?]

Dec
10

How to set Java heap space in Apache Tomcat?

If Java runs out of memory, the following error occurs:

Exception in thread "main" java.lang.OutOfMemoryError: Java heap space

heap This can have two reasons:

  • Your Java application has a memory leak. There are tools like YourKit Java Profiler that help you to identify such leaks.
  • Your Java application really needs a lot of memory (more than 128 MB by default!). In this case the Java heap size can be increased using the following runtime parameters:
java -Xms<initial heap size> -Xmx<maximum heap size>

Defaults are:

java -Xms32m -Xmx128m

You can set this either in the Java Control Panel or on the command line, depending on the environment you run your application.

Related Posts with Thumbnails

Popularity: 15% [?]