-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopic-post137.html
110 lines (96 loc) · 6.08 KB
/
topic-post137.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja" dir="ltr">
<head>
<title>日本PHPユーザ会 掲示板: PHP 5 » PHPからDLL(COM)の呼出方法について</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="日本PHPユーザ会運営の掲示板です。※ただいまテスト運用中です。" />
<meta name="keywords" content="php,web,php.gr.jp,community,usebb" />
<link rel="stylesheet" type="text/css" href="./templates/phpgrjp0.3/styles.css" />
<link rel="shortcut icon" href="./templates/phpgrjp0.3/gfx/usebb.ico" />
<link rel="alternate" type="application/rss+xml" title="日本PHPユーザ会 掲示板 RSS フィード" href="rss.xml" />
<script type="text/javascript" src="sources/javascript.js"></script>
</head>
<body onload="javascript:init_external()">
<div id="pagebox-bg">
<div id="shadow-left">
<div id="shadow-right">
<p id="logo"><a href="index.html"><img src="./templates/phpgrjp0.3/gfx/usebb.png" alt="UseBB" title="ホーム" /></a></p>
<h1 id="boardname"><span id="line">日本PHPユーザ会 掲示板</span></h1>
<h2 id="boarddescr">日本PHPユーザ会運営の掲示板です。※ただいまテスト運用中です。</h2>
<div id="topmenu"><ul>
<li><a href="index.html">ホーム</a></li><li><a href="faq.html">FAQ</a></li><li><a href="active.html">活発なトピック</a></li>
</ul></div>
<div id="topmenu-shadow"></div>
<p class="locationbar">
• <a href="index.html">日本PHPユーザ会 掲示板</a> » <a href="forum-4.html">PHP 5</a> » PHPからDLL(COM)の呼出方法について
</p>
<h3 id="forumname"><a href="topic-55.html">PHPからDLL(COM)の呼出方法について</a></h3>
<p id="forummods"></p>
<p id="toolbartop"> </p>
<p id="pagelinkstop">ページ: 1</p>
<table class="maintable">
<tr>
<th>投稿者</th>
<th>投稿</th>
</tr>
<tr class="tr1">
<td class="postername">
<div class="posternamecontainer"><a href="profile-83.html">gomesu</a></div>
</td>
<td class="postinfo">
<div class="postlinks"></div>
<div class="postdate"><a href="topic-post134.html#post134" name="post134" rel="nofollow">#1</a> 2008 年 4 月 2 日(水) 15:01</div>
</td>
</tr>
<tr class="tr1">
<td class="posterinfo">
会員
<div class="avatar"></div>
<div class="field">登録者: 4 2008</div>
<div class="field">返信数: 2</div>
<div class="field"></div>
</td>
<td class="postcontent">
<div class="post">お世話になります。<br /><br />C++で作成したDLLのCOMをPHPから実行したいのですが、<br />PHPからの呼び出し方法がよくわかりません。<br /><br />以下の内容についてご教授願います。<br /><br />環境:<br />WindowsXP、PHP5.2.5+IIS、Visual studo 2005<br /><br />DLL作成手順:<br />プロジェクト名:Test1<br />Visual studoのATLプロジェクトウィザードで<br />DLL、COM+サポート、レジストを指定。<br /><br />生成されたTest1.cppに以下のコードのみを記述<br />Test1.cpp :<br /><br /><pre class="code">CTest1App::CTest1App() <br />{ <br /> // ↓ここのみ記述。 <br /> using namespace std; <br /> ofstream fout ("c:\\temp\\d.log"); <br /> fout << "[debug]" << endl ; <br /> // ↑ここのみ記述。 <br />}</pre><br />呼び出し側のPHP:<br />Test1.php :<br /><pre class="code"><?php <br />$mycom = new COM("Test1.Test"); <br />?></pre><br /><br />ビルド後、<br />regsvr32 /s Test1.dll でレジストリ登録して、<br />コマンドラインから<br />> php test1.php<br />を実行すると以下のようなエラーとなります。<br />当然ファイルは出力されていません。<br /><br />PHP Fatal error: Uncaught exception 'com_exception' with message 'Failed to create COM object `Test1.Test': 構文が無効です' in C:\Inetpub\wwwroot\php\test1.php:2 <br />Stack trace: <br />#0 C:\Inetpub\wwwroot\php\test1.php(2): com->com('Test1.Test') <br />#1 {main} <br /> thrown in C:\Inetpub\wwwroot\php\test1.php on line 2<br /><br />phpのnew COM("xxxx.zzzz");の部分について、<br />DLLを自前で作成した場合、<br />COMのインスタンス化するときの引数に何を指定して良いのかがわかりません。<br /><br />C++側のクラスIDを指定しても同様のエラーとなり<br />どこに設定されている(設定する)値を指定すれば良いのでしょうか?<br /><br />以上、よろしくお願いします。</div>
</td>
</tr>
<tr class="tr2">
<td class="postername">
<div class="posternamecontainer"><a href="profile-83.html">gomesu</a></div>
</td>
<td class="postinfo">
<div class="postlinks"></div>
<div class="postdate"><a href="topic-post137.html#post137" name="post137" rel="nofollow">#2</a> 2008 年 4 月 2 日(水) 17:11</div>
</td>
</tr>
<tr class="tr2">
<td class="posterinfo">
会員
<div class="avatar"></div>
<div class="field">登録者: 4 2008</div>
<div class="field">返信数: 2</div>
<div class="field"></div>
</td>
<td class="postcontent">
<div class="post">自己解決しました。<br />DLLの生成方法に誤りがあり、上記のエラーとなっていたようです。<br /><br />お騒がせしました。</div>
</td>
</tr>
</table>
<p id="toolbarbottom"> </p>
<p id="pagelinksbottom">ページ: 1</p>
<div id="bottomfix"></div>
<p id="actionlinks"></p>
<p class="locationbar">
• <a href="index.html">日本PHPユーザ会 掲示板</a> » <a href="forum-4.html">PHP 5</a> » PHPからDLL(COM)の呼出方法について
</p>
<p id="linkbar">
</p>
<p id="bottom">
日本PHPユーザ会 掲示板 は <a href="http://www.usebb.net">UseBB 1 フォーラムソフトウェア</a> を使用しています
</p>
<div id="bottom-shadow"></div>
</div>
</div>
</div>
</body>
</html>