惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 软件之美,美在缺陷-Johnson

如何:在OpenText Workflow 6.5模型中保存和读取多行数据 轻松部署Captaris Workflow 6.5模型 浅比.NET和Java开发工具。 .NET资源转换工具 排除大型工作流应用的性能问题纪要。 淘宝网一家店里看到的留言和掌柜的搞笑回复。 Windows Network Load Balancing群集故障排除手记。 Captaris Workflow 6.0 EventService 执行效率低下的排除。 Captaris Workflow开发系列课程介绍。 在虚拟机里System进程占用CPU100%的问题解决 如何做好售前技术支持工作 一家公司网站上的招聘人才招聘栏目 在GridView中使用ModalPopupExtender(转) VMWare 5.5 虚拟机错误。 Your've got mail A new post form Microsoft Live Writer. How to: Debug Captaris Workflow 6.0 Process efficiency? - 软件之美,美在缺陷-Johnson How to: Debug Captaris Workflow 6.0 Process efficiency? - 软件之美,美在缺陷-Johnson Recently learning about AJAX on ASP.NET
Captaris Workflow 6.0问题两则。
软件之美,美在缺陷-Jo · 2007-03-12 · via 博客园 - 软件之美,美在缺陷-Johnson

最近在做Captaris Workflow 构建工作流应用项目,向Captaris Support Team提交后解决了在项目中遇到的两个问题中的一个:
1.The Model_Complete Event could not raise.
Hi there,
  I want do some thing like 'Move to folder' or 'Rename the process' when all task down(The process is completed).
  I did these but nothing happened:
  1.On VS.net 2005 Captaris Disgner Form, double click the 'Complete' Event on the 'property' window to handle Model_Complete event.
  2.On the appear code editor, write some code on the public void Model_Complete() method.
  3.Compile and deploy the model.
  4.Start debug and do all task done.
  5.When all task completed, the process status is 'Completed' but Model_Complete() method never be load and run.

Please tell me why.

Thanks,

Johnson.

回答:

Hello Johnson,

You are right, using Model_Complete(0 it will not move the file and I will report this to our dev team. Instead of moving the file in Model.Complete, please move the file in the last task in the complete event.

Thank you
Regards,
Elena

我只能用第类的解决方法来完成这个功能了。

2.IProcess.MoveFile method not working?

Hello Elena,
  If you find out that I can get service on workflow product, May I ask another question:
  Why the Ready or Complete or Executing event of a task raise two times when the task is the last task on a model?
  Example:
   TaskCFO and TaskCIO linked TaskComplete, the two link execution logic is same as:
Common["Common/IsApproved"] == "1" && (Convert.ToDecimal(Common["Common/approvedBudgetAmount"]) / Convert.ToDecimal(Common["Common/USDExchangeRate"]) < 3000M ) (Common["Common/OverseaTravel"] != "1")
  When TaskCIO completed, the TaskComplete Execution event raise just once,that is correct. But when TaskCFO completed, the TaskComplete Execution event raise two times,  that is not correct. It's should just raise once as TaskCIO.
  Please gird me how to fix it.

Johnson

回答:

Hi Johnson,

I was able to recreate this error (do you have HF 4 installed on your machine?). However, the issue is with the link and we knew about this issue with our engine (It actually shows as fixed in our HF4)
Here is the scenario
Task 1 --Link A --Task 2
Task 1 --LinkB --Task 3
Task2 --LinkC --Task3

When you design your workflow you need to place the workflow links on the canvas in the correct order. LinkA must always have the lowest ObjectId in comparison to Link B and C.
This means that you need to place LinkA on the workflow canvas first, then place linkB and Link C. As long as the LinkA has the lowest ObJectID then the workflow engine will evaluate the links correctly.

Please give this a try and let me know if helps
Regards,
Elena

自己记录一下。