Xwiki login issue after upgrading
Hi, We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently. We backed up all spaces of the old installation and copied/restored them into the new installation. Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login: E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome Brings up the login page, after successful login: The requested document could not be found. The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid%3D3f3igkglkf9b7 So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem. Any idea what the problem could be? HANS ------------------------------------------------------------------------------------------ LINZ AG für Energie, Telekommunikation, Verkehr und Kommunale Dienste A-4021 Linz, Wiener Straße 151, Postfach 1300, Tel. +43/732/3400-0, E-Mail: [email protected] Diese E-Mail wurde auf Computer-Viren geprüft. Verwendete Anti-Virus Software: Trend Micro ScanMail/Pattern 4.549.00-7 Nähere Informationen über E-Mails von der LINZ AG finden Sie im Internet unter: http://www.linzag.at/emailsicherheit This E-Mail was scanned for computer viruses. Used anti-virus software: Trend Micro ScanMail/Pattern 4.549.00-7 In order to find out more information on E-Mails you received by LINZ AG, go to: http://www.linzag.at/emailsecurity ------------------------------------------------------------------------------------------
Hi Hans, On Jun 21, 2007, at 12:08 PM, PRÜLLER Hans Jörg wrote:
Hi,
We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently.
We backed up all spaces of the old installation and copied/restored them into the new installation.
Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login:
E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome
Brings up the login page, after successful login: The requested document could not be found.
The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid% 3D3f3igkglkf9b7
So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem.
Any idea what the problem could be?
Several users have raised this. I don't know yet what is causing the issue but it seems the ";" before jsession id is URL-encoded and it shouldn't. In any case just delete the part after the page name: xwiki/bin/view/XWiki/XWikiLogin That should work fine I think. In any case we need to create a jira issue about this. Would you mind doing that and explain how I can reproduce this? (I've tried without success) Thanks -Vincent
Oops. Sorry, I flunked hex-encoded character decoding and didn't notice that %3B was not a question-mark (and also forgot that the semicolon was the separator for jsessionid). However, I don't think that this was his problem because unless XWiki actually does now have an XWiki.XWikiLogin page that actually does something under the "view" action, the URL is wrong with or without the session ID. And I'm too busy to look it up now, but I didn't think that URL-encoding the parameters kills the separators. brain[sic] ________________________________ From: Vincent Massol [mailto:[email protected]] Sent: Thursday, June 21, 2007 5:41 AM To: [email protected] Subject: Re: [xwiki-users] Xwiki login issue after upgrading Hi Hans, On Jun 21, 2007, at 12:08 PM, PRÜLLER Hans Jörg wrote: Hi, We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently. We backed up all spaces of the old installation and copied/restored them into the new installation. Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login: E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome <http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome> Brings up the login page, after successful login: The requested document could not be found. The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid%3D3f3igkglkf9b7 So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem. Any idea what the problem could be? Several users have raised this. I don't know yet what is causing the issue but it seems the ";" before jsession id is URL-encoded and it shouldn't. In any case just delete the part after the page name: xwiki/bin/view/XWiki/XWikiLogin That should work fine I think. In any case we need to create a jira issue about this. Would you mind doing that and explain how I can reproduce this? (I've tried without success) Thanks -Vincent
I'm experiencing this with XWiki 1.1 milestone 1. I used WebScarab as a snooping HTTP proxy to observe what goes on. Here's the flow: Request: GET http://itwiki.mid7000nt.mlan:80/xwiki/bin/ Response: 302 http://itwiki.mid7000nt.mlan/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=4bm... Request: GET http://itwiki.mid7000nt.mlan:80/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=... Response: 302 http://itwiki.mid7000nt.mlan/xwiki/bin/login/XWiki/XWikiLogin?xredirect=%2Fx... At this point, I'm looking at the login screen. But you can see that I've been redirected *twice*, not *once*. The protected page I tried to get reuslted in me being redirected to the login page with the jsession ID in the path. For whatever reason, XWiki doesn't recognize me as having access to that page when the jsessionid is attached, so it redirects me again! That second redirect no longer has a jsessionid appended to it. However, the referring URL that it encodes as the redirect URL is now the URL of the first 302. So when I finally log in, it picks up *that* redirect URL, rather than the original I tried to go to. So I think the problem has to do with either the generation of the first login URL, or something in the stack not recognizing that I have access ot the first redirect URL because of the appended jsessionid. Regards, Brian. "THOMAS, BRIAN M (ATTSI)" <[email protected]> To <[email protected]> 06/21/2007 10:17 cc AM Subject RE: [xwiki-users] Xwiki login issue Please respond to after upgrading xwiki-users@objec tweb.org Oops. Sorry, I flunked hex-encoded character decoding and didn't notice that %3B was not a question-mark (and also forgot that the semicolon was the separator for jsessionid). However, I don't think that this was his problem because unless XWiki actually does now have an XWiki.XWikiLogin page that actually does something under the "view" action, the URL is wrong with or without the session ID. And I'm too busy to look it up now, but I didn't think that URL-encoding the parameters kills the separators. brain[sic] From: Vincent Massol [mailto:[email protected]] Sent: Thursday, June 21, 2007 5:41 AM To: [email protected] Subject: Re: [xwiki-users] Xwiki login issue after upgrading Hi Hans, On Jun 21, 2007, at 12:08 PM, PRÜLLER Hans Jörg wrote: Hi, We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently. We backed up all spaces of the old installation and copied/restored them into the new installation. Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login: E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome Brings up the login page, after successful login: The requested document could not be found. The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid%3D3f3igkglkf9b7 So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem. Any idea what the problem could be? Several users have raised this. I don't know yet what is causing the issue but it seems the ";" before jsession id is URL-encoded and it shouldn't. In any case just delete the part after the page name: xwiki/bin/view/XWiki/XWikiLogin That should work fine I think. In any case we need to create a jira issue about this. Would you mind doing that and explain how I can reproduce this? (I've tried without success) Thanks -Vincent -- You receive this message as a subscriber of the [email protected] mailing list. To unsubscribe: mailto:[email protected] For general help: mailto:[email protected]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws ----------------------------------------- CONFIDENTIALITY STATEMENT: This e-mail transmission contains information that is intended to be confidential. It is intended only for the addressee named above. If you receive this e-mail in error, please do not read, copy, or disseminate it. If you are not the intended recipient, any disclosure, copying, distribution or use of the contents of this information is prohibited. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please erase it from your computer system. Your assistance in correcting this error is appreciated.
Yes, I also would assume that this is not related to wrong bookmarks or non-existent pagenames. We imported the DS/Webhome page from an older installation, perhaps there was a lowercase H Used in Webhome, I dont know. But the page exists. Clicking on the browser-favourite right When I'm logged in, the page is displayed successfully! So somehow it has to do with The login-page and redirection, just as Brian explained below! Hans -----Ursprüngliche Nachricht----- Von: [email protected] [mailto:[email protected]] Gesendet: Donnerstag, 21. Juni 2007 19:02 An: [email protected] Betreff: RE: [xwiki-users] Xwiki login issue after upgrading I'm experiencing this with XWiki 1.1 milestone 1. I used WebScarab as a snooping HTTP proxy to observe what goes on. Here's the flow: Request: GET http://itwiki.mid7000nt.mlan:80/xwiki/bin/ Response: 302 http://itwiki.mid7000nt.mlan/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=4bm... Request: GET http://itwiki.mid7000nt.mlan:80/xwiki/bin/login/XWiki/XWikiLogin;jsessionid=... Response: 302 http://itwiki.mid7000nt.mlan/xwiki/bin/login/XWiki/XWikiLogin?xredirect=%2Fx... At this point, I'm looking at the login screen. But you can see that I've been redirected *twice*, not *once*. The protected page I tried to get reuslted in me being redirected to the login page with the jsession ID in the path. For whatever reason, XWiki doesn't recognize me as having access to that page when the jsessionid is attached, so it redirects me again! That second redirect no longer has a jsessionid appended to it. However, the referring URL that it encodes as the redirect URL is now the URL of the first 302. So when I finally log in, it picks up *that* redirect URL, rather than the original I tried to go to. So I think the problem has to do with either the generation of the first login URL, or something in the stack not recognizing that I have access ot the first redirect URL because of the appended jsessionid. Regards, Brian. "THOMAS, BRIAN M (ATTSI)" <[email protected]> To <[email protected]> 06/21/2007 10:17 cc AM Subject RE: [xwiki-users] Xwiki login issue Please respond to after upgrading xwiki-users@objec tweb.org Oops. Sorry, I flunked hex-encoded character decoding and didn't notice that %3B was not a question-mark (and also forgot that the semicolon was the separator for jsessionid). However, I don't think that this was his problem because unless XWiki actually does now have an XWiki.XWikiLogin page that actually does something under the "view" action, the URL is wrong with or without the session ID. And I'm too busy to look it up now, but I didn't think that URL-encoding the parameters kills the separators. brain[sic] From: Vincent Massol [mailto:[email protected]] Sent: Thursday, June 21, 2007 5:41 AM To: [email protected] Subject: Re: [xwiki-users] Xwiki login issue after upgrading Hi Hans, On Jun 21, 2007, at 12:08 PM, PRÜLLER Hans Jörg wrote: Hi, We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently. We backed up all spaces of the old installation and copied/restored them into the new installation. Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login: E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome Brings up the login page, after successful login: The requested document could not be found. The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid%3D3f3igkglkf9b7 So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem. Any idea what the problem could be? Several users have raised this. I don't know yet what is causing the issue but it seems the ";" before jsession id is URL-encoded and it shouldn't. In any case just delete the part after the page name: xwiki/bin/view/XWiki/XWikiLogin That should work fine I think. In any case we need to create a jira issue about this. Would you mind doing that and explain how I can reproduce this? (I've tried without success) Thanks -Vincent -- You receive this message as a subscriber of the [email protected] mailing list. To unsubscribe: mailto:[email protected] For general help: mailto:[email protected]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws ----------------------------------------- CONFIDENTIALITY STATEMENT: This e-mail transmission contains information that is intended to be confidential. It is intended only for the addressee named above. If you receive this e-mail in error, please do not read, copy, or disseminate it. If you are not the intended recipient, any disclosure, copying, distribution or use of the contents of this information is prohibited. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please erase it from your computer system. Your assistance in correcting this error is appreciated. ------------------------------------------------------------------------------------------ LINZ AG für Energie, Telekommunikation, Verkehr und Kommunale Dienste A-4021 Linz, Wiener Straße 151, Postfach 1300, Tel. +43/732/3400-0, E-Mail: [email protected] Diese E-Mail wurde auf Computer-Viren geprüft. Verwendete Anti-Virus Software: Trend Micro ScanMail/Pattern 4.553.00-7 Nähere Informationen über E-Mails von der LINZ AG finden Sie im Internet unter: http://www.linzag.at/emailsicherheit This E-Mail was scanned for computer viruses. Used anti-virus software: Trend Micro ScanMail/Pattern 4.553.00-7 In order to find out more information on E-Mails you received by LINZ AG, go to: http://www.linzag.at/emailsecurity ------------------------------------------------------------------------------------------
Vincent, I created the JIRA issue http://jira.xwiki.org/jira/browse/XWIKI-1394 regards, HANS ________________________________ Von: Vincent Massol [mailto:[email protected]] Gesendet: Donnerstag, 21. Juni 2007 12:41 An: [email protected] Betreff: Re: [xwiki-users] Xwiki login issue after upgrading Hi Hans, On Jun 21, 2007, at 12:08 PM, PRÜLLER Hans Jörg wrote: Hi, We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently. We backed up all spaces of the old installation and copied/restored them into the new installation. Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login: E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome <http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome> Brings up the login page, after successful login: The requested document could not be found. The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid%3D3f3igkglkf9b7 So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem. Any idea what the problem could be? Several users have raised this. I don't know yet what is causing the issue but it seems the ";" before jsession id is URL-encoded and it shouldn't. In any case just delete the part after the page name: xwiki/bin/view/XWiki/XWikiLogin That should work fine I think. In any case we need to create a jira issue about this. Would you mind doing that and explain how I can reproduce this? (I've tried without success) Thanks -Vincent ------------------------------------------------------------------------------------------ LINZ AG für Energie, Telekommunikation, Verkehr und Kommunale Dienste A-4021 Linz, Wiener Straße 151, Postfach 1300, Tel. +43/732/3400-0, E-Mail: [email protected] Diese E-Mail wurde auf Computer-Viren geprüft. Verwendete Anti-Virus Software: Trend Micro ScanMail/Pattern 4.553.00-7 Nähere Informationen über E-Mails von der LINZ AG finden Sie im Internet unter: http://www.linzag.at/emailsicherheit This E-Mail was scanned for computer viruses. Used anti-virus software: Trend Micro ScanMail/Pattern 4.553.00-7 In order to find out more information on E-Mails you received by LINZ AG, go to: http://www.linzag.at/emailsecurity ------------------------------------------------------------------------------------------
Has anyone created the JIRA issue? I'd like to vote for it and track it. Regards, Brian. Vincent Massol <[email protected] et> To [email protected] 06/21/2007 06:41 cc AM Subject Re: [xwiki-users] Xwiki login issue Please respond to after upgrading xwiki-users@objec tweb.org Hi Hans, On Jun 21, 2007, at 12:08 PM, PRÜLLER Hans Jörg wrote: Hi, We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently. We backed up all spaces of the old installation and copied/restored them into the new installation. Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login: E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome Brings up the login page, after successful login: The requested document could not be found. The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid%3D3f3igkglkf9b7 So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem. Any idea what the problem could be? Several users have raised this. I don't know yet what is causing the issue but it seems the ";" before jsession id is URL-encoded and it shouldn't.. In any case just delete the part after the page name: xwiki/bin/view/XWiki/XWikiLogin That should work fine I think. In any case we need to create a jira issue about this. Would you mind doing that and explain how I can reproduce this? (I've tried without success) Thanks -Vincent -- You receive this message as a subscriber of the [email protected] mailing list. To unsubscribe: mailto:[email protected] For general help: mailto:[email protected]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws ----------------------------------------- CONFIDENTIALITY STATEMENT: This e-mail transmission contains information that is intended to be confidential. It is intended only for the addressee named above. If you receive this e-mail in error, please do not read, copy, or disseminate it. If you are not the intended recipient, any disclosure, copying, distribution or use of the contents of this information is prohibited. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please erase it from your computer system. Your assistance in correcting this error is appreciated.
http://jira.xwiki.org/jira/browse/XWIKI-1394 -----Ursprüngliche Nachricht----- Von: [email protected] [mailto:[email protected]] Gesendet: Freitag, 22. Juni 2007 23:05 An: [email protected] Betreff: Re: [xwiki-users] Xwiki login issue after upgrading Has anyone created the JIRA issue? I'd like to vote for it and track it. Regards, Brian. Vincent Massol <[email protected] et> To [email protected] 06/21/2007 06:41 cc AM Subject Re: [xwiki-users] Xwiki login issue Please respond to after upgrading xwiki-users@objec tweb.org Hi Hans, On Jun 21, 2007, at 12:08 PM, PRÜLLER Hans Jörg wrote: Hi, We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently. We backed up all spaces of the old installation and copied/restored them into the new installation. Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login: E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome Brings up the login page, after successful login: The requested document could not be found. The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid%3D3f3igkglkf9b7 So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem. Any idea what the problem could be? Several users have raised this. I don't know yet what is causing the issue but it seems the ";" before jsession id is URL-encoded and it shouldn't.. In any case just delete the part after the page name: xwiki/bin/view/XWiki/XWikiLogin That should work fine I think. In any case we need to create a jira issue about this. Would you mind doing that and explain how I can reproduce this? (I've tried without success) Thanks -Vincent -- You receive this message as a subscriber of the [email protected] mailing list. To unsubscribe: mailto:[email protected] For general help: mailto:[email protected]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws ----------------------------------------- CONFIDENTIALITY STATEMENT: This e-mail transmission contains information that is intended to be confidential. It is intended only for the addressee named above. If you receive this e-mail in error, please do not read, copy, or disseminate it. If you are not the intended recipient, any disclosure, copying, distribution or use of the contents of this information is prohibited. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please erase it from your computer system. Your assistance in correcting this error is appreciated. ------------------------------------------------------------------------------------------ LINZ AG für Energie, Telekommunikation, Verkehr und Kommunale Dienste A-4021 Linz, Wiener Straße 151, Postfach 1300, Tel. +43/732/3400-0, E-Mail: [email protected] Diese E-Mail wurde auf Computer-Viren geprüft. Verwendete Anti-Virus Software: Trend Micro ScanMail/Pattern 4.559.00-7 Nähere Informationen über E-Mails von der LINZ AG finden Sie im Internet unter: http://www.linzag.at/emailsicherheit This E-Mail was scanned for computer viruses. Used anti-virus software: Trend Micro ScanMail/Pattern 4.559.00-7 In order to find out more information on E-Mails you received by LINZ AG, go to: http://www.linzag.at/emailsecurity ------------------------------------------------------------------------------------------
I don't know if this is an error or not, but I notice that you are trying to access a page called Webhome; by default, however, the XWiki homepage for a space is named WebHome, and XWiki's pagenames are case-sensitive. For example, that's the page you'll get if you just request /xwiki/bin/view/DS/. You also seem to have cookies turned off in your browser, and XWiki (or more correctly, the servlet container it runs in) is doing the right thing by decorating your URL with the session ID as an argument. This is not a problem, I believe, but bookmarking it as-is would only work while that session was active, and possibly only for the original requestor. I'm not at all sure about the redirection, since XWiki.XWikiLogin is a page that ordinarily doesn't exist. It's given as a pagename to the /bin/login action, but it's generally ignored (guess how I know that...). Your redirection, however, was to the /bin/view action, and it correctly reported that the document doesn't exist. The sequence of events, as it appears, then, is this (without the prefixes that got it to the XWiki servlet, and $originalPage as your original URL): * browser requests $originalPage, which (probably) doesn't exist * XWiki redirects to /bin/login/XWiki/XWikiLogin?xredirect=$originalpage * user types in name & password, submits form to the same URL * login action accepts password, sets user ID, and sends redirect to the page named in its "xredirect" parameter, which should have been $originalpage * browser again requests $originalpage, which still doesn't exist * XWiki redirects to /bin/view/XWiki/XWikiLogin, which also doesn't exist. This last bit is the part that puzzles me, but it's probably because somebody set that URL as the default page, or possibly as a 404 redirect page. Regardless, wherever that URL appears, and whether or not it is the root problem, it is wrong; if you want it to redirect to the login page, you must change /bin/view/XWiki/XWikiLogin to /bin/login/XWiki/XWikiLogin. Note: this is based on my understanding from v0.9.840 and knowing that v1.0 fixed the long-lamented behavior that simply displayed a blank page as when a nonexistent page was requested, with no indication other than that it was empty. Under 0.9.840, it would happily have displayed DS.Webhome as though it actually existed, and you'd have been clueless, except that you might have expected a WebHome which you knew had some content. I imagine that the reason it changed only after you migrated was that something about the default handling of nonexistent pages probably changed. If it was XWiki that put in that view URL, shame on them, but I rather doubt it. brain[sic] ________________________________ From: PRÜLLER Hans Jörg [mailto:[email protected]] Sent: Thursday, June 21, 2007 5:08 AM To: [email protected] Subject: [xwiki-users] Xwiki login issue after upgrading Hi, We upgraded our standalone wiki installation (jetty,hsql) 1.0-rc1 to 1.1-milestone-2 recently. We backed up all spaces of the old installation and copied/restored them into the new installation. Now, if we directly try to access a page in a space restored from the old installation we get An error page after the successful login: E.g. accessing the following url directly via browser: http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome <http://asj5.linzag.at:9021/xwiki/bin/view/DS/Webhome> Brings up the login page, after successful login: The requested document could not be found. The Browser URL is: xwiki/bin/view/XWiki/XWikiLogin%3Bjsessionid%3D3f3igkglkf9b7 So, somehow the login page tries to forward to a wrong URL after successful login. Entering the requested URL Manually again in logged in state, the page appears without any problem. Any idea what the problem could be? HANS ----------------------------------------------------------------------------------------------------------------------------------- LINZ AG für Energie, Telekommunikation, Verkehr und Kommunale Dienste A-4021 Linz, Wiener Straße 151, Postfach 1300, Tel. +43/732/3400-0, E-Mail: [email protected] Diese E-Mail wurde auf Computer-Viren geprüft. Verwendete Anti-Virus Software: Trend Micro ScanMail/Pattern 4.549.00-7 Nähere Informationen über E-Mails von der LINZ AG finden Sie im Internet unter: http://www.linzag.at/emailsicherheit This E-Mail was scanned for computer viruses. Used anti-virus software: Trend Micro ScanMail/Pattern 4.549.00-7 In order to find out more information on E-Mails you received by LINZ AG, go to: http://www.linzag.at/emailsecurity -----------------------------------------------------------------------------------------------------------------------------------
participants (4)
-
BSayatovic@amig.com -
PRÜLLER Hans Jörg -
THOMAS, BRIAN M (ATTSI) -
Vincent Massol