生成OSIDAAuto.OPCServer失败
来源:https://pisquare.osisoft.com/message/13441
A failuare of generating OSIDAAuto.OPCServer
dorisliper 2011-2-17 上午2:13
Dear Sir/Madam
We'd like to use OSIDAAuto.OPCServer, but an exception occurs as follows when we generate OSIDAAuto.OPCServer. "error message:the following error occurred:80040154 when obtaining the COM class factory of component including CLSID{25E4451E-DA6A...}" We think that registering COM componet is done well, because the same key exists in the registry. Please let me know if you know another reason.
Environment OS:Windows Server Enterprise SP2 (64Bit)
developing tool:Visual Studio 2008(VB.NET / 3.5SP1)
Source Code
Dim myOPCServer AS OSIDAAuto.OPCServer = new OSIDAAuto.OPCServer()
Sincerely yours, Yamaguchi
- 127 查看
- 标签: opc_da
带有 opc_da 标记的内容
Re: A failuare of generating OSIDAAuto.OPCServer
hanyong
2011-2-17 上午5:59 (回复 dorisliper)Hi Yamaguchi,
I guess you are trying to write an OPC client that reads data from PI Server via PI OPC DA Server? Have you tried connecting to PI OPC Server using PI OPC Client or other 3rd party OPC client from the development machine? Is the PI Server on the same machine?
Re: A failuare of generating OSIDAAuto.OPCServer
spilon 2011-2-17 上午8:22 (回复 hanyong)
Is your application (the OPC Client) on the same machine than the PI OPC DA/HDA Server? I'm asking because it might very well be a DCOM security issue... I would kindly recommend you read the section on security and DCOM in the PI OPC DA/HDA Server manual (available on the vCampus Library, under vCampus PI Products Kit > Data Access Technologies).
Re: A failuare of generating OSIDAAuto.OPCServer
dorisliper 2011-2-22 下午3:02 (回复 spilon)
Han san, Steve san,
Thank you so much for your answer.
The same error is displayed when the component generation is done though I set the DCOM while seeing the
taught manual.
PI Server, PI OPC Server and the program to be executed are in the same host.
The thing I was anxious when I saw the manual is below.
"It should be Windows 2000/XP.
Although there are costomers who operate with Windows2003, that is not examined formally."
Is it OK that we are testing in Windows2008(64bit)?
In the manual, there is a descripition of using PISDK in PI OPC Server,too.
Is there a condition that it's necessary to generate PI SDK before OPC server is generated?
The source code is the following.
Please teach if there is a code problem.
- Imports OSIDAAuto
- '''
- ''' Test Program
- ''' Watch Tag
- '''
- '''
- ''' +-------------+ +----------------------+ +--------------+ +-----------+
- ''' | ClsWatchOPC | -> |OSIsoft.OSIDAAuto.dll | -> | PI OPC Server| -> | PI Server |
- ''' +-------------+ +----------------------+ +--------------+ +-----------+
- '''
- Public Class ClsWatchOPC
- Protected _OPCServer As OPCServer
- Protected _OPCGroups As OPCGroups
- Protected WithEvents _OPCGroup As OPCGroup
- Protected _OPCItems As OPCItems
- Protected _OPCItem As OPCItem
- Public Const ITEM_MAX As Integer = 8
- Public ItemName(ITEM_MAX) As String
- Public HandleClient(ITEM_MAX) As Integer
- Public HandleServer(ITEM_MAX) As Integer
- Public oVal(ITEM_MAX) As Object
- Public dTime(ITEM_MAX) As Date
- Public wQuality(ITEM_MAX) As Short
- Private Sub New()
- Dim ServerHandles As Array = Nothing
- Dim Errors As Array = Nothing
- ' Create OPCServer and Connect
- Debug.WriteLine("Start : Create OPCServer")
- _OPCServer = New OPCServer()
- _OPCServer.Connect("OSI.DA.1")
- Debug.WriteLine(" End : Create OPCServer")
- ' Setting Update Rate 1000[ms]
- Debug.WriteLine("Start : Setting Update Rate")
- _OPCGroups = _OPCServer.OPCGroups
- _OPCGroup = _OPCGroups.Add("Group1")
- _OPCGroup.UpdateRate = 1000
- Debug.WriteLine(" End : Setting Update Rate")
- ' Enable Advise Function
- Debug.WriteLine("Start : Enable Advise Function")
- _OPCGroup.IsActive = True
- _OPCGroup.IsSubscribed = _OPCGroup.IsActive
- Debug.WriteLine(" End : Enable Advise Function")
- ' Setting Watch Tag(TAG1 ~ TAG8)
- Debug.WriteLine("Start : Setting Watch Tag")
- _OPCItems = _OPCGroup.OPCItems
- For i As Integer = 1 To ITEM_MAX
- ItemName(i) = "TAG" & i
- HandleClient(i) = i
- Next
- _OPCItems.AddItems( _
- ITEM_MAX _
- , ItemName _
- , HandleClient _
- , ServerHandles _
- , Errors _
- )
- For i As Integer = 1 To ITEM_MAX
- If Errors(i) = 0 Then
- HandleClient(i) = ServerHandles(i)
- Debug.WriteLine( _
- "ItemName[" _
- & i _
- & "] : Regist Success." _
- )
- Else
- Debug.WriteLine( _
- "ItemName[" _
- & i _
- & "] : Regist Failure." _
- )
- End If
- Next
- Debug.WriteLine(" End : Setting Watch Tag")
- End Sub
- Private Sub OPCGroup_DataChange( _
- ByVal TransactionID As Integer _
- , ByVal NumItems As Integer _
- , ByRef ClientHandles As System.Array _
- , ByRef ItemValues As System.Array _
- , ByRef Qualities As System.Array _
- , ByRef TimeStamps As System.Array _
- ) Handles _OPCGroup.DataChange
- Debug.WriteLine("DataChanged")
- Debug.WriteLine("TransactionID : [" & TransactionID & "]")
- Debug.WriteLine("NumItems : [" & NumItems & "]")
- For i As Integer = 1 To NumItems
- Debug.WriteLine( _
- "Rec[" & i & "] : " _
- & "ItemValues : [" & ItemValues(i) & "]" _
- & " / Qualities : [" & Qualities(i) & "]" _
- & " / TimeStamps : [" & TimeStamps(i) & "]" _
- )
- Next
- End Sub
- Private Sub OPCGroup_AsyncReadComplete( _
- ByVal TransactionID As Integer _
- , ByVal NumItems As Integer _
- , ByRef ClientHandles As System.Array _
- , ByRef ItemValues As System.Array _
- , ByRef Qualities As System.Array _
- , ByRef TimeStamps As System.Array _
- , ByRef Errors As System.Array _
- ) Handles _OPCGroup.AsyncReadComplete
- Debug.WriteLine("AsyncReadComplete")
- Debug.WriteLine("TransactionID : [" & TransactionID & "]")
- Debug.WriteLine("NumItems : [" & NumItems & "]")
- For i As Integer = 1 To NumItems
- Debug.WriteLine( _
- "Rec[" & i & "] : " _
- & "ItemValues : [" & ItemValues(i) & "]" _
- & " / Qualities : [" & Qualities(i) & "]" _
- & " / TimeStamps : [" & TimeStamps(i) & "]" _
- )
- Next
- End Sub
- Private Sub OPCGroup_AsyncWriteComplete( _
- ByVal TransactionID As Integer _
- , ByVal NumItems As Integer _
- , ByRef ClientHandles As System.Array _
- , ByRef Errors As System.Array _
- ) Handles _OPCGroup.AsyncWriteComplete
- Debug.WriteLine("AsyncWriteComplete")
- Debug.WriteLine("TransactionID : [" & TransactionID & "]")
- Debug.WriteLine("NumItems : [" & NumItems & "]")
- End Sub
- Private Sub OPCGroup_AsyncCancelComplete( _
- ByVal CancelID As Integer _
- ) Handles _OPCGroup.AsyncCancelComplete
- Debug.WriteLine("AsyncCancelComplete")
- Debug.WriteLine("CancelID : [" & CancelID & "]")
- End Sub
- End Class
Re: A failuare of generating OSIDAAuto.OPCServer
spilon 2011-2-23 下午6:28 (回复 dorisliper)
What you seem to be using is a .NET Interop assembly that was automatically generated from the COM-based OPC Automation Interfaces we ship with our products. I personally do not have experience with using these "wrappers" and we actually never encouraged or taught how to use them.
Typically, when you want to develop something OPC in .NET, you need to use the OPC .NET Automation Wrapper or the OPC .NET API. The former is intended to facilitate porting existing VB6 applications over to VB.NET, whereas the latter is the recommended approach for new OPC applications in .NET (whether in VB.NET or C#). For more information, please see the "OPC - Past, Present and Future" webinar under the vCampus Auditorium, or the PI Application Development Training course materials.
Hope this helps!
Re: A failuare of generating OSIDAAuto.OPCServer
spilon 2011-2-24 下午1:29 (回复 spilon)
Would you happen to be on a 64-bit machine? I dug this up a little more, and the Class ID you listed up there (at the least the 14 first characters) seem to point to the OSIDAAuto.dll COM library. This is a 32-bit library. You will have to force your .NET application to build for 32-bit because 64-bit stuff cannot call 32-bit DLLs.
Re: A failuare of generating OSIDAAuto.OPCServer
spilon 2011-2-24 下午4:28 (回复 spilon)
Out of curiosity, I tried to make this code you posted earlier, but could not. I get past the creation of the OPCServer, but cannot seem to access/initialize the OPCGroups collection. After doing some research, it the seems like there is a problem in how .NET Interop was generated and how it deals with the underlying COM components. It seems like you can use it in the .NET Framework 1.1, but not in later version (like 3.5, which you are using). I found several other posts on forums on the Web, where people shared the same issue (for different OPC Servers, not OSIsoft's) and nobody found an answer.
Per one of my previous posts, this library you are using is not something "official" or even supported. I strongly recommend you use one of the official alternatives:
- OPC DA Automation Wrapper (also known as the "OPC .NET RCWs MergeModule")
- OPC .NET API (they have version 1.3 for .NET 1.0/1.1, and version 2 for .NET 2.0)
- OPC .NET 3.0 (a WCF-based SDK, formerly known as OPC Xi)
Hope this helps!
Re: A failuare of generating OSIDAAuto.OPCServer
spilon 2011-2-24 下午4:29 (回复 spilon)
Oh, I forgot: please consult the OPC Foundation website (www.opcfoundation.org) for more information on all this.
Re: A failuare of generating OSIDAAuto.OPCServer
dorisliper 2011-3-1 上午11:00 (回复 spilon)
Hi Pilon!
Thanks for letting me know.
I appreciate that.
I'll try with OPC .NET3.0.
生成OSIDAAuto.OPCServer失败的更多相关文章
- pyinstaller生成exe文件失败
我的python是3.6,目前pyinstaller并不支持,有网友建议在Github上下载源码,用pyinstaller_develop文件夹替换pyinstaller安装位置下同名文件夹.这样做之 ...
- 安卓---下拉刷新---上拉加载---解决导入library等自生成库文件失败的问题
本文的下拉刷新以及上拉加载都是用PullToRefresh实现的,关于PullToRefresh的介绍以及源码,网上可以找到很多,本人在此不再赘述. PullToRefresh是一套实现非常好的下拉刷 ...
- cmake利用toolchain.cmake生成makefile之后,make生成静态库失败问题
问题描述 利用toolchian.cmake设置好编译器后,利用make指令生成静态库,出现以下问题 Error running link command: No such file or direc ...
- 关于ATL生成COM注册失败解决方法
最近搞C++封装研究了下COM 做最后整理打包的时候发现各种问题引发的注册失败,so整理下备忘. 1.因引用其它动态连接库与你注册的dll不在同一目录下引起的异常.(解决方法将依赖dll放置与注册dl ...
- django中对数据库生成记录操作失败
在终端执行以下语句时,会发现一点效果也没有,但是在manage.py中会成功: python3 manage.py makemigrations # 仅仅是在小本本上(migrations文件夹)记录 ...
- 比较详细PHP生成静态页面教程
一,PHP脚本与动态页面. PHP脚本是一种服务器端脚本程序,可通过嵌入等方法与HTML文件混合, 也可以类,函数封装等形式,以模板的方式对用户请求进行处理.无论以何种方式,它的基本原理是这样的.由客 ...
- asp.net等项目编译失败的原因之不能写入
本人遇到过一次生成mvc4项目失败,说是不能写入,后发现是权限问题,特此记录. 解决方案: 对C盘下的temp文件夹设置当前用户的写入权限即可.
- Android 下用 Pull 解析和生成 XML
Java 中是可以用 SAX 和 DOM 解析 XML 的,虽然在 Android 下也可以用这2中方式,但是还是推荐用 Pull.Pull 使用简单,效率相对高,Android 下是集成了 Pul ...
- PHP代码为什么不能直接保存HTML文件——>PHP生成静态页面教程
1.server会依据文件的后缀名去进行解析,假设是HTML文件则server不会进行语法解析.而是直接输出到浏览器. 2.假设一个页面中所有都是HTML代码而没有须要解析的PHP语法,则没有必要保存 ...
随机推荐
- 【leetcode】234. Palindrome Linked List
234. Palindrome Linked List 1. 使用快慢指针找中点的原理是fast和slow两个指针,每次快指针走两步,慢指针走一步,等快指针走完时,慢指针的位置就是中点.如果是偶数个数 ...
- ix 混合索引
raw_datas #DateFrame diff_index_list = [] #行index #多行所有列索引 raw_datas.ix[diff_index_list] #多行一列索引raw_ ...
- 带列表写入文件出错先 json.dumps
output = json.dumps(output, ensure_ascii=False).encode('utf-8')
- Gym - 101806Q:QueryreuQ(回文树)
A string is palindrome, if the string reads the same backward and forward. For example, strings like ...
- # 20155219实验二 Java面向对象程序设计
20155219实验二 Java面向对象程序设计 一.实验内容 1.初步掌握单元测试和TDD 2.理解并掌握面向对象三要素:封装.继承.多态 3.初步掌握UML建模 4.熟悉S.O.L.I.D原则 5 ...
- NFS相关、NFS服务端安装配置、exportfs命令、nfs客户端的问题
1.NFS (network file system,基于RPC协议) 2.NFS服务端安装配置安装服务端:yum install nfs-utils rpcbind -y安装客户端:yum inst ...
- .net core consul grpc--系统服务RPC实现通信(一)
.net core grpc 系统服务实现通信(一) 现在系统都服务化,.net core 实现服务化的方式有很多,我们通过grpc实现客户端.服务端通信. grpc(https://grpc.io/ ...
- 自动化-python介绍与基础
1.1-python的介绍: 简单点来说吧,python这玩意儿是一个叫做Guido van Rossum的程序猿在1989年的圣诞打发时间而决心去开发的一个脚本编程语言.它之前的名字是以abc语言的 ...
- java知识整理
整理一下Java知识点. 一.final finally finalize区别 1.final 修饰符(关键字).被final修饰的类,不能再派生出新的子类,不能作为父类而被子类继承.因此一个类不能既 ...
- <---------------------装箱,拆箱的过程-------------------------->
基本类型包装类: 程序界面用户输入的数据都是以字符串类型存储的,转换成基本数据类型. 八种基本类型对应的包装类: 装箱和拆箱: public class InterDemo { public stat ...