<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>LinqInPark.net</title>
  <link rel="alternate" type="text/html" href="http://www.linqinpark.net/" />
  <link rel="self" href="http://www.linqinpark.net/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2009-06-16T16:35:36.7478464+02:00</updated>
  <author>
    <name>Björn Lasar</name>
  </author>
  <subtitle>YA .NET and LINQ blog</subtitle>
  <id>http://www.linqinpark.net/</id>
  <generator uri="http://dasblog.info/" version="2.2.8279.16125">DasBlog</generator>
  <entry>
    <title>ClickOnce-Deploying with Gecko Engine or Firefox ClickOnce-Plugin and Path-Vars...</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/06/16/ClickOnceDeployingWithGeckoEngineOrFirefoxClickOncePluginAndPathVars.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,f27b1d3c-a0e6-462b-94c0-4909d99eb25e.aspx</id>
    <published>2009-06-16T16:31:11.636+02:00</published>
    <updated>2009-06-16T16:35:36.7478464+02:00</updated>
    <category term="ClickOnce" label="ClickOnce" scheme="http://www.linqinpark.net/CategoryView,category,ClickOnce.aspx" />
    <category term="Gecko" label="Gecko" scheme="http://www.linqinpark.net/CategoryView,category,Gecko.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Today I wanted to make a Click-Once-Deployment
of an application which uses the Gecko engine via the GeckoFX.dll. For some reason
I decided to include the Gecko-Engine-Zip as a resource inside my .exe to unpack it
after installation by the program itself. Everything worked just as planned except
for my clickonce-downloaded Application - it simply did not work.<br />
After some tries I noticed that it only wont work when started from the start menu
rather than from the installation path itself. Then -later- it also worked from the
startmenu... very strange... 
<br />
I'll keep it short this time... so what's happened was that I started the clickonce
from Firefox - it has a plugin that supports clickonce. This -like also the click
in the startmenü- will start up the dfsvc.exe which then will start the application.
The dfsvc.exe itself has a behaviour that it wont be started twice but also terminates
after about 15 minutes when idle.<br />
The clou is that Firefox will add its program path to its Process-Enviroments "Path"
Variable which then will be inherited to the dfsvc.exe process and also then to my
applications process and since firefox places its path at first - the gecko engine
tried to pick all its needed dlls from the firefox path rather than the unpacked xulrunner
path in my installation directory.<br />
Since I tested very frequently at the beginning I kept the dfsvc.exe with the "wrong"
Path-Vars alive and only later after a little idle time a new instance was started
by clicking the prog in the startmenü and the pathes then were correct.<br />
So do you still think ClickOnce is cool?? ;-)<br /><p></p><img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=f27b1d3c-a0e6-462b-94c0-4909d99eb25e" /></div>
    </content>
  </entry>
  <entry>
    <title>SqlMetal exclude tables or no more Mr. nice GUI !?</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/05/25/SqlMetalExcludeTablesOrNoMoreMrNiceGUI.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,0e710a1a-b901-4c54-88c2-a9b485dc3a55.aspx</id>
    <published>2009-05-25T11:07:35.651+02:00</published>
    <updated>2009-05-25T11:19:09.4696032+02:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.linqinpark.net/CategoryView,category,NET.aspx" />
    <category term="C#" label="C#" scheme="http://www.linqinpark.net/CategoryView,category,C.aspx" />
    <category term="Linq" label="Linq" scheme="http://www.linqinpark.net/CategoryView,category,Linq.aspx" />
    <category term="LUA" label="LUA" scheme="http://www.linqinpark.net/CategoryView,category,LUA.aspx" />
    <category term="MSVC2k8" label="MSVC2k8" scheme="http://www.linqinpark.net/CategoryView,category,MSVC2k8.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Linq to sql comes with a really nice GUI
