Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

UI Text Box
typeinfo

As the studio cannot retrieve files from external locations, you need to provide all required files in a flat zip file. If you are using import or include statements, make sure that they are changed to not point at remote locations.

UI Expand
titleExample

Instead of using

Code Block
<wsdl:import location="http://www.example.com/webservices/exampleservice?wsdl=ExampleService.wsdl" 
	namespace="http://www.example.com/">
    </wsdl:import>

use the following, and place CRMService.wsdl in the zip file when importing:

Code Block
<wsdl:import location="ExampleService.wsdl" 
	namespace="http://www.example.com/">
    </wsdl:import>
UI Text Box
typewarning
Make sure that the WSDL is supported. You can check that on the Web Services datasheet.

 

The option 'Generate Domain' will automatically generate a domain model for you, based on the XSD schema referred to from the WSDL. When this button is checked, entities, attributes and relations are created based on the type definitions of the XSD. When using an existing module, there may already be a domain model present, that uses identical names as in the XSD. When overwriting, conflicting elements are not created. Obviously, these problems do not occur if you use a new module.

...