Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - darkled

Pages: [1]
1
General Board / How to remove ObjectID from xs:choice in wsdl?
« on: September 16, 2015, 08:39:53 pm »
Hi all,

I've created new wsdl schema and added <XSDChoice> MdlGrp1 and connected it with InputParameters. When I generate wsdl I get the following:
Code: [Select]
     <wsdl:types>
            <xs:schema targetNamespace="http://www.exampleURI.com/WSDLPackage1" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:s1="http://www.exampleURI.com/WSDLPackage1">
                  <xs:element name="OutputParameters" type="s1:OutputParameters"/>
                  <xs:complexType name="OutputParameters">
                        <xs:sequence/>
                  </xs:complexType>
                  <xs:element name="InputParameters" type="s1:InputParameters"/>
                  <xs:complexType name="InputParameters">
                        <xs:sequence>
                              <xs:choice minOccurs="1" maxOccurs="1" ObjectID="7761">
                                    <xs:element name="elem1" type="xs:string" minOccurs="1" maxOccurs="1"/>
                                    <xs:element name="elem2" type="xs:string" minOccurs="1" maxOccurs="1"/>
                              </xs:choice>
                        </xs:sequence>
                  </xs:complexType>
            </xs:schema>
      </wsdl:types>

Is it possible do not insert ObjectID into the target wsdl?

Thanks in advance.

2
General Board / Re: Order of the elements within generated XSD
« on: November 22, 2013, 03:17:08 am »
The solution is found, one can create the same "position" tagged value for connectors in section "Connector Source"

3
General Board / Order of the elements within generated XSD
« on: November 19, 2013, 12:46:52 am »
Hi all,

We have in a project a schema (UML Profile for XSD) with a lot of complex types related with each other (both with associations and addition of  XSDelement). After some modification and generation new xsd it was noted that the order of the elements could differ to the previous version.

Is it possible some how to fix that problem? I've found in the documentation that it is possible to set a tagged value "position" for  XSDelement's but I don't see any possibility for associations.

Thanks in advance for any help.

4
General Board / Re: WSDL generation with few schemas
« on: October 03, 2013, 07:33:40 pm »
Quote
With scripting this is quite easy and you are flexible in what you can do.
Hi qwerty,

thanks for your answer, could you, please, show me some direction where I could start the search in order to get some information how such exporter can work be implemented?

Thanks in advance.

5
General Board / WSDL generation with few schemas
« on: October 02, 2013, 10:07:27 pm »
Hi all,

Enterprise Architect is used to model WSDLnamespace and generate from it an actual wsdl file. There is a WSDLnamespace and the actual problem is to put all types from XSDschema into a separate file and import it according to the web-services specification like this:
Code: [Select]
<wsdl:types>
    <xs:schema targetNamespace="http://dummyNamespace" xmlns:xs="http://www.w3.org/2001/XMLSchema"
        xmlns:tns="http://dummyNamespace">
        <xs:import namespace="http://dummyNamespace/ns" schemaLocation="./ns-schema.xsd" />
    </xs:schema>
</wsdl:types>

but the actual wsdl output is:
Code: [Select]
<wsdl:import namespace="http://dummyNamespace/ns" location="ns-schema.xsd"/>
<wsdl:types>...</wsdl:types>

Could someone give a hint me, please??

thanks in advance.

Pages: [1]