Yearly Archives: 2011
We are STARS too! The GSA 8(a) STARS II program
MetroStar Systems is proud to announce it was recently awarded the new GSA 8(a) STARS II Government-Wide Acquisition Contract (GWAC). The contract is a multiple award, indefinite delivery/indefinite quantity (IDIQ) contract vehicle, with a five-year base period and one five-year extension option. This program is reserved exclusively for qualifying certified 8(a) small businesses as prime contractors per Federal Acquisition Regulation (FAR) 19.8. The contract promotes small business utilization for IT services purchases. 8(a) STARS II Features: 8(a) STARS II Benefits: In April 2011, MetroStar Systems successfully graduated from the SBA 8(a) program. As we are still classified as a Small Business, the GSA 8(a) STARS II award allows us to continue providing support in designing, developing, and implementing innovative technological tools across federal agencies. GSA has already evaluated and prequalified our technical capabilities, service offerings, and pricing through a competitive process for streamlined contracting and shortened procurement times. More information about the 8(a) STARS II GWAC program can be found here: http://www.gsa.gov/portal/content/105243 In addition to this new GWAC, MetroStar Systems has a variety of contract vehicles that allow government agencies to easily procure our products and services including: GSA Schedule 541, GSA Schedule 70, GSA Schedule 874, the Army and Air National Guard IDIQ, and SeaPort-e.
Updated GAC DLLs not showing updates in ASP.Net Applications
I recently ran into an issue on one of my development ASP.Net servers where I would deploy an updated DLL (Dynamic-link library) to the GAC (global assembly cache) but the ASP.Net applications which referenced the DLL would throw compilation errors at run-time saying that newly added fields/methods were not present in the assembly. I tried uninstalling and re-installing the assembly, adding the new DLL to the bin, and referencing it from there and so on, but nothing seemed to work. As it turns out, ASP.Net keeps a cached version of the JIT compiled DLL in the C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files directory that was being used instead of the new DLL which was in the GAC. To fix it, I simply deleted the contents of this folder and everything was right as rain! -Lee