<?xml version="1.0" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "http://bugzilla.globus.org/bugzilla/bugzilla.dtd">

<bugzilla version="3.2.3"
          urlbase="http://bugzilla.globus.org/bugzilla/"
          maintainer="bacon@mcs.anl.gov"
>

    <bug>
          <bug_id>5112</bug_id>
          
          <creation_ts>2007-03-20 08:49</creation_ts>
          <short_desc>submitting job error</short_desc>
          <delta_ts>2008-05-27 12:00:51</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>GRAM</product>
          <component>wsrf managed job factory service</component>
          <version>4.0.3</version>
          <rep_platform>PC</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>INVALID</resolution>
          
          
          
          
          <priority>P3</priority>
          <bug_severity>enhancement</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="unick Bee">unick.B@gmail.com</reporter>
          <assigned_to name="Martin Feller">feller@mcs.anl.gov</assigned_to>
          <cc>alexask@mail.ru</cc>
    
    <cc>feller@mcs.anl.gov</cc>
    
    <cc>madduri@mcs.anl.gov</cc>
    
    <cc>smartin@mcs.anl.gov</cc>

      

      
          <long_desc isprivate="0">
            <who name="unick Bee">unick.B@gmail.com</who>
            <bug_when>2007-03-20 08:49:04</bug_when>
            <thetext>when i submitted job without PBS,Submitting job was okay ,as following below
[bh@gram2 lib]$ globusrun-ws -submit -c /bin/date
Submitting job...Done.
Job ID: uuid:28724aa6-d625-11db-93ba-00306e2290f3
Termination time: 03/20/2007 14:21 GMT
Current job state: Active
Current job state: CleanUp
Current job state: Done

but when i subitted job with PBS ,error as following below
Delegating user credentials...Failed.
globusrun-ws: Error trying to delegate
Error querying delegation factories
globus_soap_message_module: SOAP Fault
Fault code: soapenv:Server.generalException

after that,i found the problem is the mapping between GRAM and FTP hosts .
and i modified &apos;globus_gram_fs_map_config.xml&apos; as below

&lt;/ns1:map&gt;&lt;ns1:map xmlns:ns1=&quot;http://www.globus.org/namespaces/2004/10/gram/job&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:type=&quot;ns1:FileSystemMapType&quot;&gt;
 &lt;ns1:scheduler xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xsi:type=&quot;xsd:string&quot;&gt;PBS&lt;/ns1:scheduler&gt;
 &lt;ns1:ftpServer xsi:type=&quot;ns1:FtpServerType&quot;&gt;
  &lt;ns1:protocol xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xsi:type=&quot;xsd:string&quot;&gt;gsiftp&lt;/ns1:protocol&gt;
  &lt;ns1:host xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xsi:type=&quot;xsd:string&quot;&gt;gram2.shu.edu.cn&lt;/ns1:host&gt;
  &lt;ns1:port xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xsi:type=&quot;xsd:unsignedShort&quot;&gt;2811&lt;/ns1:port&gt;
 &lt;/ns1:ftpServer&gt;
 &lt;ns1:mapping xsi:type=&quot;ns1:FileSystemPathMappingType&quot;&gt;
  &lt;ns1:jobPath xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xsi:type=&quot;xsd:string&quot;&gt;/home/bh&lt;/ns1:jobPath&gt;
  &lt;ns1:ftpPath xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xsi:type=&quot;xsd:string&quot;&gt;/home/bh&lt;/ns1:ftpPath&gt;
 &lt;/ns1:mapping&gt;

nodes: a.rsl lies in /home/bh
but still failed as above ,would you pleased be so kind as to tell me how to modified that xml file</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who name="Martin Feller">feller@mcs.anl.gov</who>
            <bug_when>2007-03-20 10:03:43</bug_when>
            <thetext>I think you mix up things here a bit. Can we go step by step?

1. If you submit a simple job to PBS like you mention below
   (&quot;globusrun-ws -submit -c /bin/date&quot;) you really should not run into the
   delegation issues because no credentials are delegated in simple jobs.
   Could you confirm that you really get that delegation problem when you use
   the above submission command but with PBS. It should look like
   &quot;globusrun-ws -submit -Ft PBS -c /bin/date&quot;

