I created a new Web Service Process with Ivy. This was very easy to create a new Web Service. But the WSDL contains "http://unknown.namespace/" as namespace. How can I change this to a nice name?

Example WSDL with unknown namespace:

<wsdl:definitions ... xmlns:tns="http://unknown.namespace/" ... targetNamespace="http://unknown.namespace/">
<wsdl:types>
<xs:schema xmlns:tns="http://unknown.namespace/" ... targetNamespace="http://unknown.namespace/" version="1.0">
  ...
</xsd:schema>
</wsdl:types>
...
</wsdl:definitions>

asked 23.04.2015 at 14:11

SupportIvyTeam's gravatar image

SupportIvyTeam ♦♦
1.4k102118122
accept rate: 77%


Just use a fully qualified Web Serive name. See example:

Web Service Process Inscription

Then your WSDL should look like this:

<wsdl:definitions ... xmlns:tns="http://ivy.ivyteam.ch/" ... targetNamespace="http://ivy.ivyteam.ch/">
<wsdl:types>
<xs:schema xmlns:tns="http://ivy.ivyteam.ch/" ... targetNamespace="http://ivy.ivyteam.ch/" version="1.0">
  ...
</xsd:schema>
</wsdl:types>
...
</wsdl:definitions>

link

answered 23.04.2015 at 14:18

Christian%20Strebel's gravatar image

Christian St... ♦
3.2k31338
accept rate: 88%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×48

Asked: 23.04.2015 at 14:11

Seen: 4,068 times

Last updated: 06.12.2016 at 13:37