还补充一下,我需要安装那个什么axis么?
给我点建议啦。

解决方案 »

  1.   

    Download Axis from apache, ues its samples step by step.
      

  2.   

    我用JBuilder7+Weblogic7可以实现吗?
      

  3.   

    用JBuilder7+Weblogic7很好实现呀。自己看帮助就行了。
      

  4.   

    但我不知道JBuild中的webservice为什么SOAP Server不能够选择。是灰色的。对了,我贴出一些代码来,你们给看看,我要怎么做啊。
    POST /auth HTTP/1.1
    Content-Type: text/xml; charset=utf-8
    Content-Length: xxx
    SOAPAction: "http://www.sina.com/auth"<?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
      <soap:Body>
        <validatesession xmlns="http://www.sina.com/">
          <session>AR45FA25ED</session >
        </validatesession >
      </soap:Body>
    </soap:Envelope>我要取出<session></session>中的值,怎么取啊。
    高手们,指点指点我啦。
      

  5.   

    又没有人能够告诉我了吗?
    我刚才解压了axis,但不知道怎么样才能够把上面的代码给取出来呀。
    帮帮忙啦,高手们。
      

  6.   

    http://www-900.ibm.com/developerWorks/cn/cnedu.nsf/xml-onlinecourse-bytitle/799DDFD992E23A1148256A760023ABE5?OpenDocument
    使用 SOAP 进行 XML 消息传递
      

  7.   

    axis本身就是一个类~~~~你放在某个配置目录该就可以了,网上有的,可以查一下最新的JB8完全可以方便开发WEBSERVICE而AXIS是对身份验证的功能比较强
      

  8.   

    对于下面的代码,我应该怎么去做呢?
    POST /auth HTTP/1.1
    Content-Type: text/xml; charset=utf-8
    Content-Length: xxx
    SOAPAction: "http://www.sina.com/auth"<?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
      <soap:Body>
        <validatesession xmlns="http://www.sina.com/">
          <session>AR45FA25ED</session >
        </validatesession >
      </soap:Body>
    </soap:Envelope>我要取出<session></session>中的值,怎么取啊。