Forcing Postman to ask for login credentials every time “Get New Access Token” button is clicked

November 2, 2018 Leave a comment

Recently, while testing OAuth 2.0 authentication flow for Microsoft Graph Api, I came across a wired issue.

Postman would redirect to Microsoft’s authentication window for  getting user credentials. After that, in next iteration it would not as for credentials and continue to use persisted identity from the first iteration. This gets frustrating when one wants to try the flow using another user. Still it continues to use initially used credentials.

Postman - Get Access Token

Spent one whole day to to figure out how to force postman to as for credentials every time “Get New Access Token” is clicked. This solution works only on web version of postman.

  1. Install Chrome app for postman.
  2. Enable Chrome developer tools for postman.
  3. Launch Postman using installed chrome app.
  4. Now Right-Click anywhere and click “Inspect element”. Alternately, this can be done by going to chrome://inspect/#apps page and launching the inspector from there.
  5. In the console window execute following Javascript.

chrome.identity.launchWebAuthFlow({‘url’: ‘https://login.windows.net/ac1df4be-765d-4ffc-8dfd-21d263d4a049/oauth2/logout’, ‘interactive’: true}, function(){ if (chrome.runtime.lastError) { console.log(“Azure logout”); }});

This will perform the logoff and for the subsequent interaction, Postman will oblige to take the user to authentication page.

Reference

 

Postman startup time is too high!

October 18, 2018 Leave a comment

Postman is a great web debugging utility. However, after recent upgrades, version 6.1.1 onward it takes way too long to startup which is very frustrating. I faced this issue on Windows 8.1 64 bit. Quick research revealed that it is GPU compatibility issue. Till the time of writing this post, there is no permanent fix for this issue. However, there is a work around which completely solves this startup issue.

And the workaround is, “Disable GPU Flag“. Just add a system environment variable named POSTMAN_DISABLE_GPU, setting its value to true. Re-launch Postman and issue is resolved. That’s it. Short and sweet.

Disable-GPU-For-Postman

For more details check out this page.

WCF : Service attribute value in the ServiceHost directive could not be found

January 3, 2014 Leave a comment

The type ‘xxx’, provided as the Service attribute value in the ServiceHost directive, or provided in the configuration element system.serviceModel/serviceHostingEnvironment/serviceActivations could not be found.

While deploying your WCF service on IIS you may get above error because IIS configuration issue. More specifically IIS 7. You might have created a virtual directory pointing to they physical folder where your service binaries are deployed, which will not work. You have to use ‘Add Applicaiton …’ option to make it work. If you have already created a virtual folder not need to delete it there is one more option ‘Convert to Applicaiton’ which can be used to fix this issue.

Hope this helps.

Team Foundation Server Extensibility

November 12, 2013 Leave a comment

Being a comprehensive Application Life cycle Management system at its core, TFS has various extensibility points. It makes it so flexible that we use the core features to full fill our specific requirements. In this post, I am going to highlight various areas which can be explored. In future posts I will try to deep dive. We can divide TFS’s extensibility capabilities into two categories.

Customizations

Here we basically focus on re-configuring core TFS functionalities based on our requirements. Following are the areas which can be explored.

  • Customizing work item types
  • Customizing process templates
  • Customizing build process tempate

Extensions

Here we need to sit down and write some code to develop solutions around TFS. Our solutions are based on TFS SDK. Following is the list of areas to explore.

  • Build Activities for customizing builds
  • Client APIs
  • Event subscriptions (SOAP based)
  • Server side event handlers
  • Check-in policies
  • Custom TFS Background jobs
  • Warehouse and cube customization
  • Deployment services
  • Custom work item controls
  • Web Access extensibility
  • Diagnostic data adapters
  • MTM extensions
  • Visual studio extentions

 

I hope this list might have provided you glimpse of possibilities with TFS. I will go into more details in future posts. Stay tuned.

 

 

TFS 2013 : Diagnostics and Troubleshooting

October 7, 2013 Leave a comment

While working with TFS 2010 we had to go to TFS db directly to get the diagnostic information. TFS DB table named tbl_Command hosts this information. It was sort of a hidden information as if you don’t have access to db, you will not know if it is there; wasting time in finding solutions somewhere else. But with TFS 2012 and TFS 2013 release we also get a separate view for this diagnostic data as part of TFS Web Access portal.

You have to visit : http://<tfsservername>/tfs/_oi/ to land directly on to the diagnostic data.

Activity Log

This view lists all the activities performed by various TFS components like: WorkItem Tracking, Version Control, Framework, Team Configuration Service, Web Access etc.

Webportal activity log

Activity Log Entry Details

You can even get even more details regarding log entry by double clicking on one. A dialog will pop up for the same. You can get the details like which process, running on which machine, actually generated this event. This is helpful in case this even is generated by some custom tool which is built using TFS client APIs.

Log entry details

Job Monitoring

This view details about the background jobs which run regularly. So this gives you Job Summary, Job Queue, Job History.

The chart below displays total amount of run time this particular job has taken over the time period. Click on any of the bars in the chart to get the list of jobs contributing to the total.

Job run time for each job

The chart below displays the number of times a job has run combined with the number of result types for that particular job.

Number of jobs run

The chart below combines the average queue time and run time for jobs; you can also view how many jobs were run at each hour.

AVerage run and queue time with Total numbe rof jobs

 

Reference: Vaious built-in Jobs which come with TFS 2012/2013

 

Security tip:

Note that you to see this diagnostic information user should be part of “Team Foundation Administrators” Group. But that will not be a good practice to put everyone into that group. Better option will be to create a new security group in TFS. lets say, “TFS Troubleshooters”. And make specific users/groups part of that group.

 

WorkItemStore is null while using TFS Client APIs

September 26, 2013 Leave a comment

We have lot of solutions which are built around TFS 2010 client API. Recently, we planned to upgrade to TFS 2013. When we tried to use new APIs we noticed few anomalies. One out of them was that we were not able to initialize WorkItemStore service object.

We did not change code at all. Only change I did was that project was targeted to .Net Framework 4.5 to accommodate latest TFS Client APIs.

Code

_workItemStore object was initialized to null. After so much time spent into debugging the issue, I found that it was because some of the APIs were still targeted to .Net Framework 2.0, which was giving issue at runtime. To resolve this a little configuration was required. Following snapshot highlights the fix.

fix

 

The attribute useLegacyV2RuntimeActivationPolicy should be set to true and we were good to go.

Note : This fix applies for TFS 2012 and TFS 2013 client APIs.

 

 

HTTP code 404: Not Found

July 4, 2013 1 comment

If you are facing this issue you must be using Visual Studio 2012 to connect both TFS 2010 and TFS 2012 at the same time.  This basically comes when you are connecting to  TFS 2010 project. Main cause is corrupted local user cache. It can be resolved easily by deleting the user cache.

 

VS2012 Connection issue

 

Delete everything in this folder on local machine “C:\Users\<user_name>\AppData\Local\Microsoft\Team Foundation\4.0\Cache” and restart VS 2012. This problem will disappear. 🙂

 

The type or namespace name does not exist in the namespace (are you missing an assembly reference?)

July 3, 2013 Leave a comment

Following are the possible reasons

  • Different “target framework” in the referred assembly. So make sure refereed assembly project’s target framework should be same as that of referring one. Avoid using .NET x Client framework.
  • Long paths can also be a cause for this issue. This can mostly happen when you add project references to a project in a particular solution. The effective resolved path for referred assembly can become longer than expected. Just to highlight the windows path limit is 260 characters (reason best known to Microsoft).

Delete Project Collection

May 20, 2013 Leave a comment

Project collection can only be deleted using TFS’s command line tool named “TFSConfig.exe”. This tool is available under “<TFS Install Root>\Tools” directory. Following is the command syntax

TfsConfig.exe collection /delete /collectionName:”NameOfCollectionToDelete”

This command is applicable both for TFS 2010 and 2012

 

Rename TFS Work Item Type

May 15, 2013 2 comments

While customizing TFS work item type we might feel like changing the work item type name itself. So there is an easy an fool proof way to achieve it thought command line. Here is the command

witadmin renamewitd /collection:”http://tfs-server-name:8080/tfs/collection-name&#8221; /p:Project-Name /n:”User Story” /new:”Job”

So the command mentioned above will change the name of  “User Story” work item type to “Job”.

For detailed help use witadmin renamewitd /?

Note: this command is applicable for both TFS 2012 and TFS 2010