You may have seen this error when creating a custom list definition in Sharepoint.
Exception from HRESULT: 0x81070201
This error means that the custom list schema.xml cannot be found for one of a number of reasons.
- You didn't create a
schema.xml
- It was not included as an
ElementFile node in the ElementManifests node of the feature.xml
- The
Name attribute in the ListTemplate node must match the folder name that the schema.xml is physically stored in.
The last point is the one that I got caught out on, and at first glance it seems to be ...
Read more
Just a quick tip...
This annoyed me to no end today. The docs mention setting http_proxy, which at first appears to work. It lets you log in but then it fails when it actually tries to upload the files.
File "C:\Python25\lib\urllib2.py", line 1082, in do_open
raise URLError(err)
llib2.URLError: <urlopen error (11001, 'getaddrinfo failed')>
The solution: set https_proxy as well.
Thanks to Vishal
Read more
Having shifted house on the weekend has severely limited my time getting to know this beast called Haskell. This is a quick run down of my first week.
Installation
On OS X I used the MacPorts version of the Glasgow Haskell Compiler better known by ghc. Be warned that this compiles from source and took my poor little Core Duo around 1h40m. There is a precompiled package available for Leopard if you don't want to compile yourself, but either way requires Xcode 3.0.
On Windows I used the precompiled binary for the latest stable version available here which ...
Read more
Inspired by Pragmatic Programmer's "one new language a year" and this series of posts I have decided to take up the challenge.
Now I know I will not be a competent programmer in this new language within a year. It takes years to become competent, decades to become a master. But fooling around with a new language in my down time will certainly expose new ideas and concepts.
But which one?
There are a lot of programming languages. The real question though is
What do I want to get out of this exercise?
And there is a really simple ...
Read more
At work we use a central subverison repository for all our projects. As I am a huge fan of the branching and merging available in git I wanted to install and use git locally and pretend, through the magic of git-svn, that I wasn't.
That is when I ran into trouble. I downloaded and istalled cygwin with git and git-svn packages selected. Everything installed fine, but when I tried to clone our SVN repo I got an error message.
Permission denied: Can't open '/cygdrive/c/DOCUME~1/geoff/Local Settings/Temp/3/tempfile.tmp' : Permission denied at /usr ...
Read more