Code Monkey home page Code Monkey logo

Comments (7)

 avatar commented on May 25, 2024

I have developed a bundle (non public) for the same purpose (mobile.de API) and encountered the same problem.
You just need to correct the ad namespace:

    xml_root_name: search-result
    xml_root_namespace: 'http://services.mobile.de/schema/search'
    properties:
        [...]
        ads:
            expose: true
            access_type: public_method
            serialized_name: ads
            xml_element:
                namespace: 'http://services.mobile.de/schema/search'
            accessor:
                getter: getAds
                setter: setAds
            type: array<Mobile\Ad\Ad>
            xml_list:
                inline: false
                entry_name: ad
                namespace: 'http://services.mobile.de/schema/ad' <---- here



from xsd2php.

robinlehrmann avatar robinlehrmann commented on May 25, 2024

@Ama-Gi you save my day! It's working now. Thank you very much.
Do you think there is a bug in this library or do you think it came from mobile.de ?

from xsd2php.

 avatar commented on May 25, 2024

The xsd files from mobile.de look fine to me, I think its a bug. The errors xml list probably has the same problem, i think it should be:

errors:
    [...]
    xml_list:
        inline: false
        entry_name: error
        namespace: 'http://services.mobile.de/schema/common/error-1.0'

instead of

errors:
    [...]
    xml_list:
        inline: false
        entry_name: error
        namespace: 'http://services.mobile.de/schema/search'

I guess maybe this library ignores the ref attribute for the child elements (ref="ad:ad")?

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="http://services.mobile.de/schema/search" xmlns:search="http://services.mobile.de/schema/search" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ad="http://services.mobile.de/schema/ad" xmlns:error="http://services.mobile.de/schema/common/error-1.0" elementFormDefault="qualified">

    <xs:import namespace="http://services.mobile.de/schema/ad" schemaLocation="ad-1.0.xsd"/>
    <xs:import namespace="http://services.mobile.de/schema/common/error-1.0" schemaLocation="common/error-1.0.xsd"/>

    <xs:element name="result">
        <xs:complexType>
            <xs:sequence>
                <xs:element ref="ad:ad" minOccurs="0" maxOccurs="unbounded"/>
            </xs:sequence>
            <xs:attribute name="total" use="required" type="xs:int"/>
            <xs:attribute name="page-size" use="required" type="xs:int"/>
            <xs:attribute name="current-page" use="required" type="xs:int"/>
            <xs:attribute name="max-pages" use="required" type="xs:int"/>
        </xs:complexType>
    </xs:element>

    <xs:element name="search-result">
        <xs:annotation>
            <xs:documentation>The ad-search-result including some metadata, probably warnings and the ads (for this
                page).
            </xs:documentation>
        </xs:annotation>
        <xs:complexType>
            <xs:sequence>
                <xs:element name="total" type="xs:int">
                    <xs:annotation>
                        <xs:documentation>The total number of results.</xs:documentation>
                    </xs:annotation>
                </xs:element>
                <xs:element name="page-size" type="xs:int">
                    <xs:annotation>
                        <xs:documentation>The number of results per page.</xs:documentation>
                    </xs:annotation>
                </xs:element>
                <xs:element name="current-page" type="xs:int">
                    <xs:annotation>
                        <xs:documentation>The current page number.</xs:documentation>
                    </xs:annotation>
                </xs:element>
                <xs:element name="max-pages" type="xs:int">
                    <xs:annotation>
                        <xs:documentation>The total number of results-pages.</xs:documentation>
                    </xs:annotation>
                </xs:element>
                <xs:element ref="error:errors" minOccurs="0">    <------ HERE
                    <xs:annotation>
                        <xs:documentation>A list of non fatal errors related to this search request e.g. invalid or
                            deprecated search parameters. If this list is present then the search result might not be as
                            intended by the client, so always check that this not present.
                        </xs:documentation>
                    </xs:annotation>
                </xs:element>
                <xs:element name="ads">
                    <xs:annotation>
                        <xs:documentation>The ad results (of this page).</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                        <xs:sequence>
                            <xs:element ref="ad:ad" minOccurs="0" maxOccurs="unbounded"/>   <------ HERE
                        </xs:sequence>
                    </xs:complexType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>

    <xs:simpleType name="event-type">
        <xs:restriction base="xs:string">
            <xs:enumeration value="AD_CREATE_OR_UPDATE">
                <xs:annotation>
                    <xs:documentation/>
                </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="AD_DELETE">
                <xs:annotation>
                    <xs:documentation/>
                </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="ERROR">
                <xs:annotation>
                    <xs:documentation/>
                </xs:annotation>
            </xs:enumeration>
        </xs:restriction>
    </xs:simpleType>

    <xs:element name="event">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="event-type" type="search:event-type" minOccurs="0"/>
                <xs:element name="ad-key" type="xs:token" minOccurs="0"/>
                <xs:element ref="ad:ad" minOccurs="0"/>
                <xs:element ref="error:errors" minOccurs="0"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>

</xs:schema>`


from xsd2php.

robinlehrmann avatar robinlehrmann commented on May 25, 2024

Okay, we should try to fix that via a pull-request. I will look for it as soon as posible.

from xsd2php.

goetas avatar goetas commented on May 25, 2024

@robinlehrmann any news?

from xsd2php.

robinlehrmann avatar robinlehrmann commented on May 25, 2024

@goetas No, I'm sorry, currently I haven't enough time to resolve it.

from xsd2php.

duhecx avatar duhecx commented on May 25, 2024

Anyone had a work around or any solid solution for this?

from xsd2php.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.