to create those .dbml-files (which then will be used to create code). This works well
for SQL Server Databases. Anyway - Linq to sql may also be used to access Sql Compact
Edition but you can't use the GUI to drag-drop tables from an SQL-CE-Database onto
the dbml-Editor. There are a lot of articles on the web which use SqlMetal to create
that dbml-file which then can be used inside Visual Studios GUI. Also there seemed
to be not only few people that wanted SqlMetal to skip some tables - this would be
very useful when you often change something in your DB-<br />
Schema but not want to drop every unused table every time again in the GUI or maybe
if you want to rename some columns afterwards... So - recently I was in this situation
and it was absolutely clear that there will be more of that work... so what I was
looking for was a way to script that dbml-generation with support to exclude and rename
tables and more (since we often deal with prefixes at our tables which I dont want
inside my LinqClasses). After some research I figured out a way that works pretty
nice for me. I wont go too much into details here because its too much..<br />
First of all I used ildasm to disassemble SqlMetal into IL-Code via dump. Then I replaced
most of the private words with public and added public here and there later when needed.
Then I re-assembled that code using ilasm with the /DLL option. Finally I had a nice
DLL where all that stuff I needed was no longer internal - it was all public - so
I went on and created an own console-project which uses the SqlMetal.dll (the filename
really MUST be SqlMetal.dll). I took the important parts of the old main method using
.NET-Reflector and finally I had the pieces seperated where the the dbml-structure
was extracted from an .sdf-file and where this structure was used to generate the
.dbml-file. Nice. This structure is very simple to modify and the changes are copied
to the dbml without any problems except if you change a name of a type and not change
the type-reference in the association objects. Finally I did not want to write special
code into this project everytime I have to deal with a new .sdf-file I decided to
use the luainterface project to embed the lua-scripting language (very often used
in games) to use lua-code for callbacks such as table exclusion, table and relation
renaming, column renaming and whatever comes away... all I now have to do when it
comes to dbml creation is to start my console<br />
tool with a little lua-script as an argument and this (might) register some hooks
where I may react to some columns by returning a different name. quite simple isn't
it?? Oh well - some might be wondering how this stuff works - since sqlMetal is strong
named... well since I will use this tool only in development I simply skipped the
Strongname verification on my machine for that assembly by reflecting its strong name
and using sn.exe to add the skipping rule like that<br />
sn.exe -Vr *,&lt;strongname-key&gt;<br />
I don't know if this is possible with earlier versions of sn.exe - I am using VS2008
SP1 by now.<br />
So in the end I named the prog SqlCerium - since it is SqlMetal specialized for SQL
CE and Ce is the chemical symbol for Cerium which is also a metal :-) 
<br /><p></p><img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=0e710a1a-b901-4c54-88c2-a9b485dc3a55" /></div>
    </content>
  </entry>
  <entry>
    <title>HTTP could not register URL http://+:8080/</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/05/19/HTTPCouldNotRegisterURLHttp8080.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,7881d7f2-ec58-4a4e-b65c-b927c9b9ea75.aspx</id>
    <published>2009-05-19T10:39:48.012+02:00</published>
    <updated>2009-05-25T10:02:42.7542304+02:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.linqinpark.net/CategoryView,category,NET.aspx" />
    <category term="Security" label="Security" scheme="http://www.linqinpark.net/CategoryView,category,Security.aspx" />
    <category term="WCF" label="WCF" scheme="http://www.linqinpark.net/CategoryView,category,WCF.aspx" />
    <category term="net.tcp" label="net.tcp" scheme="http://www.linqinpark.net/CategoryView,category,nettcp.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Recently I tried to add a WCF based service
