新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论Semantic Web(语义Web,语义网或语义万维网, Web 3.0)及相关理论,如:Ontology(本体,本体论), OWL(Web Ontology Langauge,Web本体语言), Description Logic(DL, 描述逻辑),RDFa,Ontology Engineering等。
    [返回] 中文XML论坛 - 专业的XML技术讨论区W3CHINA.ORG讨论区 - Web新技术讨论『 Semantic Web(语义Web)/描述逻辑/本体 』 → protege导入wsdl的问题 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 1669 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: protege导入wsdl的问题 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     hiohio 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:3
      积分:76
      门派:XML.ORG.CN
      注册:2005/11/21

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给hiohio发送一个短消息 把hiohio加入好友 查看hiohio的个人资料 搜索hiohio在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 引用回复这个贴子 回复这个贴子 查看hiohio的博客楼主
    发贴心情 protege导入wsdl的问题

    报错:
    cannot load service description from file

    java.lang.illegalArgumentException

    wsdl文件如下:
    <?xml version="1.0" encoding="utf-8"?>
    <wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://tempuri.org/HashService/HashClass" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://tempuri.org/HashService/HashClass" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
      <wsdl:types>
        <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/HashService/HashClass">
          <s:element name="HashString">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="Str" type="s:string" />
                <s:element minOccurs="0" maxOccurs="1" name="HashType" type="s:string" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="HashStringResponse">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="HashStringResult" type="s:string" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="CheckHash">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="OriginalString" type="s:string" />
                <s:element minOccurs="0" maxOccurs="1" name="HashString" type="s:string" />
                <s:element minOccurs="0" maxOccurs="1" name="HashType" type="s:string" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="CheckHashResponse">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="1" maxOccurs="1" name="CheckHashResult" type="s:boolean" />
              </s:sequence>
            </s:complexType>
          </s:element>
        </s:schema>
      </wsdl:types>
      <wsdl:message name="HashStringSoapIn">
        <wsdl:part name="parameters" element="tns:HashString" />
      </wsdl:message>
      <wsdl:message name="HashStringSoapOut">
        <wsdl:part name="parameters" element="tns:HashStringResponse" />
      </wsdl:message>
      <wsdl:message name="CheckHashSoapIn">
        <wsdl:part name="parameters" element="tns:CheckHash" />
      </wsdl:message>
      <wsdl:message name="CheckHashSoapOut">
        <wsdl:part name="parameters" element="tns:CheckHashResponse" />
      </wsdl:message>
      <wsdl:portType name="HashClassSoap">
        <wsdl:operation name="HashString">
          <wsdl:input message="tns:HashStringSoapIn" />
          <wsdl:output message="tns:HashStringSoapOut" />
        </wsdl:operation>
        <wsdl:operation name="CheckHash">
          <wsdl:input message="tns:CheckHashSoapIn" />
          <wsdl:output message="tns:CheckHashSoapOut" />
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:binding name="HashClassSoap" type="tns:HashClassSoap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="HashString">
          <soap:operation soapAction="http://tempuri.org/HashService/HashClass/HashString" style="document" />
          <wsdl:input>
            <soap:body use="literal" />
          </wsdl:input>
          <wsdl:output>
            <soap:body use="literal" />
          </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="CheckHash">
          <soap:operation soapAction="http://tempuri.org/HashService/HashClass/CheckHash" style="document" />
          <wsdl:input>
            <soap:body use="literal" />
          </wsdl:input>
          <wsdl:output>
            <soap:body use="literal" />
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:service name="HashClass">
        <documentation xmlns="http://schemas.xmlsoap.org/wsdl/" />
        <wsdl:port name="HashClassSoap" binding="tns:HashClassSoap">
          <soap:address location="http://www.bs-byg.dk/hashclass.asmx" />
        </wsdl:port>
      </wsdl:service>
    </wsdl:definitions>


       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2006/3/9 10:46:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 Semantic Web(语义Web)/描述逻辑/本体 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2025/8/10 15:57:18

    本主题贴数1,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    46.875ms