use of org.wildfly.httpclient.naming.HttpRemoteNamingService in project wildfly by wildfly.
the class HttpRemoteNamingServerService method start.
@Override
public void start(StartContext startContext) throws StartException {
final Context namingContext = new NamingContext(namingStore.getValue(), new Hashtable<String, Object>());
HttpRemoteNamingService service = new HttpRemoteNamingService(namingContext);
pathHandlerInjectedValue.getValue().addPrefixPath(NAMING, service.createHandler());
}
Aggregations