473,383 Members | 1,717 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

No Touch deployment

I have been trying in several posts to get more
information about No Touch Deployment.

I wrote a windows app in VB.NET that I would like to
update/upgrade over the internet.

Could somebody please let me know how to do that. I can
not find any examples that explains that technique.

Thank you,

Steve
Nov 20 '05 #1
4 1329
Steve,

If you google No-Touch deployment you will find many samples, but if you use
an App.Config file it appears that you are out of luck. In short, if you
have a simple VB.NET project that can be installed via XCOPY and does not
necessarily access secured resources:

(1) Right click on the BIN folder and choose "web sharing" and create a name
to share this folder
(2) Go in to IIS administrator and select the project you just created in
step 1 and allow for anonymous access
(3) Optionally give the the Application Name on the "Virtual Directory" tab

(4) go to another machine and type in the URL:
http://yourmachine/yoursharename/yourapplication.exe

HTH
Dan

"Steve" <de*******@flintind.com> wrote in message
news:06****************************@phx.gbl...
I have been trying in several posts to get more
information about No Touch Deployment.

I wrote a windows app in VB.NET that I would like to
update/upgrade over the internet.

Could somebody please let me know how to do that. I can
not find any examples that explains that technique.

Thank you,

Steve

Nov 20 '05 #2
Dan,

thank you very much for your reply. I did as instructed,
and now I get an security.security exception. The folder
does allow anonimous. Do you have any idea what I am
missing?

Steve
-----Original Message-----
Steve,

If you google No-Touch deployment you will find many samples, but if you usean App.Config file it appears that you are out of luck. In short, if youhave a simple VB.NET project that can be installed via XCOPY and does notnecessarily access secured resources:

(1) Right click on the BIN folder and choose "web sharing" and create a nameto share this folder
(2) Go in to IIS administrator and select the project you just created instep 1 and allow for anonymous access
(3) Optionally give the the Application Name on the "Virtual Directory" tab
(4) go to another machine and type in the URL:
http://yourmachine/yoursharename/yourapplication.exe

HTH
Dan

"Steve" <de*******@flintind.com> wrote in message
news:06****************************@phx.gbl...
I have been trying in several posts to get more
information about No Touch Deployment.

I wrote a windows app in VB.NET that I would like to
update/upgrade over the internet.

Could somebody please let me know how to do that. I can
not find any examples that explains that technique.

Thank you,

Steve

.

Nov 20 '05 #3
Steve,
Is the web server reporting the exception (e.g. is the error showing up in a
web page) or are you getting an application message box error?

If it is the latter then you need to reconfigure you .net security using the
..NET Configuration 1.1 tool.

Check the follwing links unfortunately I am in a similar boat with no help
to be found.

http://msdn.microsoft.com/msdnmag/is...s/default.aspx

http://www.fawcette.com/vsm/2003_09/...ettingstarted/

Dan
"Steve" <de*******@flintind.com> wrote in message
news:5b****************************@phx.gbl...
Dan,

thank you very much for your reply. I did as instructed,
and now I get an security.security exception. The folder
does allow anonimous. Do you have any idea what I am
missing?

Steve
-----Original Message-----
Steve,

If you google No-Touch deployment you will find many

samples, but if you use
an App.Config file it appears that you are out of luck.

In short, if you
have a simple VB.NET project that can be installed via

XCOPY and does not
necessarily access secured resources:

(1) Right click on the BIN folder and choose "web

sharing" and create a name
to share this folder
(2) Go in to IIS administrator and select the project you

just created in
step 1 and allow for anonymous access
(3) Optionally give the the Application Name on

the "Virtual Directory" tab

(4) go to another machine and type in the URL:
http://yourmachine/yoursharename/yourapplication.exe

HTH
Dan

"Steve" <de*******@flintind.com> wrote in message
news:06****************************@phx.gbl...
I have been trying in several posts to get more
information about No Touch Deployment.

I wrote a windows app in VB.NET that I would like to
update/upgrade over the internet.

Could somebody please let me know how to do that. I can
not find any examples that explains that technique.

Thank you,

Steve

.

Nov 20 '05 #4
Hello,