channel to my NT-Service to be able to handle client requests from a GUI. I never
noticed any problems with that kind of stuff so the more I was surprised as I got
that error from the headline... Well the difference was that I usually worked (as
developers mostly do ; ) with an useraccount which had administrative privileges.
The service instead runs as a Network Service... interesting... even if it would be
able to open a port and listen to it - it was not abled to use WCF to listen on an
httpBinding. I found a few infos in the web but they were mostly regarding problems
under Windows Vista and their solutions were all using netsh - which on my system
(WinXP SP3) worked totally different so I skipped those experiments. Finally I found
a much better Blogpost which featured <u><a href="http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx">some
more solutions</a></u>. On my system I succeeded by using the HttpNamespaceManager
and adding the base-address (with that strange http://+:port/ Syntax) with access
to the Network Service. So thx for that blog : )<br />
Anyway - it might seem a little strange that a network service program can open any
port and listen to it and maybe handle http-protocol by itself but not use some sort
of windows-aided http-listening. So this may be more of a feature restriction than
a real security issue I think...<br /><br />
Supplemental: I worked around that stuff by now with using a net.tcp binding instead
of a Http. So - even it seems possible to add these http-stuff programmatically in
the installer - this may be an alternative for someone too.<br /><img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=7881d7f2-ec58-4a4e-b65c-b927c9b9ea75" /></div>
    </content>
  </entry>
  <entry>
    <title>Of ThreadAbortException, ResetAbort and IKVM...</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/03/30/OfThreadAbortExceptionResetAbortAndIKVM.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,b3713e44-33f3-436e-9006-7a2134433652.aspx</id>
    <published>2009-03-30T19:45:18.407+02:00</published>
    <updated>2009-03-30T19:50:02.9065344+02:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.linqinpark.net/CategoryView,category,NET.aspx" />
    <category term="C#" label="C#" scheme="http://www.linqinpark.net/CategoryView,category,C.aspx" />
    <category term="IKVM" label="IKVM" scheme="http://www.linqinpark.net/CategoryView,category,IKVM.aspx" />
    <category term="Java" label="Java" scheme="http://www.linqinpark.net/CategoryView,category,Java.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Today I was adding a simple timeout functionality
that should stop a thread after a period of time by calling thread.Abort(). It always
did the right thing in my testProject so the more I was wondering why my actual thread
survived the abort by just catching the exception instead of the usual pattern that
even if the ThreadAbortException is caught it automatically will be re-thrown at the
end of the catch (or at the end of the finally...) unless you disarm it by calling
Thread.ResetAbort(). I did not call ResetAbort at all so I took a closer look to what
I was doing in this thread... I was using IKVM to create a .NET library out of an
JAVA-jar-file to use it from C#. The clou is, that ikvmc compiles java-Catch-Blocks
to C# with an additional MapperCall and this will call ResetAbort which avoids rethrowing
after the fellowing nested catch blocks. Not exactly what I expected but you deal
with this behaviour easily since the exception is still thrown so you can add an extra
catch Block for ThreadAbortException and exit as wanted.<br /><p></p><img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=b3713e44-33f3-436e-9006-7a2134433652" /></div>
    </content>
  </entry>
  <entry>
    <title>Excel ODBC truncates cells at 255 / 256 chars...</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/02/20/ExcelODBCTruncatesCellsAt255256Chars.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,24308d92-82f5-4981-8b53-900f25ccff25.aspx</id>
    <published>2009-02-20T17:52:47.76+01:00</published>
    <updated>2009-02-20T17:56:14.99892+01:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.linqinpark.net/CategoryView,category,NET.aspx" />
    <category term="C#" label="C#" scheme="http://www.linqinpark.net/CategoryView,category,C.aspx" />
    <category term="Excel" label="Excel" scheme="http://www.linqinpark.net/CategoryView,category,Excel.aspx" />
    <category term="ODBC" label="ODBC" scheme="http://www.linqinpark.net/CategoryView,category,ODBC.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Since I was using ODBC to read/write Excel
documents recently I was surprised not to have too much problems with it. Today a
problem occured - funny thing because I was nearly through with changing the application
to finally use SqlCE as persistency layer... 
<br />
The problem was that we needed some large texts placed in some columns but excel just
truncated it down to 255 chars (256 if you count the ' thats visible in excel). I
didn't had much time to write some workaround at this point so I tested a little bit
hoping to find a shorter workaround.<br />
Of Course todays excel can handle more than 256 chars in a cell but when you save
the document you'll get a warning for some incompatibility issues. Nice - file saved
in "new" format - opened my program again - inserted a large text and ye......no -
again truncated to 256 chars. So the ODBC driver seemed to switch back to old format.
Since the driver seemed capable of handling xls files of office 12.0 (2007) according
to the descriptions in the ODBC-Administration dialog I was looking for a simple way
to make him use the new format. Finally I found something on the web saying that the
driver determines the format by scanning some rows and while reading this I rememberd
something I red earlier; there is an option "Rows to scan" in the ODBC-config and/or
in the connection-string which was always set to 8. Well putting a large text in one
cell in the first 8 rows and SUCCESS now even my application can write texts with
more than 256 chars...<br />
At this point I stopped testing so maybe it is possible to increase the RowsToScan
variable to a max value or something - for me my quick and dirty workaround was done
here ;-)<p></p><img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=24308d92-82f5-4981-8b53-900f25ccff25" /></div>
    </content>
  </entry>
  <entry>
    <title>Of Application.Exit, FormClosing and Modal Dialogs...</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/02/19/OfApplicationExitFormClosingAndModalDialogs.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,98c0109e-d0fb-4e8d-97c4-88878d01a812.aspx</id>
    <published>2009-02-19T12:06:51.37+01:00</published>
    <updated>2009-02-19T12:28:29.3189272+01:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.linqinpark.net/CategoryView,category,NET.aspx" />
    <category term="C#" label="C#" scheme="http://www.linqinpark.net/CategoryView,category,C.aspx" />
    <category term="WinForms" label="WinForms" scheme="http://www.linqinpark.net/CategoryView,category,WinForms.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Today I wanted to Show a Modal Dialog until
