Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   Encrypting Config File...some problems though (http://www.velocityreviews.com/forums/t107234-encrypting-config-file-some-problems-though.html)

xanthviper@xanthviper.com 07-29-2005 06:47 PM

Encrypting Config File...some problems though
 
Hi there,

I am working on encrypting my configuration strings withing my
web.config file. I am working in VS 2005 using .NET 2.0 with just a C#
asp.net web site. I have been following this HELP link:

ms-help://MS.VSCC.v80/MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.VisualStudio.v80.en/dv_aspnetcon/html/e1652f90-eac5-4f51-bff1-cf1acc2e1180.htm


One of the major portions of the encrption process, of course, is to
actually encrypt using the following commands:

aspnet_regiis -pe "connectionStrings" -app "/MyApplication" -prov
"RSAProtectedConfigurationProvider"


The problem I am having is the little old -app switch in which in this
case, the applications name is "MyApplication". My problem is that my
Web Application is called "ArchTest" and since I need to provide the
Virtual Path for the -app switch, I shoud put in "/ArchTest" when I run
it, I get "The configuration for path '/ArchTest' was not found"

What am I doing wrong here? Can anyone tell me what I may be
referencing wrong here?

Thanks in advance.



All times are GMT. The time now is 11:36 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57