Hello,
I downloaded a Reify exported project and put it into my SmartGWT /war directory. However, when I use the following code (adapted from the Reify for Developers), I get this error message. Do you know what I need to do?
BrcmPopupWindow myWindow = new BrcmPopupWindow();
myWindow.addMember(RPCManager.createScreen("Main Screen"));
myWindow.draw();
11:04:04.201:MUP4:WARN:RPCManager:Asked to create screen 'Main Screen', but it's not cached - did you call cacheScreen() first?
I then called cacheScreen in the onModuleLoad and am seeing this exception:
11:08:13.878:XRP4:WARN:RPCManager:Transport error - HTTP code: 404 for URL: http://lvn-beer-stb-01:14554/tkr/sc/screenLoader - response: {operationId: "custom",
clientContext: undef,
internalClientContext: undef,
context: Obj,
transactionNum: 6,
httpResponseCode: 404,
httpResponseText: "<html>\n<head>\n<meta http-equiv="Content-..."[303],
xmlHttpRequest: [object XMLHttpRequest],
transport: "xmlHttpRequest",
status: -90,
clientOnly: undef,
httpHeaders: Obj,
isStructured: true,
callbackArgs: null,
results: Obj,
data: "Transport error - HTTP code: 404 for URL..."[90],
clientTiming: Obj{name:Client processing},
clientTimingStack: Array[2]}
Do you know how to set up the screenLoader? I don't see documentation for it in the Reify for Developers. I see something about putting ScreenLoaderServlet into your web.xml but we have an older web.xml version.
I downloaded a Reify exported project and put it into my SmartGWT /war directory. However, when I use the following code (adapted from the Reify for Developers), I get this error message. Do you know what I need to do?
BrcmPopupWindow myWindow = new BrcmPopupWindow();
myWindow.addMember(RPCManager.createScreen("Main Screen"));
myWindow.draw();
11:04:04.201:MUP4:WARN:RPCManager:Asked to create screen 'Main Screen', but it's not cached - did you call cacheScreen() first?
I then called cacheScreen in the onModuleLoad and am seeing this exception:
11:08:13.878:XRP4:WARN:RPCManager:Transport error - HTTP code: 404 for URL: http://lvn-beer-stb-01:14554/tkr/sc/screenLoader - response: {operationId: "custom",
clientContext: undef,
internalClientContext: undef,
context: Obj,
transactionNum: 6,
httpResponseCode: 404,
httpResponseText: "<html>\n<head>\n<meta http-equiv="Content-..."[303],
xmlHttpRequest: [object XMLHttpRequest],
transport: "xmlHttpRequest",
status: -90,
clientOnly: undef,
httpHeaders: Obj,
isStructured: true,
callbackArgs: null,
results: Obj,
data: "Transport error - HTTP code: 404 for URL..."[90],
clientTiming: Obj{name:Client processing},
clientTimingStack: Array[2]}
Do you know how to set up the screenLoader? I don't see documentation for it in the Reify for Developers. I see something about putting ScreenLoaderServlet into your web.xml but we have an older web.xml version.
Comment