something was stored in the FormClosing event. For some reason at another point in
an UnhandledExeptionHandler I called Application.Exit(). The result was another Exception
"Collection was modified; enumeration operation may not execute"...<br />
I was abled to reproduce this effect in a very simple WinForms-example with two forms
and a button:<br /><pre><span style="color: Black; background-color: transparent; font-family: Courier New; font-size: 11px;"><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"> private</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">void</span> button1_Click(<span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">object</span> sender,
EventArgs e) { Application.Exit(); } <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">private</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">void</span> Form1_FormClosing(<span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">object</span> sender,
FormClosingEventArgs e) { <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">using</span> (var
frm <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">new</span> Form2())
{ frm.ShowDialog(<span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;"></span>);
} }</span></pre>So the clue is that Application.Exit enumerates its forms and raises
the FormClosing event - which... opens a window on its own and so modifies the Applications
Form Enumeration which led to this bug. 
<br />
btw a MessageBox.Show did NOT produce this problem maybe because its just mapped to
an Win32 API-Call that wont modify the .NET-Applications-Formlist.<br />
I worked around that problem by simply Closing the Window instead (or just before
App.Exit).<br /><p></p><img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=98c0109e-d0fb-4e8d-97c4-88878d01a812" /></div>
    </content>
  </entry>
  <entry>
    <title>linqs Delay Loaded needs object Tracking</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/02/03/linqsDelayLoadedNeedsObjectTracking.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,c3f84c04-d85d-4158-9ed4-002ffb2c4d11.aspx</id>
    <published>2009-02-03T15:54:21.2480416+01:00</published>
    <updated>2009-02-03T15:54:21.2480416+01:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.linqinpark.net/CategoryView,category,NET.aspx" />
    <category term="C#" label="C#" scheme="http://www.linqinpark.net/CategoryView,category,C.aspx" />
    <category term="Linq" label="Linq" scheme="http://www.linqinpark.net/CategoryView,category,Linq.aspx" />
    <content type="html">A few days ago I was about to use the linq to SQL column property "Delay Loaded" for the first time. I wanted to return some plain data objects with an (propably larger) Image field left empty to load it later only if the entity would be selected in the GUI. So I used one Method to give me a set of objects with an empty image field and later another method to give me a specific image. &lt;br&gt;
I already knew this Delay Loaded-Property would cause the creaton of a System.Data.Linq.Link&amp;lt;T&amp;gt;
internally. So I thought as soon as I would do a read-access to that image-column
the full content would be loaded from the database (though even write-accesses will
imply a pre-read of that data so dont think about avoiding loading huge data by setting
the field to another value).&lt;br&gt;
I used my datacontext in a using block where I typically set the ObjectTrackingEnabled
to false because I dont needed that if I only do readings to the DB. But in fact it
turned out that this would also avoid loading fields that are "Delay Loaded" - so
ObjectTrackingEnabled set back to true and everything worked fine as long as I initially
accessed the image field &lt;b&gt;inside&lt;/b&gt; the using-construct (ok that makes sense easily..). 
&lt;br&gt;
I checked against the documentation where I found a short page about how to retrieve
information as read-only and found out that setting OTE to false will also set 
&lt;mshelp:link tabindex="0" keywords="P:System.Data.Linq.DataContext.DeferredLoadingEnabled"&gt;DeferredLoadingEnabled&lt;/mshelp:link&gt;
to false and that would skip the expanding of one-to-one and one-to-many relations
- BUT no word about Linq.Links :-) 
&lt;br&gt;
Looking into the docs of DeferredLoadingEnabled also told me that if OTE is false
DLE is not only set to false - its ignored completely - and again nothing about Delay-Loaded
Fields. So maybe this info was helpful..&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=c3f84c04-d85d-4158-9ed4-002ffb2c4d11" /&gt;</content>
  </entry>
  <entry>
    <title>WSSF ME and "Is Wrapped"-Property messes up</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/01/29/WSSFMEAndIsWrappedPropertyMessesUp.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,412e9aab-a6df-477a-8f71-f69913a805c2.aspx</id>
    <published>2009-01-29T19:01:26.5621962+01:00</published>
    <updated>2009-01-29T19:01:26.5621962+01:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.linqinpark.net/CategoryView,category,NET.aspx" />
    <category term="C#" label="C#" scheme="http://www.linqinpark.net/CategoryView,category,C.aspx" />
    <category term="WCF" label="WCF" scheme="http://www.linqinpark.net/CategoryView,category,WCF.aspx" />
    <category term="WSSF ME" label="WSSF ME" scheme="http://www.linqinpark.net/CategoryView,category,WSSFME.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">While using the Web Service Software Factory
