<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.18.3">
</HEAD>
<BODY>
I've come across an interesting problem which is not specific to RT, but is related to viewing certain attachments in RT via the Konqueror browser - thought I would share my experience here to save others the pain.  Specifically I think its a bug in Konqueror and I'll be posting as a bug in bugs.kde.org as well.<BR>
<BR>
A few of my users were complaining about RT being slow - and after some testing I found that firefox was the issue - and switching them to konqueror (3.5.10) made a huge difference - its very fast by comparison.<BR>
<BR>
But with konqueror - Ticket attachments for OpenOffice documents (odt, ods, doc, xls, etc) wouldn't open.  Specifically OpenOffice would generate this message: "Error reading data from the Internet.  Server error message: 503 Service Unavailable."<BR>
<BR>
After alot of digging, I found that the problem lies in the Exec line in the system ".desktop" files.<BR>
<BR>
OpenOffice can handle URLs, so the Exec line is defined under (k)ubuntu in ooo-writer.desktop as:<BR>
<BR>
Exec=ooffice -writer %U<BR>
<BR>
Konqueror uses kioexec for downloading, which follows the conventions defined here: <A HREF="http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s06.html">http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s06.html</A> , and thus launches OpenOffice with the http URL of the link to the attachment.  Because there are no authentication credentials, OO cannot access the URL thus the 503 error.<BR>
<BR>
Changing the desktop entry to use "%f" instead of "%U" fixes the problem - the file gets saved to a temp directory and OpenOffice launches with a local document - which is how firefox behaves.<BR>
<BR>
But this breaks things like sftp:// urls because it downloads the file - even though OpenOffice can handle sftp urls properly.<BR>
<BR>
So konqueror, being both a file browser and a web browser, has adopted a common approach to URL handling which doesn't work in the real world (of authenticated web sessions).<BR>
<BR>
-Bob
</BODY>
</HTML>