by Dan Matthews
24. September 2007 13:43
I'm currently running through the CD-ROM based courseware for the Sun Certified Java Associate exam. Thought it would be a good idea to get a Java cert under my belt - interesting to see the little differences between Java and C#. (string literal equality comparisons, anyone?)
I did have a problem trying to access the Flash-based courseware in IE7 though - it loaded the index page and I could choose a module, but then when it loaded it just showed an empty window. Tried all the flash perms etc., got latest Flash version, nothing helped.
However, when I ran the CD-ROM under Firefox it ran fir...
[More]
8fd997ba-99fe-45a4-a884-3ebf6e3eed17|0|.0
Tags:
by Dominic Zukiewicz
21. September 2007 11:30
I had an error message when using Transactions in .NET 1.1. The error is:
Error: System.Data.SqlClient.SqlException: Import of Microsoft Distributed Transaction Coordinator (MS DTC) transaction failed: 0x8004d00e(error not found).
It may be rhetorical - but is that actually an error?
089d6fd6-51f4-4e58-b3a9-d413a76a1d64|0|.0
Tags:
Misc
by Dominic Zukiewicz
17. September 2007 15:47
When using the build scripts to automatically GAC a component, I came across the error where it failed, returning code 9009.
I found a useful post that is short and sweet to explain why:
In summary, don't rely on VS to navigate the PATH environment variables. Instead, point to it yourself!
a7a8c3cf-c9e3-459a-8609-5a87431988c4|0|.0
Tags:
Misc
by Dan Matthews
14. September 2007 13:42
If you ever find the need to suppress the ViewState hidden field in ASP.NET, you're in for a world of pain :) There are various blog posts that discuss the issue but none give clean and easy server-side solutions - that is unless you really want to take over the http stream and start tag stripping.
There is a very quick and admittedly dirty client-side way of doing it in DHTML:
<script language="javascript">
document.getElementById('__VIEWSTATE').parentNode.removeChild(document.getElementById('__VIEWSTATE'));
</script>
Yes I know. Yuk. Works in IE6/7 and Firefox tho!
abec6043-d2e4-4d81-8789-9f40ddd91a30|0|.0
Tags:
.NET/C#
by Dan Matthews
14. September 2007 10:47
If you find that your EPiServer subscriptions stop firing after an export/import, you may need to reset the root node for the subscription. Typically, your subscription history will show '0 subscription templates found'. To fix this, go to your subscription template, set your root node, save and publish.
This is especially true if you have reset your start page to a value other than 3.
c3fe9d24-0cd2-4d8c-b8d5-72fe04c22c96|0|.0
Tags:
EPiServer
by Dan Matthews
12. September 2007 09:46
Well the cram fest paid off - now the MCTS in config. and admin. of MOSS 2007 is under my belt too.
Now to put this into practice, but before that I have to tie off an EPiServer project and also get stuck into an ADXSTUDIO one!
by matt
10. September 2007 09:03
I use BizTalk on my local machine, I'm sure a lot of other people do too as it save a some time in logging on and off servers and starting up Virtual PCs etc. The problem with desktops is that, on rare occasions, ITS hope along and renames them. This can cause quite an issue if you happen to be using Enterprise Single Sign-On (ENTSSO) on your local machine too.
What I noticed was, after a rename, I couldn't do anything with ENTSSO in terms of use it,, start it as a service or administer it. This is because the management tools seem do be dependent on the service itself, and the service is ...
[More]
by Dan Matthews
4. September 2007 17:40
So the cram-fest that I blogged about a few weeks ago has come around, and the last couple of days+nights swotting have paid off with an MCTS in Configuring WSS v3.
Now there's another few days of intensive, 14 hour days and then I'll be going for the Sharepoint Server equivalent as well.
Here's to reading thick tomes!
by Dominic Zukiewicz
3. September 2007 12:47
I've been using my lunch breaks to help contribute to the Wikibook for C#, available at:
http://en.wikibooks.org/wiki/C_Sharp_Programming
So far I've added entries to:
"implicit" definition
"base" defintion
Factory Design Pattern
Console programming
Events and delegates
.NET framework definitions
There's still loads needed to help bring the book up to scratch, so any help is appreciated!
74a1325d-1002-4072-b6c9-d2eee8d1f0b9|0|.0
Tags:
Misc