2. Please add the command and the job description you use when you get the
   errors below.

3. As far as i know this error is not related to globus_gram_fs_map_config.xml
   but you&apos;re right: you need to have a mapping for PBS in that file.</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who name="unick Bee">unick.B@gmail.com</who>
            <bug_when>2007-03-20 20:47:48</bug_when>
            <thetext>(In reply to comment #0)
&gt; when i submitted job without PBS,Submitting job was okay ,as following below
&gt; [bh@gram2 lib]$ globusrun-ws -submit -c /bin/date
&gt; Submitting job...Done.
&gt; Job ID: uuid:28724aa6-d625-11db-93ba-00306e2290f3
&gt; Termination time: 03/20/2007 14:21 GMT
&gt; Current job state: Active
&gt; Current job state: CleanUp
&gt; Current job state: Done
&gt; but when i subitted job with PBS ,error as following below
&gt; Delegating user credentials...Failed.
&gt; globusrun-ws: Error trying to delegate
&gt; Error querying delegation factories
&gt; globus_soap_message_module: SOAP Fault
&gt; Fault code: soapenv:Server.generalException
&gt; after that,i found the problem is the mapping between GRAM and FTP hosts .
&gt; and i modified &apos;globus_gram_fs_map_config.xml&apos; as below
&gt; &lt;/ns1:map&gt;&lt;ns1:map
&gt; xmlns:ns1=&quot;http://www.globus.org/namespaces/2004/10/gram/job&quot;
&gt; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
&gt; xsi:type=&quot;ns1:FileSystemMapType&quot;&gt;
&gt;  &lt;ns1:scheduler xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
&gt; xsi:type=&quot;xsd:string&quot;&gt;PBS&lt;/ns1:scheduler&gt;
&gt;  &lt;ns1:ftpServer xsi:type=&quot;ns1:FtpServerType&quot;&gt;
&gt;   &lt;ns1:protocol xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
&gt; xsi:type=&quot;xsd:string&quot;&gt;gsiftp&lt;/ns1:protocol&gt;
&gt;   &lt;ns1:host xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
&gt; xsi:type=&quot;xsd:string&quot;&gt;gram2.shu.edu.cn&lt;/ns1:host&gt;
&gt;   &lt;ns1:port xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
&gt; xsi:type=&quot;xsd:unsignedShort&quot;&gt;2811&lt;/ns1:port&gt;
&gt;  &lt;/ns1:ftpServer&gt;
&gt;  &lt;ns1:mapping xsi:type=&quot;ns1:FileSystemPathMappingType&quot;&gt;
&gt;   &lt;ns1:jobPath xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
&gt; xsi:type=&quot;xsd:string&quot;&gt;/home/bh&lt;/ns1:jobPath&gt;
&gt;   &lt;ns1:ftpPath xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;
&gt; xsi:type=&quot;xsd:string&quot;&gt;/home/bh&lt;/ns1:ftpPath&gt;
&gt;  &lt;/ns1:mapping&gt;
&gt; nodes: a.rsl lies in /home/bh
&gt; but still failed as above ,would you pleased be so kind as to tell me how to
&gt; modified that xml file

(In reply to comment #1)
&gt; I think you mix up things here a bit. Can we go step by step?
&gt; 1. If you submit a simple job to PBS like you mention below
&gt;    (&quot;globusrun-ws -submit -c /bin/date&quot;) you really should not run into the
&gt;    delegation issues because no credentials are delegated in simple jobs.
&gt;    Could you confirm that you really get that delegation problem when you use
&gt;    the above submission command but with PBS. It should look like
&gt;    &quot;globusrun-ws -submit -Ft PBS -c /bin/date&quot;
&gt; 2. Please add the command and the job description you use when you get the
&gt;    errors below.
&gt; 3. As far as i know this error is not related to globus_gram_fs_map_config.xml
&gt;    but you&apos;re right: you need to have a mapping for PBS in that file.

thanks for your answers,i got that delegation problem when i submitted job to PBS with the command :
globusrun-ws -submit -Ft PBS -c /bin/date,i know i need a mapping for PBS,but i don&apos;t know how to
modified that xml file,would you please be so kind  to tell me how to
modified that xml file?
</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who name="Martin Feller">feller@mcs.anl.gov</who>
            <bug_when>2007-03-22 11:02:37</bug_when>
            <thetext>I&apos;m still sure that you don&apos;t run into this problem if you submit the job using
&quot;globusrun-ws -submit -Ft PBS -c /bin/date&quot;, because no delegation takes place
there at all. I removed all my file system mappings, executed that job, but could
not reproduce your error.
Are you sure that you don&apos;t use the &quot;-s&quot; option for output streaming?
I&apos;ll attach my file system mappings, adapt settings like host and port as needed.</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who name="Martin Feller">feller@mcs.anl.gov</who>
            <bug_when>2007-03-22 11:03:58</bug_when>
            <thetext>Created an attachment (id=1216)
file system mapping

my file system mappings. Take what you need from that file</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who name="unick Bee">unick.B@gmail.com</who>
            <bug_when>2007-03-23 02:17:48</bug_when>
            <thetext>hi
u r great!!! your file mapping did work after i modified it with my hostname
but still a little bug :

[bh@gram2 ~]$ globusrun-ws -submit -Ft PBS -s -c 1.rsl
Delegating user credentials...Done.
Submitting job...Done.
Job ID: uuid:74604890-d900-11db-98b2-00306e2290f3
Termination time: 03/24/2007 05:36 GMT
Current job state: Pending
Current job state: Active
connect to address 10.128.0.247: Connection refused
connect to address 10.128.0.247: Connection refused
trying normal rsh (/usr/bin/rsh)
gram2.shu.edu.cn: Connection refused
/var/spool/PBS/mom_priv/jobs/7.gram2.shu.SC: line 55: [: too many arguments
Current job state: CleanUp-Hold
Current job state: CleanUp
Current job state: Done
Destroying job...Done.
Cleaning up any delegated credentials...Done.

my hostname and ip are okay ,but why connection refused? i&apos;m looking ur reply
many thanks</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who name="Stuart Martin">smartin@mcs.anl.gov</who>
            <bug_when>2008-02-06 13:23:45</bug_when>
            <thetext>These types of problems are typically not bugs.  For help on these issues send email to gram-user@globus.org.  Info about subscribing to the gram lists is here:
http://dev.globus.org/wiki/GRAM#Mailing_Lists</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who name="Alex">alexask@mail.ru</who>
            <bug_when>2008-05-26 04:11:25</bug_when>
            <thetext>(In reply to comment #4)
&gt; Created an attachment (id=1216) [edit]
&gt; file system mapping
&gt; my file system mappings. Take what you need from that file

Hello
I have the same problem
Could you please post here the data of this attachment http://bugzilla.mcs.anl.gov/globus/attachment.cgi?id=1216
I cannot view as this file was disabled due to some problems connected with spam</thetext>
          </long_desc>
          <long_desc isprivate="0">
            <who name="Martin Feller">feller@mcs.anl.gov</who>
            <bug_when>2008-05-27 12:00:51</bug_when>
            <thetext>Sent via e-mail</thetext>
          </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>1216</attachid>
            <date>2007-03-22 11:03</date>
            <desc>file system mapping</desc>
            <filename>fsmapping</filename>
            <type>application/xml</type>
            <size>3806</size>
            <attacher>feller@mcs.anl.gov</attacher>
            <data encoding="base64">PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPGZpbGVTeXN0ZW1NYXBzIHRh
cmdldE5hbWVzcGFjZT0iaHR0cDovL3d3dy5nbG9idXMub3JnL25hbWVzcGFjZXMvMjAwNC8xMC9n
cmFtL2pvYiI+CjxuczE6bWFwIHhtbG5zOm5zMT0iaHR0cDovL3d3dy5nbG9idXMub3JnL25hbWVz
cGFjZXMvMjAwNC8xMC9ncmFtL2pvYiIgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAx
L1hNTFNjaGVtYS1pbnN0YW5jZSIgeHNpOnR5cGU9Im5zMTpGaWxlU3lzdGVtTWFwVHlwZSI+CiA8
bnMxOnNjaGVkdWxlciB4bWxuczp4c2Q9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1h
IiB4c2k6dHlwZT0ieHNkOnN0cmluZyI+Q29uZG9yPC9uczE6c2NoZWR1bGVyPgogPG5zMTpmdHBT
ZXJ2ZXIgeHNpOnR5cGU9Im5zMTpGdHBTZXJ2ZXJUeXBlIj4KICA8bnMxOnByb3RvY29sIHhtbG5z
OnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6c3Ry
aW5nIj5nc2lmdHA8L25zMTpwcm90b2NvbD4KICA8bnMxOmhvc3QgeG1sbnM6eHNkPSJodHRwOi8v
d3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeHNpOnR5cGU9InhzZDpzdHJpbmciPmxhcHBpLnVt
YS5kZTwvbnMxOmhvc3Q+CiAgPG5zMTpwb3J0IHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcv
MjAwMS9YTUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6dW5zaWduZWRTaG9ydCI+MjgxMTwvbnMxOnBv
cnQ+CiA8L25zMTpmdHBTZXJ2ZXI+CiA8bnMxOm1hcHBpbmcgeHNpOnR5cGU9Im5zMTpGaWxlU3lz
dGVtUGF0aE1hcHBpbmdUeXBlIj4KICA8bnMxOmpvYlBhdGggeG1sbnM6eHNkPSJodHRwOi8vd3d3
LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeHNpOnR5cGU9InhzZDpzdHJpbmciPi88L25zMTpqb2JQ
YXRoPgogIDxuczE6ZnRwUGF0aCB4bWxuczp4c2Q9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1M
U2NoZW1hIiB4c2k6dHlwZT0ieHNkOnN0cmluZyI+LzwvbnMxOmZ0cFBhdGg+CiA8L25zMTptYXBw
aW5nPgo8L25zMTptYXA+PG5zMTptYXAgeG1sbnM6bnMxPSJodHRwOi8vd3d3Lmdsb2J1cy5vcmcv
bmFtZXNwYWNlcy8yMDA0LzEwL2dyYW0vam9iIiB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3Jn
LzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6dHlwZT0ibnMxOkZpbGVTeXN0ZW1NYXBUeXBl
Ij4KIDxuczE6c2NoZWR1bGVyIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxT
Y2hlbWEiIHhzaTp0eXBlPSJ4c2Q6c3RyaW5nIj5Gb3JrPC9uczE6c2NoZWR1bGVyPgogPG5zMTpm
dHBTZXJ2ZXIgeHNpOnR5cGU9Im5zMTpGdHBTZXJ2ZXJUeXBlIj4KICA8bnMxOnByb3RvY29sIHht
bG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6
c3RyaW5nIj5nc2lmdHA8L25zMTpwcm90b2NvbD4KICA8bnMxOmhvc3QgeG1sbnM6eHNkPSJodHRw
Oi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeHNpOnR5cGU9InhzZDpzdHJpbmciPmxhcHBp
LnVtYS5kZTwvbnMxOmhvc3Q+CiAgPG5zMTpwb3J0IHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5v
cmcvMjAwMS9YTUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6dW5zaWduZWRTaG9ydCI+MjgxMTwvbnMx
OnBvcnQ+CiA8L25zMTpmdHBTZXJ2ZXI+CiA8bnMxOm1hcHBpbmcgeHNpOnR5cGU9Im5zMTpGaWxl
U3lzdGVtUGF0aE1hcHBpbmdUeXBlIj4KICA8bnMxOmpvYlBhdGggeG1sbnM6eHNkPSJodHRwOi8v
d3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeHNpOnR5cGU9InhzZDpzdHJpbmciPi88L25zMTpq
b2JQYXRoPgogIDxuczE6ZnRwUGF0aCB4bWxuczp4c2Q9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEv
WE1MU2NoZW1hIiB4c2k6dHlwZT0ieHNkOnN0cmluZyI+LzwvbnMxOmZ0cFBhdGg+CiA8L25zMTpt
YXBwaW5nPgo8L25zMTptYXA+PG5zMTptYXAgeG1sbnM6bnMxPSJodHRwOi8vd3d3Lmdsb2J1cy5v
cmcvbmFtZXNwYWNlcy8yMDA0LzEwL2dyYW0vam9iIiB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMu
b3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6dHlwZT0ibnMxOkZpbGVTeXN0ZW1NYXBU
eXBlIj4KIDxuczE6c2NoZWR1bGVyIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9Y
TUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6c3RyaW5nIj5NdWx0aTwvbnMxOnNjaGVkdWxlcj4KIDxu
czE6ZnRwU2VydmVyIHhzaTp0eXBlPSJuczE6RnRwU2VydmVyVHlwZSI+CiAgPG5zMTpwcm90b2Nv
bCB4bWxuczp4c2Q9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hIiB4c2k6dHlwZT0i
eHNkOnN0cmluZyI+Z3NpZnRwPC9uczE6cHJvdG9jb2w+CiAgPG5zMTpob3N0IHhtbG5zOnhzZD0i
aHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6c3RyaW5nIj5s
YXBwaS51bWEuZGU8L25zMTpob3N0PgogIDxuczE6cG9ydCB4bWxuczp4c2Q9Imh0dHA6Ly93d3cu
dzMub3JnLzIwMDEvWE1MU2NoZW1hIiB4c2k6dHlwZT0ieHNkOnVuc2lnbmVkU2hvcnQiPjI4MTE8
L25zMTpwb3J0PgogPC9uczE6ZnRwU2VydmVyPgogPG5zMTptYXBwaW5nIHhzaTp0eXBlPSJuczE6
RmlsZVN5c3RlbVBhdGhNYXBwaW5nVHlwZSI+CiAgPG5zMTpqb2JQYXRoIHhtbG5zOnhzZD0iaHR0
cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6c3RyaW5nIj4vPC9u
czE6am9iUGF0aD4KICA8bnMxOmZ0cFBhdGggeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8y
MDAxL1hNTFNjaGVtYSIgeHNpOnR5cGU9InhzZDpzdHJpbmciPi88L25zMTpmdHBQYXRoPgogPC9u
czE6bWFwcGluZz4KPC9uczE6bWFwPgo8bnMxOm1hcCB4bWxuczpuczE9Imh0dHA6Ly93d3cuZ2xv
YnVzLm9yZy9uYW1lc3BhY2VzLzIwMDQvMTAvZ3JhbS9qb2IiIHhtbG5zOnhzaT0iaHR0cDovL3d3
dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhzaTp0eXBlPSJuczE6RmlsZVN5c3Rl
bU1hcFR5cGUiPgogPG5zMTpzY2hlZHVsZXIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8y
MDAxL1hNTFNjaGVtYSIgeHNpOnR5cGU9InhzZDpzdHJpbmciPlBCUzwvbnMxOnNjaGVkdWxlcj4K
IDxuczE6ZnRwU2VydmVyIHhzaTp0eXBlPSJuczE6RnRwU2VydmVyVHlwZSI+CiAgPG5zMTpwcm90
b2NvbCB4bWxuczp4c2Q9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hIiB4c2k6dHlw
ZT0ieHNkOnN0cmluZyI+Z3NpZnRwPC9uczE6cHJvdG9jb2w+CiAgPG5zMTpob3N0IHhtbG5zOnhz
ZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6c3RyaW5n
Ij5sYXBwaS51bWEuZGU8L25zMTpob3N0PgogIDxuczE6cG9ydCB4bWxuczp4c2Q9Imh0dHA6Ly93
d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hIiB4c2k6dHlwZT0ieHNkOnVuc2lnbmVkU2hvcnQiPjI4
MTE8L25zMTpwb3J0PgogPC9uczE6ZnRwU2VydmVyPgogPG5zMTptYXBwaW5nIHhzaTp0eXBlPSJu
czE6RmlsZVN5c3RlbVBhdGhNYXBwaW5nVHlwZSI+CiAgPG5zMTpqb2JQYXRoIHhtbG5zOnhzZD0i
aHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhzaTp0eXBlPSJ4c2Q6c3RyaW5nIj4v
PC9uczE6am9iUGF0aD4KICA8bnMxOmZ0cFBhdGggeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9y
Zy8yMDAxL1hNTFNjaGVtYSIgeHNpOnR5cGU9InhzZDpzdHJpbmciPi88L25zMTpmdHBQYXRoPgog
PC9uczE6bWFwcGluZz4KPC9uczE6bWFwPgo8L2ZpbGVTeXN0ZW1NYXBzPgo=
</data>        

          </attachment>
      

    </bug>

</bugzilla>