Hello,
I have encountered a serious problem in using ADF BC Application Module with custom made WebService.
I am hoping that i missed something, and that someone can help me or point me in right direction.
My problem occured when I could not expose methods with complex types as WebServices from Application Module,
So i have used custom class and get myself instance of Application Module, invoked methods and everything worked fine
I was getting instance using this way:
| ADFContext ac = ADFContext.initADFContext(null, null, null, null); |
| |
| AppModuleImpl am = (AppModuleImpl)Configuration.createRootApplicationModule("model.AppModuleImpl ", "AppModuleImplLocal"); |
When running from main method in some class everything works great.
Problem is when i make that class WebService provider, then my methods try to get Application Module instance and get ::
ns0:Server
java.lang.NoClassDefFoundError: oracle/jbo/client/Configuration
I am really not sure what could be the issue, is there something which should be done on WebLogic (tried both on integrated and dedicated)
Or there is some other way to get Application Module instance.
both 12.2.1 versions of JDeveloper have exact the same problem