Could it also be network file permissions?  (remote vs local)

On Friday, December 14, 2012 12:59:40 PM UTC-5, Jim S wrote:
>
> I don't know if I'm reading too much into this or not, but this works 
> without the login popup using IE from my test server which is running with 
> the rocket server and no SSL.  It is requiring the login when I'm running 
> SSL over Apache.
>
> -Jim
>
> On Friday, December 14, 2012 11:39:18 AM UTC-6, Jim S wrote:
>>
>> I have the following code that generates an excel spreadsheet and then 
>> downloads it to the user workstation: 
>>
>> from reports import movementDetail as rpt
>> letters_file = StringIO.StringIO()
>> returnVal = rpt.process(originationId, fromDate, toDate, filter,letters_file
>> , auth.user.id)
>>  
>> if returnVal:
>>     excelFile = letters_file.getvalue()
>>     letters_file.close()
>>     response.headers['Content-Type']='application/vnd.ms-excel'
>>     return(excelFile)
>>
>>
>>
>>
>> Works fine with Firefox, Opera and Chrome.  When test this with IE, the 
>> browser login window pops up.  I can cancel the login window and then the 
>> sheet opens up, but don't know why it is doing that in IE only.  Any ideas?
>>
>> -Jim
>>
>

-- 



Reply via email to