Ask a Question related to ASP.NET Security, Design and Development.
-
Moe #1
FileIOException, Need help please
I have a winForm control that contains an openFileDialog.
I am using this control in a webForm by enbedding it using an <object> tag.
I need to access some information about the file on the client.
I strongly named my control assembly .
I created a machine level permission set, and assigned FileDialog, FileIO
and User interface permission.
I created a code group under all_Code, associated my assembly's strong name
to that group and assigned the permission set i created previously.
I also added the following attributes to my assembly:
[assembly:AllowPartiallyTrustedCallers]
[assembly: FileDialogPermission(SecurityAction.RequestMinimum , Unrestricted
= true)]
[assembly: UIPermission(SecurityAction.RequestMinimum, Unrestricted = true)]
[assembly: FileIOPermission(SecurityAction.RequestMinimum, Unrestricted =
true)]
I am having a file IO Exception while trying to retreive the FileName
property of the openFileDialog.
Any help will be very appreciate it.
Thanks!
Moe Guest
-
Nicole Calinoiu #2
Re: FileIOException, Need help please
"Moe" <Moe@discussions.microsoft.com> wrote in message
news:3E8B6871-4DF4-4ABE-8E0F-065B7DC14CD7@microsoft.com...Not a great idea. It would be better to add the new group under the>I have a winForm control that contains an openFileDialog.
> I am using this control in a webForm by enbedding it using an <object>
> tag.
> I need to access some information about the file on the client.
> I strongly named my control assembly .
> I created a machine level permission set, and assigned FileDialog, FileIO
> and User interface permission.
> I created a code group under all_Code, associated my assembly's strong
> name
> to that group and assigned the permission set i created previously.
appropriate zone group (usually intranet) in order to minimize the potential
impact of a compromise of your signing key.
It really shouldn't be getting that far. Given that you've specified a> I also added the following attributes to my assembly:
> [assembly:AllowPartiallyTrustedCallers]
> [assembly: FileDialogPermission(SecurityAction.RequestMinimum ,
> Unrestricted
> = true)]
> [assembly: UIPermission(SecurityAction.RequestMinimum, Unrestricted =
> true)]
> [assembly: FileIOPermission(SecurityAction.RequestMinimum, Unrestricted =
> true)]
>
>
> I am having a file IO Exception while trying to retreive the FileName
> property of the openFileDialog.
RequestMinimum for
unrestricted FileIOPermission, your assembly should not run at all if this
permission is denied. Are you sure that you're attempting to run the latest
version of the assembly?
That said, you'll still have a problem once you resolve the above issue
since the IE host won't resolve your assembly's strong name until after the
permissions grant is complete. For workarounds, see
[url]http://blogs.msdn.com/shawnfa/archive/2003/06/26/57026.aspx[/url].
>
> Any help will be very appreciate it.
>
> Thanks!
Nicole Calinoiu Guest
-
Dominick Baier [DevelopMentor] #3
Re: FileIOException, Need help please
Hello Nicole Calinoiu" calinoiu REMOVETHIS AT gmail DOT com,
i would also suggest to not use the filename that is returned from the fileopen
dialog but the FileStream..does not require that much permissions...
---------------------------------------
Dominick Baier - DevelopMentor
[url]http://www.leastprivilege.com[/url]
> "Moe" <Moe@discussions.microsoft.com> wrote in message
> news:3E8B6871-4DF4-4ABE-8E0F-065B7DC14CD7@microsoft.com...
>> Not a great idea. It would be better to add the new group under the>> I have a winForm control that contains an openFileDialog.
>> I am using this control in a webForm by enbedding it using an
>> <object>
>> tag.
>> I need to access some information about the file on the client.
>> I strongly named my control assembly .
>> I created a machine level permission set, and assigned FileDialog,
>> FileIO
>> and User interface permission.
>> I created a code group under all_Code, associated my assembly's
>> strong
>> name
>> to that group and assigned the permission set i created previously.
> appropriate zone group (usually intranet) in order to minimize the
> potential impact of a compromise of your signing key.
>> It really shouldn't be getting that far. Given that you've specified>> I also added the following attributes to my assembly:
>> [assembly:AllowPartiallyTrustedCallers]
>> [assembly: FileDialogPermission(SecurityAction.RequestMinimum ,
>> Unrestricted
>> = true)]
>> [assembly: UIPermission(SecurityAction.RequestMinimum, Unrestricted =
>> true)]
>> [assembly: FileIOPermission(SecurityAction.RequestMinimum,
>> Unrestricted =
>> true)]
>> I am having a file IO Exception while trying to retreive the FileName
>> property of the openFileDialog.
>>
> a
> RequestMinimum for
> unrestricted FileIOPermission, your assembly should not run at all if
> this
> permission is denied. Are you sure that you're attempting to run the
> latest
> version of the assembly?
> That said, you'll still have a problem once you resolve the above
> issue since the IE host won't resolve your assembly's strong name
> until after the permissions grant is complete. For workarounds, see
> [url]http://blogs.msdn.com/shawnfa/archive/2003/06/26/57026.aspx[/url].
>>> Any help will be very appreciate it.
>>
>> Thanks!
>>
Dominick Baier [DevelopMentor] Guest
-
Nicole Calinoiu #4
Re: FileIOException, Need help please
That would only work if the goal is to open the file for reading, which
doesn't sound like the case here ("access some information about the file on
the client" from OP). My guess is that it's probably more likely that
FileDialogPermission can be dispensed with in this particular case rather
than FileIOPermission. However, the assembly may also contain other
functionality, so permissions that appear superfluous to us may actually be
required by other code...
"Dominick Baier [DevelopMentor]" <dbaier@pleasepleasenospamdevelop.com>
wrote in message news:380598632516613983471072@news.microsoft.com.. .> Hello Nicole Calinoiu" calinoiu REMOVETHIS AT gmail DOT com,
>
> i would also suggest to not use the filename that is returned from the
> fileopen dialog but the FileStream..does not require that much
> permissions...
>
> ---------------------------------------
> Dominick Baier - DevelopMentor
> [url]http://www.leastprivilege.com[/url]
>>>> "Moe" <Moe@discussions.microsoft.com> wrote in message
>> news:3E8B6871-4DF4-4ABE-8E0F-065B7DC14CD7@microsoft.com...
>>>> Not a great idea. It would be better to add the new group under the>>> I have a winForm control that contains an openFileDialog.
>>> I am using this control in a webForm by enbedding it using an
>>> <object>
>>> tag.
>>> I need to access some information about the file on the client.
>>> I strongly named my control assembly .
>>> I created a machine level permission set, and assigned FileDialog,
>>> FileIO
>>> and User interface permission.
>>> I created a code group under all_Code, associated my assembly's
>>> strong
>>> name
>>> to that group and assigned the permission set i created previously.
>> appropriate zone group (usually intranet) in order to minimize the
>> potential impact of a compromise of your signing key.
>>>> It really shouldn't be getting that far. Given that you've specified>>> I also added the following attributes to my assembly:
>>> [assembly:AllowPartiallyTrustedCallers]
>>> [assembly: FileDialogPermission(SecurityAction.RequestMinimum ,
>>> Unrestricted
>>> = true)]
>>> [assembly: UIPermission(SecurityAction.RequestMinimum, Unrestricted =
>>> true)]
>>> [assembly: FileIOPermission(SecurityAction.RequestMinimum,
>>> Unrestricted =
>>> true)]
>>> I am having a file IO Exception while trying to retreive the FileName
>>> property of the openFileDialog.
>>>
>> a
>> RequestMinimum for
>> unrestricted FileIOPermission, your assembly should not run at all if
>> this
>> permission is denied. Are you sure that you're attempting to run the
>> latest
>> version of the assembly?
>> That said, you'll still have a problem once you resolve the above
>> issue since the IE host won't resolve your assembly's strong name
>> until after the permissions grant is complete. For workarounds, see
>> [url]http://blogs.msdn.com/shawnfa/archive/2003/06/26/57026.aspx[/url].
>>>>> Any help will be very appreciate it.
>>>
>>> Thanks!
>>>
>
>
Nicole Calinoiu Guest
-
Moe #5
Re: FileIOException, Need help please
Thank you guys for your help.
I apreciate it :)
"Nicole Calinoiu" wrote:
> That would only work if the goal is to open the file for reading, which
> doesn't sound like the case here ("access some information about the file on
> the client" from OP). My guess is that it's probably more likely that
> FileDialogPermission can be dispensed with in this particular case rather
> than FileIOPermission. However, the assembly may also contain other
> functionality, so permissions that appear superfluous to us may actually be
> required by other code...
>
>
> "Dominick Baier [DevelopMentor]" <dbaier@pleasepleasenospamdevelop.com>
> wrote in message news:380598632516613983471072@news.microsoft.com.. .>> > Hello Nicole Calinoiu" calinoiu REMOVETHIS AT gmail DOT com,
> >
> > i would also suggest to not use the filename that is returned from the
> > fileopen dialog but the FileStream..does not require that much
> > permissions...
> >
> > ---------------------------------------
> > Dominick Baier - DevelopMentor
> > [url]http://www.leastprivilege.com[/url]
> >> >> >> "Moe" <Moe@discussions.microsoft.com> wrote in message
> >> news:3E8B6871-4DF4-4ABE-8E0F-065B7DC14CD7@microsoft.com...
> >>
> >>> I have a winForm control that contains an openFileDialog.
> >>> I am using this control in a webForm by enbedding it using an
> >>> <object>
> >>> tag.
> >>> I need to access some information about the file on the client.
> >>> I strongly named my control assembly .
> >>> I created a machine level permission set, and assigned FileDialog,
> >>> FileIO
> >>> and User interface permission.
> >>> I created a code group under all_Code, associated my assembly's
> >>> strong
> >>> name
> >>> to that group and assigned the permission set i created previously.
> >> Not a great idea. It would be better to add the new group under the
> >> appropriate zone group (usually intranet) in order to minimize the
> >> potential impact of a compromise of your signing key.
> >>
> >>> I also added the following attributes to my assembly:
> >>> [assembly:AllowPartiallyTrustedCallers]
> >>> [assembly: FileDialogPermission(SecurityAction.RequestMinimum ,
> >>> Unrestricted
> >>> = true)]
> >>> [assembly: UIPermission(SecurityAction.RequestMinimum, Unrestricted =
> >>> true)]
> >>> [assembly: FileIOPermission(SecurityAction.RequestMinimum,
> >>> Unrestricted =
> >>> true)]
> >>> I am having a file IO Exception while trying to retreive the FileName
> >>> property of the openFileDialog.
> >>>
> >> It really shouldn't be getting that far. Given that you've specified
> >> a
> >> RequestMinimum for
> >> unrestricted FileIOPermission, your assembly should not run at all if
> >> this
> >> permission is denied. Are you sure that you're attempting to run the
> >> latest
> >> version of the assembly?
> >> That said, you'll still have a problem once you resolve the above
> >> issue since the IE host won't resolve your assembly's strong name
> >> until after the permissions grant is complete. For workarounds, see
> >> [url]http://blogs.msdn.com/shawnfa/archive/2003/06/26/57026.aspx[/url].
> >>
> >>> Any help will be very appreciate it.
> >>>
> >>> Thanks!
> >>>
> >
> >
>
>Moe Guest



Reply With Quote

