Bug 69667 - enctype: 'multipart/form-data' POST request for html file upload created http session attributes null
Summary: enctype: 'multipart/form-data' POST request for html file upload created http...
Status: UNCONFIRMED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Forms (show other bugs)
Version: 523.x (Safari 3)
Hardware: Mac OS X 10.7
: P2 Critical
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-10-07 14:15 PDT by Varun Singh
Modified: 2011-10-08 00:16 PDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Varun Singh 2011-10-07 14:15:27 PDT
Hi,

We are facing one issue on LION mac system with Safari Version 5.1(7534.48.3).

The issue is whenever we are trying to submit a form to cater file upload functionality with enctype: 'multipart/form-data' in Post request. The http session attributes becomes null, this generally happens while trying to upload html file.

The upload functionality works fine in Leopard Mac systems with Safari version 5.1 (6534.50).

Please let us know in case, there is any know issue pertaining to our specific problem.
	
var downloadForm = $('tempInp').wrap('form', {
		id: 'frmDownloadFile',
		name: 'frmDownloadFile',
		enctype: 'multipart/form-data',
		target: 'ifDownloadTarget',
		action: './fileDownload.do',
		method: 'POST'
	});	

Thanks,
Varun Singh
Comment 1 Alexey Proskuryakov 2011-10-07 23:34:50 PDT
Is there any way we could see this problem in action?