colinmatthes.com

June 9th, 2010 | permanent link | portfolio

I recently finished developing a site for my friend Colin.  He’s an artist and needed a way to easily post to his site and display his work so I used WordPress and created a custom template.  Check it out … www.colinmatthes.com.

Comments: No Comments.



Moving solution file from one drive to another

November 9th, 2006 | permanent link | Visual Studio

My VPC C:\ drive is full so I created a second partition X:\ with the remaining space leftover. I moved over all my Visual Studio projects to X:\ & remapped my Virtual Directories in IIS. Thinking there might be drive references inside project / solution related meta data files I checked the .sln file contents & the .csproj file contents but found no drive references as far as where the project file is located. However, when I tried to open up the solution in Visual Studio I received the following error when it tried to open the two web projects in the solution:

“Unable to read the project file xxxx. The system cannot find the path specified.”

After searching around online for a while I found that solution.suo file contains references but you cannot edit them via Notepad.

.NET Google group

Comments: No Comments.



SaveAsOrder() failure related to MSDTC security configuration

September 26th, 2006 | permanent link | Microsoft Commerce Server, Microsoft Content Management Server, MSIB 2.1, Windows 2003

A co-worker of mine recently rebuilt our web server according to MSIB documentation from Microsoft (Windows 2003). When he put the server live everything worked great except for the final step in the order process on our e-commerce website (powered by Microsoft Commerce Server). We’ve had issues at the SaveAsOrder step before but it was related to the web server having the same CID as the database server (see my previous post). However, this time the CIDs were unique so that wasn’t the issue. After some extensive troubleshooting Rob was able to find the issue.

The SaveAsOrder() failure was related to a MSDTC security configuration specific to W2K3 servers which is under “Start – Administration Tools – Component Services – Computers – My Computer – Properties”. Within the properties window, there is a setting under “MSDTC – Security Configuration” to specify “No Authentication Required”. Originally, the setting was set to”Mutual Authentication Required”. This google post helped lead to the solution.

Comments: No Comments.



How To: Flush DNS Cache

September 17th, 2006 | permanent link | Networking

If you change the IP of a server in a domain you may need to flush the DNS cache in order for the change to take affect. To do this open up a command window and type:

ipconfig /flushdns

Comments: No Comments.



MCMS disk space constraints during content export

September 1st, 2006 | permanent link | Microsoft Content Management Server

One of the issues I’ve had to deal with extensively in our server environment is low disk space. The servers were built with the C:\ drives being far too small to accommodate the MSIB (MCMS/CS) environment and since MCMS creates temp files during content exports you can encounter many cryptic error messages. Today was the first time I came across these errors during the content export:

1) Error Window Title: NRProgress
Error Message: Run-time error ’402′: Must close or hide topmost modal form first

followed by . . .

2) Error: 0
Description: Automation error
The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call may have executed.
Severity: 5
Source: NRSiteDeployUI
Debug info: N/A
Extra info: N/A
Client Source: CProgressHelper::EndProgress
Recommended Action: N/A

followed by . . .

3) Error Window Title: Framework
Error Message: Unhandled exception occurred during FireEvent: EventName = Is, ModFlag = Is

As part of the export process MCMS creates temp .sdo files in the cache folder (rdonlyres). They look something like: SD-021D67F4-D658-4DE2-8644-6A1193DCAFEF-31425.SDO. If these start to fill up the cache folder and exceed the defined limit of cache in the Server Configuration Application then exports will start to fail (exhibiting the errors I mention above).

So if you are tight on space on your C:\ drive (and your MCMS instance is also located on C:\) you will want to delete these temp .sdos after each export.

Comments: No Comments.



MCMS Site Map

FREE – Visual Studio Express Editions

April 29th, 2006 | permanent link | Visual Studio

Microsoft & Free … two words perhaps not thought to co-exist.

http://msdn.microsoft.com/vstudio/express

Comments: No Comments.



Error when opening Site Manager

April 19th, 2006 | permanent link | Microsoft Content Management Server

One of my co-workers recently was unable to open Site Manager and kept getting the following error:

Error: Could not connect to the Microsoft Content Management Server . Either the web service is not running, or there are network problems that are keeping you from connecting to the server, or the server is not accessible through MCMS Site Manager.
Source: LinkConfig::LaunchLogon

I looked in the App Log and noticed an error that corresponded to the time/date of the above:

Event Type: Error
Event Source: Winlogon
Event Category: None
Event ID: 1012
User: domain\username
Computer: SERVERNAME
Description: The automatic certificate enrollment subsystem could not access local resources needed for enrollment. Enrollment will not be performed. (0×80070005) Access is denied.

Some research indicated that it could be caused by a corrupted Windows profile. We deleted his profile and then he was able to successfully open Site Manager.

Comments: No Comments.



Site Manager : Request is too big

March 15th, 2006 | permanent link | Microsoft Content Management Server

I’ve seen this issue a couple times. After doing a SDO import successfully I then go back to view the newly imported channels & postings and Site Manager returns the following error:

Error: (0×80020009) Extended error: [What='The XML parser could not parse the file it was given.'] [LCID='1033'] [SourceFile='aegrammarparser.cpp'] [SourceFileLine='319'] [DebugInfo='Request is too big'] [RecommendedAction=''] [ExtraInfo=''] [UniqueErrorId='1002'] [Severity='5'] [Source='GrammarParserC.dll'] [CategoryId='0']
Source: AeCliCmn::refreshTreeBranch

Here is the fix:
Topic: Request too big on channel with many postings

Comments: No Comments.



Changing VPC name & affects on Commerce Server

March 13th, 2006 | permanent link | Microsoft Commerce Server, MSIB 2.1, Virtual PC

I had changed the name of my VPC a while back in order to make a copy of it for a contractor. Changing your VPC name with an MSIB 2.1 installation/configuration is not a trivial task. Recently I tried to refresh the catalog cache in BizDesk and I got a very non-descript error. I was able to fix by manually changing an entry in the CatalogCache_Virtual_Directory table to match my new VPC name.

Reference: PRB: Commerce Server 2002 Business Desk catalog refresh error message when port number has changed

Comments: No Comments.