当前位置:首页 > 技术手札 > 正文内容

关于UG NX8.0/8.5二次开发dll签名失败的问题

秋风渡红尘8年前 (2018-05-09)技术手札3343

使用vc++二次开发,正版UG NX加载DLL时会提示图像未加载……

了解为正版UG加载二次开发的dll需要签名。

签名过程中出现以下问题:

Signing fails because the following licenses are unavailable
c_p_p_author:
License Error, license module is not present. [ -10009 ]

ufunc_development:
License Error, license module is not present. [ -10009 ]

ugopen_plus_plus:
License Error, license module is not present. [ -10009 ]

国外论坛的答案是

Besides the signing procedure, which has been well covered here, there is a licensing step that I learned was necessary.  The steps below cover it.  Once they are done, you can run the signing program.

 

  1. An NX c_p_p_author license must be available on the NX license server used.
  2. To make the c_p_p_author license available on the machine the signing process will be run, it must be activated using the following steps.
  3. Start/All Programs/Siemens NX 10/NX Licensing Tools/Licensing Tool
  4. Bundle Settings
  5. Select Partner NX Dev from Available Bundles and move to Applied Bundles.
  6. Apply and Exit

问题是,没有代理商Licensing怎么办?

扫描二维码推送至手机访问。

版权声明:本文由咿呀贝发布,如需转载请注明出处。

本文链接:https://www.yiyabei.cn/?id=21

标签: UG
分享给朋友:

相关文章

ubuntu下笔记本触摸板的禁用

ubuntu下笔记本触摸板的禁用

        有件事必须承认,Ubuntu对笔记本触摸板的控制没有Windows管理方便,这仅仅出于个人观点,因为在Linux的道路上,我还是新手中的新手。...

ubuntu 安装mysql

ubuntu 安装mysql

sudo apt-get install mysql-server sudo apt isntall mysql-client sudo apt install libmysqlclient-dev 检测是否安装成功: sudo n...

cocos creator逐个输出字体实现方式

cocos creator逐个输出字体实现方式

方法一: for str += string 特点是每次循环前面的字符都要重新输出一次,容易造成闪烁。 方法二: for location[i].t...

cocos creator动态设置label导致F12调试undefined

cocos creator动态设置label导致F12调试undefined

新手上路,想动态添加 label[i].string = text[i]; 所以层级管理器只建立了一个空节点LabelParent; 想把label[i]设置setparent(LabelParen...

cocos creator 学习总结

cocos creator 学习总结

文章来自https://blog.csdn.net/xiayuhoune/article/details/78824841 仅供自学参考。 一、基本内容: 1.cc.Label相关: (1)动态创建...

cocos creator使用typescrip模板至export和import

cocos creator使用typescrip模板至export和import

export default XX 和 import XX from '...' 搭配。 export XX 和 import {XX} from...