Table of Contents
Previous Section
// Java implementation
public WOApplication() {
super();
...
setDefaultRequestHandler(requestHandlerForKey(
WOApplication.directActionRequestHandlerKey()));
...
} //WebScript implementation
- init {
self = [super init];
...
[self setDefaultRequestHandler:[self requestHandlerForKey:
[WOApplication directActionRequestHandlerKey]]];
...
return self;
}
Table of Contents
Next Section