Using a WSDL with abstract types in PHP

前端 未结 3 1802
-上瘾入骨i
-上瘾入骨i 2021-01-14 02:31

I\'m working on an integration between our web application and Microsoft Exchange 2007. I am using Exchange Web Services (EWS) to communicate to the Exchange Server. Howev

3条回答
  •  失恋的感觉
    2021-01-14 03:21

    You can use substitutionGroup only with global elements not with types. The same with

    
    

    if you use a ref reference you need a element and not a type!

    
    
    
    
    
    

    A other approache is just to use abstract types and XMLSchema-instance (xsi:type) instead and leave the substitutionGroup as you did.

    
    
    
    
    
    
    
    

    This may explain that a bit better as i did. http://www.xfront.com/ExtensibleContentModels.pdf

提交回复
热议问题