JavascriptGen error in Handler when ref server [message #893606] |
Wed, 04 July 2012 15:58  |
Eclipse User |
|
|
|
I am getting an error from the compile of a handler. This started with the latest milestone last week. Is this a known issue and is there a workaround for it?
EGL level
Version: 0.8.1.v201206280959-1Ds7rFmiVCcYWyaY3NTPd8hSh
Error
IWN.HtmlGen.9990.e 0/0 Generation Failed
Generation completed for handler com.dougw.test.client.client with 2 errors and 0 warnings.
Generation Error
IWN.JavascriptGen.9998.e 27/913 Exception occurred: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
IWN.JavascriptGen.9999.e 27/913 Stack Trace: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
Line in the Handler where the error is occuring
function Send_onClick(event Event in)
call AbstractEchoServer.echo(Request.getValue())
using new HttpProxy("com.dougw.test.server2.Echoer") returning to echo
onException wasError;
end
package com.dougw.test.common;
The definition of the the interface
// interface
interface AbstractEchoServer
function echo(parameterName string in) returns (string);
end
The definition of the server
package com.dougw.test.server2;
import com.dougw.test.common.AbstractEchoServer;
service Echoer implements AbstractEchoServer
function echo(parameter string in) returns (string)
return parameter;
end
end
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.03078 seconds