| Summary: | The statement “Call Service statement” onException report error. | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Xiao Bin Chen <xiaobinc> | ||||||
| Component: | EDT | Assignee: | Project Inbox <edt.compiler-inbox> | ||||||
| Status: | CLOSED INVALID | QA Contact: | |||||||
| Severity: | normal | ||||||||
| Priority: | P3 | CC: | chenzhh, mheitz | ||||||
| Version: | unspecified | ||||||||
| Target Milestone: | --- | ||||||||
| Hardware: | PC | ||||||||
| OS: | Windows XP | ||||||||
| Whiteboard: | |||||||||
| Attachments: |
|
||||||||
|
Description
Xiao Bin Chen
Created attachment 201770 [details]
program code
program code
Created attachment 201771 [details]
service code
Xiao Bin, what's the error message? I typed in the code and got no errors. My version of your program and service are below. --- program package test; import egl.lang.AnyException; program svctest asev BService; function main() call asev.hello() returning to callback onException dd; end function callback(s string in) end function dd(a AnyException in) end end --- service package test; service BService function hello() returns(string) end end The error message is IWN.VAL.3398.e 14/55 test - The parameter at position 1 of function dd must have a type of egl.core.AnyException. But After I update all of my plugin project , The error disappear. Thought it should be the egl.core.AnyException was changed to egl.lang.AnyException. So I closed the defects. (In reply to comment #3) > Xiao Bin, what's the error message? I typed in the code and got no errors. > > My version of your program and service are below. > > --- program > > package test; > > import egl.lang.AnyException; > > program svctest > > asev BService; > function main() > call asev.hello() returning to callback onException dd; > end > > function callback(s string in) > end > > function dd(a AnyException in) > end > end > > --- service > > package test; > > service BService > function hello() returns(string) > end > end |