I have been looking at this tread and have a couple of suggestions:
Go to Control Panel - Admin Tool - MS Net Framework [version] wizard
then set the trusts. I would suggest full trust

next

If deploying to a remote machine you also need to set up a trust the
URL from which this download this is done in the command prompt (I am
sure there is a wizard somewhere )
syntax
Caspol -machine -addgroup 1 -url "<http://www.mydownloadsite.com/*>"
FullTrust

Next I would verify that you assembiles are in the download cache
gacutil /ldl

this should fix your issue





"solex" <so***@nowhere.com> wrote in message news:<uM*************@TK2MSFTNGP10.phx.gbl>...
Steve,
Is the web server reporting the exception (e.g. is the error showing up in a
web page) or are you getting an application message box error?

If it is the latter then you need to reconfigure you .net security using the
.NET Configuration 1.1 tool.

Check the follwing links unfortunately I am in a similar boat with no help
to be found.

http://msdn.microsoft.com/msdnmag/is...s/default.aspx

http://www.fawcette.com/vsm/2003_09/...ettingstarted/

Dan
"Steve" <de*******@flintind.com> wrote in message
news:5b****************************@phx.gbl...
Dan,

thank you very much for your reply. I did as instructed,
and now I get an security.security exception. The folder
does allow anonimous. Do you have any idea what I am
missing?

Steve
-----Original Message-----
Steve,

If you google No-Touch deployment you will find many samples, but if you usean App.Config file it appears that you are out of luck. In short, if youhave a simple VB.NET project that can be installed via XCOPY and does notnecessarily access secured resources:

(1) Right click on the BIN folder and choose "web sharing" and create a nameto share this folder
(2) Go in to IIS administrator and select the project you just created instep 1 and allow for anonymous access
(3) Optionally give the the Application Name on the "Virtual Directory" tab
(4) go to another machine and type in the URL:
http://yourmachine/yoursharename/yourapplication.exe

HTH
Dan

"Steve" <de*******@flintind.com> wrote in message
news:06****************************@phx.gbl...
> I have been trying in several posts to get more
> information about No Touch Deployment.
>
> I wrote a windows app in VB.NET that I would like to
> update/upgrade over the internet.
>
> Could somebody please let me know how to do that. I can
> not find any examples that explains that technique.
>
> Thank you,
>
> Steve
.

Nov 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Robert May | last post by:
I have an application that processes text strings using information in a file. I want to deploy this app using no-touch deployment. The config files and everything else are deployed just fine,...
3
by: Marek | last post by:
Hi there, my WinForm application has to be installed in "no-touch-deployment" mode, so users can run it from the web. I need to read application's .config file but it does not work in ...
4
by: wobbles | last post by:
Hi Everyone, I'm really struggling to get no-touch deployment to work well (if at all, in some cases). Can anyone recommend a good book on this topic? There seem to be a lot of blogs about...
1
by: Bruce W...1 | last post by:
Can "No touch deployment" applications run in IE, like a Java Applet, or are they strictly Windows desktop applications? Thanks for your help.
4
by: James | last post by:
I have a VB windows forms application that accesses a Microsoft Access database that has been secured using user-level security. The application is being deployed using No-Touch deployment. The...
0
by: James | last post by:
I have a VB windows forms application that accesses a Microsoft Access database that has been secured using user-level security. The application is being deployed using No-Touch deployment. The...
2
by: Niklas | last post by:
Hi I have a remoting client/server application. The clients subscribes to a server event. All works fine if client is used as a window application, but when the client is used with No-Touch...
0
by: feng | last post by:
Hi, I am having a strange problem right now and I don't even know how to go about it. Someone please help me! Any inputs will be highly appreciated. We have an application that has a VB.Net...
1
by: =?Utf-8?B?dmNs?= | last post by:
Short version: IE7 and .NET Framework 2.0 breaks no touch deployment for .NET 1.1 applications. IE6 and .NET Framework 1.1 + 2.0 works fine. IE7 with .NET Framework 1.1 only is fine, once we add...
0
by: Spam Catcher | last post by:
Hi all, Are there any 3rd party one touch deployment tools? For example, if I want to move a one touch deployment between servers, I need to do a whole bunch of setting changes (change XML,...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.