Ask a Question related to ASP.NET General, Design and Development.
-
Walt Skidmore #1
Re: Web App Deployment
I ran into this problem, and tried everything that everyone suggested.
After carefully debugging the installer with a series of message
boxes, I traced the issue back to the way the installer is being
called. Apparently, the install sub was being called anytime the
installer was run, e.g. uninstall, rollback, install, etc. I had to
put in some lines at the top that checked to make sure that the
install sub was being called at install time and not at any other
time, like this:
If Not (Me.Context.Parameters.Item("action") = "install") Then
Return
End If
Hope this helps.
[email]jcwiese@yahoo.com[/email] (Jim) wrote in message news:<1b998b5f.0306191101.56c34ba5@posting.google. com>...> Scott,
> I ran into this very same problem, and it was because I was passing
> data that should have been escaped :
>
> /SERVERNAME=[SERVERNAME]
>
> ... should have been
>
> /SERVERNAME="[SERVERNAME]"
>
> ... and since when choosing a file, the installer will pass a
> backslash which would actually escape the double quote:
>
> (eg.)
> The format : /TARGETDIR="[TARGETDIR]" would produce:
>
> /TARGETDIR="C:\program files\My Company\MyProduct\" <-- escaped
> quote
>
> The format : /TARGETDIR="[TARGETDIR]\" would produce:
>
> /TARGETDIR="C:\program files\My Company\MyProduct\\" <-- escaped
> escape which is fineWalt Skidmore Guest
-
Deployment
What's the best way in ASP .Net to deploy an app from a development machine to a production machine? Also, do all files (.vbproj, etc) need to be... -
MX7 and jar deployment
In MX6.1 we were deploying java components by simply dropping a jar file to CFusionMX\wwwroot\WEB-INF\lib folder and then restarting CF Server... -
Deployment Q
If you have an ASPX app which calls a WebSvc do you need to deploy the WebReference folder or not? bin\foo.dll foo.aspx webREference? needed or... -
Deployment Project
Hi, I need to make deployemnt project for my Web service in Visual Studio .NET. But I do not know how I can set custom DNS name for my web... -
Help with Deployment!
I have a web service running fine on my dev machine, and on a server on my network. When I try to deploy it to a client, when I browse the ASMX...



Reply With Quote

