-
Posted to
Web Deployment Tool (MS Deploy)
by
madjos
on
08-26-2009, 1:52 AM
Hi Woland,
The connection timeout feature of connection strings only applies to setting up an initial connection with SQL Server, not executing individual commands. In our next release (coming soon, maybe within a month) we will provide a commandTimeout setting that you can add in your manifest.xml entry file to increase the timeout. ...
-
Posted to
Web Deployment Tool (MS Deploy)
by
madjos
on
06-04-2009, 3:02 PM
Hi Hakan,
Thanks for trying out MSDeploy. Hope you are finding it useful.
First off we realize that running a command line is a common task. In our next release we will have a built in provider that can accomplish this task. So if you prefer to wait a few months... Also in our next release we will have a different (simpler) way to ...
-
Posted to
Web Application Gallery : Users
by
madjos
on
04-11-2009, 3:47 PM
Yes, I dont think it will be viable to do MD5 hashing, etc when setting up a parameter.
Not sure if its an option, but you could just ask the user to enter a salt_generator string as a parameter. And store that string as is in the web.config. Then at runtime your app can read the string combine it with the other string, then MD5 the result, ...
-
Posted to
Web Application Gallery : Users
by
madjos
on
04-10-2009, 8:00 PM
I dont think your application pool identity (the identity that your web app runs under) has sufficient permissions to modify its web.config. My guess is that the API first creates a temp file and then tries to copy it over the web.config (and since you dont have permissions to create a file in that dir, it fails).
In general this ...
-
Posted to
Web Deployment Tool (MS Deploy)
by
madjos
on
04-10-2009, 12:47 PM
Hi Mark,
To answer your immediate question: before you set up delegation rules, you need to install the corresponding feature of the Web Deployment Tool. Relaunch the Web Deployment Tool installer and choose the feature called "Web Management Service Integration".
But I think you might be going down a longer path than required. This ...
-
Posted to
Web Deployment Tool (MS Deploy)
by
madjos
on
04-10-2009, 12:37 PM
Hi SparksFlyn,
This question is probably better asked in the Web Platform Installer forum: http://forums.iis.net/1155.aspx .
The logs are generally kept in your %temp% folder.
-
Posted to
Web Application Gallery : Users
by
madjos
on
04-10-2009, 12:25 PM
Hi echilon,
Glad to have you on board! You are almost there.
Do you have a parameter called "Application Path" defined in your parameters.xml?
The default value you are using for the setAcl1 parameter references this (value in braces).
You should be able to see this in DasBlog and Silverstripe.
Finally: we have heard from customers ...
-
Posted to
Web Deployment Hosting Trial
by
madjos
on
12-08-2008, 1:36 PM
Hi,
Thanks for getting back to me with the command line output. The basic problem here is:
The SELECT permission was denied on the object 'sql_expression_dependencies
', database 'mssqlsystemresource', schema 'sys'.
From this I gather that you are using SQL 2008 because the view sql_expression_dependencies only exists in ...
-
Posted to
Web Deployment Hosting Trial
by
madjos
on
12-02-2008, 8:15 PM
Can you try the same connection string on the msdeploy command line and send the output?
msdeploy.exe -verb:sync -source:dbfullsql=<connection_string> -dest:dbfullsql=c:\myscript.sql -debug
-
Posted to
Web Deployment Tool (MS Deploy)
by
madjos
on
05-26-2008, 5:32 PM
Hi Erismar,
"netsh http" is available in Vista and later operating systems.
For Windows 2003 you need to download and use httpcfg.exe (http://www.microsoft.com/downloads/details.aspx?amp;displaylang=en&familyid=49ae8576-9bb9-4126-9761-ba8011fabf38&displaylang=en)
The syntax is "httpcfg.exe query urlacl". In the ...