0
votes
0answers
55 views
How to allow DTD in XML Documents loaded via XSLT’s document(uri) function with XslCompiledTransform (.NET)
When the document(uri) function is used to load another document within the XSLT, where the target document contains a DTD I get an XslTransformException, containing an in …
0
votes
Transforming flat file to XML using XSLT-like technology
IIRC someone has created a "LINQ to CSV" library that might be a starting point to create the intermediate XML (in memory) as input into the transform.
Found it …
0
votes
Which versions of .NET Framework I can count on?
Pre-Vista: there is a significant chance that .NET will not be installed. And event if it is it may be 1.0 or 1.1.
Vista includes .NET 3.0 in RTM, but it is an optional component i …
2
votes
Write .NET portable code or take advantage of language specifics?
Why do you want to convert languages? Consider that are are far more than two .NET languages, and some are very different, e.g. F#.
Use the right language for the right job. In .NET a lot o …
0
votes
Is thread-local storage persisted between backgroundworker invocations?
Would need to check the source (or via Reflector) to determine this if it is not specified in MSDN.
If it isn't specified you can't rely on the current behaviour not changing in a future ve …
0
votes
How can I resolve a “Provider load failure” for WMI requests?
WMI registration is all held in WMI (static classes.
WMI CIM Studio (part of WMI Tools from MS, IIRC) is useful for exploring these classes (and certainly easier than writing lots of querie …
0
votes
How to create a Dynamic Client Proxy Connection when the type is unknown?
Nicholas Allen has covered something (I think) like this in his blog, start with part 1 …
-1
votes
Connect to .Net software program and interact
Easily, no.
But it possible to automate WinDBG (or its command line version), alongside the SOS extension library for .NET it might be possible.
Fundamentally you need an applicatio …
2
votes
Can anything make life easier for a dotnet 3.5 coder trapped in a 1.1 world?
Tools: only one Microsoft's Support Liftcycle for .NET 1.1 at http://support.microsoft.com/lifecycle/?p1=1249
Wh …
2
votes
How to best implement Equals for custom types?
Define what the identity means.. if reference identity then the default inherited equals will work.
If a value type (and thus value identity) you need to define.
If a class …
1
vote
What should I use for a BigInt class in .NET?
F# has Microsoft.FSharp.Math.BigInt and Microsoft.FSharp.Math.BigNum.
…
2
votes
Implementing a Factory that uses Specifications to determine which type of object to create
If I have understood correctly, you want, given an object implementing ISpecification you want an object implementing IStatusUpdate?
In your sample none of these types are defined, so I don …
0
votes
Unauthorisedaccessexception - how to gain access?
The readonly flag can be cleared by anyone with write access. If that is all then you will just need to set file attributes. However if the files ACL is blocking you (and it is easy to create an AC …
6
votes
0
votes
.Net winform property says Visible but I can’t see it
Is the parent Window visible?
Windows has rules about children of non-visible windows being non-visible whatever their own visibility.
…
