You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Sumeet Mahajan (JIRA)" <ji...@apache.org> on 2017/10/03 19:22:00 UTC

[jira] [Created] (CXF-7523) JaxWsDynamicClientFactory loads classes in classpath only "once"

Sumeet Mahajan created CXF-7523:
-----------------------------------

             Summary: JaxWsDynamicClientFactory loads classes in classpath only "once"
                 Key: CXF-7523
                 URL: https://issues.apache.org/jira/browse/CXF-7523
             Project: CXF
          Issue Type: Bug
          Components: JAX-WS Runtime
    Affects Versions: 3.1.13
            Reporter: Sumeet Mahajan
            Priority: Critical


I have below code,

JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance(); 
client = dcf.createClient("/sm/ws/wsdl/DataImportUtility.wsdl", Thread.currentThread().getContextClassLoader()) 

This generates POJO classes defined in my WSDL.
When i try to load it it does load the classes and invokes webservice.

But on the 2nd run, when i try to use the same "client" instance and load the POJO's using below code,
ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); 
Object req = classLoader.loadClass(pkg+".GetHoldingsRequest").newInstance(); 

I get ClassNotFoundException.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)