27 Şubat 2011 Pazar

Warning: {W130} Base URI is "", relative URIs left as relative.

The warning {W130} Base URI is "", relative URIs left as relative. is given when i try to import an owl file using jena api.
Specifically, adding the following lines to .owl file solved my problem:

xmlns="http://Mpeg7-2001.owl#"
xml:base="http:///Mpeg7-2001.owl#"

change namespace of an xml file in java code

I have to change a specific namespace of xml files to a predefined one automatically in java code.
here is working sample code:

7 Şubat 2011 Pazartesi

a C# starter..

I am given a component written in C#, and i need to re-model it as a set of web services in order to integrate it with some other java components..
This is my first contact with .net world, so i need to be encouraged :)

http://www.csharpnedir.com/articles/read/?filter=&author=&cat=&id=49&title=C
http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=35
http://www.java2s.com/Tutorial/CSharp/CatalogCSharp.htm
http://www.csharp-station.com/Tutorial.aspx

1 Şubat 2011 Salı

recursively removing .svn folders in a project

execute this command from the project location in order to recursively remove .svn folders in a linux environment:
find . -name ".svn" -type d -exec rm -rf {} \;