IIS および ActiveX コントロールに関連する質問がいくつかあります。
このチュートリアルhttp://haseebakhtar.wordpress.com/2011/05/31/creating-an-activex-control-in-net-using-c/でactiveXコントロールを開発しています。テストには IE9 を使用し、IDE として VS 2010 を使用しています。コードは次のとおりです。
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Drawing;
namespace AxControls
{
[ComVisible(true)]
[ClassInterface(ClassInterfaceType.None)]
[Guid("42BBA00A-515E-45b5-9EAF-3827F7AEB4FA")]
[ProgId("AxControls.HelloWorld")]
[ComDefaultInterface(typeof(IClip))]
public class HelloWorld : UserControl, IObjectSafety, IClip
{
public HelloWorld()
{
MessageBox.Show("Starting");
}
[STAThread]
public Image GetClipboardImage()
{
MessageBox.Show("try to get image");
Image returnImage = null;
if (Clipboard.ContainsImage())
{
MessageBox.Show("getting image");
returnImage = Clipboard.GetImage();
}
return returnImage;
}
private void SaveImage(Image image)
{
try
{
if (image != null)
{
MessageBox.Show("saving image");
image.Save("C:\\test.jpg");
}
}
catch (Exception e)
{
MessageBox.Show(e.StackTrace);
}
}
public void SaveImgFromClipBoard()
{
Image img = GetClipboardImage();
SaveImage(img);
}
#region IObjectSafety Members
public enum ObjectSafetyOptions
{
INTERFACESAFE_FOR_UNTRUSTED_CALLER = 0x00000001,
INTERFACESAFE_FOR_UNTRUSTED_DATA = 0x00000002,
INTERFACE_USES_DISPEX = 0x00000004,
INTERFACE_USES_SECURITY_MANAGER = 0x00000008
};
public int GetInterfaceSafetyOptions(ref Guid riid, out int pdwSupportedOptions, out int pdwEnabledOptions)
{
ObjectSafetyOptions m_options = ObjectSafetyOptions.INTERFACESAFE_FOR_UNTRUSTED_CALLER | ObjectSafetyOptions.INTERFACESAFE_FOR_UNTRUSTED_DATA;
pdwSupportedOptions = (int)m_options;
pdwEnabledOptions = (int)m_options;
return 0;
}
public int SetInterfaceSafetyOptions(ref Guid riid, int dwOptionSetMask, int dwEnabledOptions)
{
return 0;
}
#endregion
}
}
別のコードは次のとおりです。
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace AxControls
{
[ComImport()]
[Guid("5DC2DE9B-8D7D-490e-A904-C8CBFFD38412")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IObjectSafety
{
[PreserveSig()]
int GetInterfaceSafetyOptions(ref Guid riid, out int pdwSupportedOptions, out int pdwEnabledOptions);
[PreserveSig()]
int SetInterfaceSafetyOptions(ref Guid riid, int dwOptionSetMask, int dwEnabledOptions);
}
}
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace AxControls
{
[ComVisible(true)]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
[Guid("013BFB31-B3F8-4bae-B5C2-5F6D22B815E3")]
public interface IClip
{
void SaveImgFromClipBoard();
}
}
それが私がそれを呼ぶ方法です:
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace AxControls
{
[ComVisible(true)]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
[Guid("013BFB31-B3F8-4bae-B5C2-5F6D22B815E3")]
public interface IClip
{
void SaveImgFromClipBoard();
}
}
1) そのため、ページを更新すると、「開始中」というメッセージ ボックスが 2 つ表示され、1 つずつ表示されます。理由がわかりません。デバッグモードで実行します(もちろんIIS + ASP.NET Webプロジェクト+その中のHTMLファイルを使用)。それが私のビルド後のアクションです
"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\x86\gacutil.exe" /f /i "$(TargetDir)$(TargetFileName)"
"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\x64\gacutil.exe" /f /i "$(TargetDir)$(TargetFileName)"
"C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe" /unregister "$(TargetDir)$(TargetFileName)"
"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\RegAsm.exe" /unregister "$(TargetDir)$(TargetFileName)"
"C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe" "$(TargetDir)$(TargetFileName)"
"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\RegAsm.exe" "$(TargetDir)$(TargetFileName)"
Apache Web Server でも使用しようとしましたが、同じ状況でした - コンストラクターが 2 回呼び出されるようです。
2) Visual Studio で HTML ファイルを変更してデバッグ モードで実行すると、変更がブラウザに表示されないことがよくあります。IE の履歴とキャッシュを消去しようとしましたが、成功しませんでした。IISがキャッシュに入れているようです。それはできますか?どうすれば回避できますか?
3) IObjectSafety メンバーをすべて追加する目的がわかりません。
アップデート:
<html>
<head>
<object name="axHello" style='display:none' id='axHello' classid='CLSID:42BBA00A-515E-45b5-9EAF-3827F7AEB4FA'
codebase='AxControls.cab#version=1,0,0,0'></object>
<script language="javascript">
<!-- Load the ActiveX object -->
var x = new ActiveXObject("AxControls.HelloWorld");
<!-- Display the String in a messagebox ffff-->
x.SaveImgFromClipBoard();
</script>
</head>
<body>
</body>
</html>