spring-ws に関連して、targetnamespace を以下のように定義することの違いを教えてもらえますか
http://checkingaccountservice.example.zoo
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://checkingaccountservice.example.zoo"
elementFormDefault="qualified">
...
<xsd:schema>
対
http://zoo/example/checkingaccountservice/
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://zoo/example/checkingaccountservice"
elementFormDefault="qualified">
...
<xsd:schema>
前もって感謝します:)