Generates and uploads ISML files to the given Uri. Uses WebDAV, which must be enabled on the receiving server.
The .isml file is placed in the web directory, and controls a publish point.
Esempio n. 1
0
        private static IisPointCreator PreparePointCreator(string dest_root)
        {
            var sp     = dest_root.LastIndexOf('/');
            var dest   = new Uri(dest_root.Substring(0, sp), UriKind.Absolute);
            var ppname = dest_root.Substring(sp + 1);

            var pc = new IisPointCreator(dest, ppname);

            return(pc);
        }
        private static IisPointCreator PreparePointCreator(string dest_root)
        {
            var sp = dest_root.LastIndexOf('/');
            var dest = new Uri(dest_root.Substring(0, sp), UriKind.Absolute);
            var ppname = dest_root.Substring(sp + 1);

            var pc = new IisPointCreator(dest, ppname);
            return pc;
        }