Applying external JAXB binding file to schema elements imported from WSDL

后端 未结 4 1967
半阙折子戏
半阙折子戏 2020-12-31 05:01

The XPath expression in my external binding files can\'t target the elements in my XML schemas which are imported into my WSDL.

Everything runs if I do inline bindin

4条回答
  •  感情败类
    2020-12-31 05:34

    Adding this section to my JAXB configuration helped to do away with a similar error:

    
       true
       false
    
    

    Complete configuration:

    
    
    
        
            true
            false
        
    
        
            
                
            
        
    
    
    

    Credits:

    • https://stackoverflow.com/a/7890753/315385
    • https://stackoverflow.com/a/38077750/315385

提交回复
热议问题