Modelling Edition to build up some WCF-Services I stumbled across a little Bug which
was hard to find in the first place. While I was using the Host-Explorer to create
my TestClient Proxies I noticed that some Endpoints led to creating wrong proxies
where i.e. all Guids had been replaced by strings and many other stuff. Even with
the Visual Studio Proxy generator some strange stuff occured such as generating classes
like DoSomethingRequest1 which contained only one property of the Type DoSomethingRequest
- so it seemed a bit of doublewrapped..<br />
Finally I figured out what led to such behaviours: if you're designing a ServiceContract
and putting more than one Message Part into a message you will get an Error saying
that you have to set the "Is Wrapped"-Property of the message to True. This seems
to be not a problem as long as the Request the message belongs to does not have another
message associated (i.e. Request and Response) which has its "Is wrapped"-Property
to False because it may have less than two Parts. Only if message is "wrapped" and
one is not this problem occures so don't trap into that one ;-)<br /><p></p><img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=412e9aab-a6df-477a-8f71-f69913a805c2" /></div>
    </content>
  </entry>
  <entry>
    <title>A really good explanation of Certificates( ... Finally)</title>
    <link rel="alternate" type="text/html" href="http://www.linqinpark.net/2009/01/21/AReallyGoodExplanationOfCertificatesFinally.aspx" />
    <id>http://www.linqinpark.net/PermaLink,guid,2687d167-e081-4e2d-bf25-ece8748d2de0.aspx</id>
    <published>2009-01-21T18:00:19.973+01:00</published>
    <updated>2009-01-21T18:03:42.9652896+01:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.linqinpark.net/CategoryView,category,NET.aspx" />
    <category term="C#" label="C#" scheme="http://www.linqinpark.net/CategoryView,category,C.aspx" />
    <category term="Certificates" label="Certificates" scheme="http://www.linqinpark.net/CategoryView,category,Certificates.aspx" />
    <category term="WCF" label="WCF" scheme="http://www.linqinpark.net/CategoryView,category,WCF.aspx" />
    <category term="X.509" label="X.509" scheme="http://www.linqinpark.net/CategoryView,category,X509.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">after a long journey of trying to get several
WCF-STS-examples to run all at the latest failing at my selfmade certificates and
endless hours of experimenting without exactly knowing what I was doing finally I
found a simple but well explained blogentry which handles the basics of this stuff. 
<br /><a href="http://www.reliablesoftware.com/DasBlog/PermaLink,guid,c953fbc9-34f2-48d4-ba33-55d621a48d7f.aspx">Part
1</a><br /><a href="http://www.reliablesoftware.com/DasBlog/PermaLink,guid,6507b2c6-473e-4ddc-9e66-8a161e5df6e9.aspx">Part
2</a><br /><br /><p></p><img width="0" height="0" src="http://www.linqinpark.net/aggbug.ashx?id=2687d167-e081-4e2d-bf25-ece8748d2de0" /></div>
    </content>
  </entry>
</feed>