createobject

Cannot instanciate .Net COM object in classic ASP/VBScript page (Error ASP 0177)

浪子不回头ぞ 提交于 2019-12-02 00:19:33
I've written a COM interop enabled class-library in C# using .Net 3.5. The object is meant to provide some utility functions for classic ASP pages. I've written a test.asp page which instanciates the desired object and calls its methods. Works fine on my machine. On a different machine (Windows Server 2003 - Standard Edition) it doesn't work eventhough the assembly is registered with regasm correctly. I've checked the regedit and afaik it looks ok. The error I'm getting is "ASP 0177" (error code), "8000ffff; Server.CreateObject-Fehler" (error description) which translates to Server

CreateObject randomly throws “A system shutdown has already been scheduled” error

只谈情不闲聊 提交于 2019-11-30 15:05:53
问题 I googled and SO'd, and nothing. My job revolves around making my co-workers lives easier. Currently, they are using very clunky spreadsheets designed 10+ years ago. In the process of migrating their tools and reports to the local intranet using PHP, i have configured a spreadsheet that downloads that persons permissions based on their Application.Username Then a little back and forth with the server to generate a session key, and then pop internet explorer opens up with the relevant tool

CreateObject randomly throws “A system shutdown has already been scheduled” error

六眼飞鱼酱① 提交于 2019-11-30 13:01:34
I googled and SO'd, and nothing. My job revolves around making my co-workers lives easier. Currently, they are using very clunky spreadsheets designed 10+ years ago. In the process of migrating their tools and reports to the local intranet using PHP, i have configured a spreadsheet that downloads that persons permissions based on their Application.Username Then a little back and forth with the server to generate a session key, and then pop internet explorer opens up with the relevant tool they selected from a dropdown within the workbook - meaning their session and tools are then purely

Failed to execute 'createObjectURL' on 'URL':

僤鯓⒐⒋嵵緔 提交于 2019-11-28 03:31:26
Display Below error in Safari. Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided. My Code is: function createObjectURL(object) { return (window.URL) ? window.URL.createObjectURL(object) : window.webkitURL.createObjectURL(object); } This is my Code for image: function myUploadOnChangeFunction() { if (this.files.length) { for (var i in this.files) { if (this.files.hasOwnProperty(i)) { var src = createObjectURL(this.files[i]); var image = new Image(); image.src = src; imagSRC = src; $('#img').attr('src', src); } } } } I experienced same error,

VBScript and CreateObject issue

懵懂的女人 提交于 2019-11-27 16:28:13
I'm not really experimented if it is about VBScript but I had the occasion to read many things through forums and actually yesterday I helped someone to checkout why his script wasn't working and found him a solution. So I modified this script locally and did it the way I would and it worked but on that other person side one of the object couldn't be initialized. The incriminated line is like Set WshNet = WScript.CreateObject("WScript.Network") Another person told to remove the WScript thing and it seems it works on the question asker side. I first thought it might be linked with the use of

VBScript and CreateObject issue

感情迁移 提交于 2019-11-26 18:43:42
问题 I'm not really experimented if it is about VBScript but I had the occasion to read many things through forums and actually yesterday I helped someone to checkout why his script wasn't working and found him a solution. So I modified this script locally and did it the way I would and it worked but on that other person side one of the object couldn't be initialized. The incriminated line is like Set WshNet = WScript.CreateObject("WScript.Network") Another person told to remove the WScript thing