Undefined port type:{http://chillyc.info/api}Name.

来源:http://www.cnblogs.com/liqun-12345/archive/2016/06/02/5551961.html
-Advertisement-
Play Games

來自http://blog.csdn.net/cctt_1/article/details/8639903 介面代碼: package myws; import javax.jws.WebParam; import javax.jws.WebService; /** * * @author 帳前卒 ...


來自http://blog.csdn.net/cctt_1/article/details/8639903

介面代碼:

package myws;  
  
import javax.jws.WebParam;  
import javax.jws.WebService;  
  
/** 
 * 
 * @author 帳前卒 
 * 
 */  
@WebService(targetNamespace = "http://chillyc.info/api", name="HELLO")  
public interface WebServiceAPI {  
    String hello(@WebParam(name="name")String name);  
  
}  
View Code 這裡要註意的是 那個hello函數,必須與webService發佈的函數名相一致(要看wdsl文件中的名字。) 另外WebParam中的name也需要和發佈函數中的參數名字一致。 這裡WebService中傳入了兩個值。其中name就是剛纔WebService中的name. 其實就是wsdl中的portType. 如果這裡寫錯了。就會有Undefined port type:{http://chillyc.info/api}Name. 這個錯誤。所以要小心。
package myws;  
  
import java.io.IOException;  
import javax.jws.WebMethod;  
import javax.jws.WebParam;  
import javax.jws.WebResult;  
import javax.jws.WebService;  
import javax.xml.bind.annotation.XmlAccessType;  
import javax.xml.bind.annotation.XmlAccessorType;  
import javax.xml.bind.annotation.XmlRootElement;  
import javax.xml.ws.Endpoint;  
  
/** 
 * 
 * @author 帳前卒 
 * 
 */  
@WebService(  
        name="HELLO",  
        targetNamespace="http://chillyc.info/api",   
        serviceName="API",   
        portName="PortName")  
public class WebServiceHolder {  
    @WebMethod  
    @WebResult(name="return")  
    public String hello(@WebParam(name="name")String name) {  
        return "hello" + name;  
    }  
      
    public static void main(String[] args) throws IOException {  
        Endpoint.publish("http://localhost:80/fake/ws", new WebServiceHolder());  
        System.in.read();  
    }  
}  
View Code

 

調用介面代碼:

package myws;  
  
import java.net.MalformedURLException;  
import java.net.URL;  
  
import javax.xml.namespace.QName;  
import javax.xml.ws.Service;  
  
/** 
 * 
 * @author 帳前卒 
 * 
 */  
public class Client {  
    public static void main(String[] args) throws MalformedURLException {  
        WebServiceAPI api = Service.create(  
                new URL("http://localhost:80/fake/ws?wsdl"),  
                new QName("http://chillyc.info/api", "API"))  
                .getPort(WebServiceAPI.class);  
        System.out.println(api.hello("sss"));  
    }  
}  
View Code

 

wsdl內容:

This XML file does not appear to have any style information associated with it. The document tree is shown below.  
<!-- 
 Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6.  
-->  
<!-- 
 Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6.  
-->  
<definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://chillyc.info/api" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://chillyc.info/api" name="API">  
<types>  
<xsd:schema>  
<xsd:import namespace="http://chillyc.info/api" schemaLocation="http://localhost/fake/ws?xsd=1"/>  
</xsd:schema>  
</types>  
<message name="hello">  
<part name="parameters" element="tns:hello"/>  
</message>  
<message name="helloResponse">  
<part name="parameters" element="tns:helloResponse"/>  
</message>  
<message name="getReturnInfo">  
<part name="parameters" element="tns:getReturnInfo"/>  
</message>  
<message name="getReturnInfoResponse">  
<part name="parameters" element="tns:getReturnInfoResponse"/>  
</message>  
<portType name="HELLO">  
<operation name="hello">  
<input message="tns:hello"/>  
<output message="tns:helloResponse"/>  
</operation>  
<operation name="getReturnInfo">  
<input message="tns:getReturnInfo"/>  
<output message="tns:getReturnInfoResponse"/>  
</operation>  
</portType>  
<binding name="PortNameBinding" type="tns:HELLO">  
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>  
<operation name="hello">  
<soap:operation soapAction=""/>  
<input>  
<soap:body use="literal"/>  
</input>  
<output>  
<soap:body use="literal"/>  
</output>  
</operation>  
<operation name="getReturnInfo">  
<soap:operation soapAction=""/>  
<input>  
<soap:body use="literal"/>  
</input>  
<output>  
<soap:body use="literal"/>  
</output>  
</operation>  
</binding>  
<service name="API">  
<port name="PortName" binding="tns:PortNameBinding">  
<soap:address location="http://localhost/fake/ws"/>  
</port>  
</service>  
</definitions>  
View Code

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • for 迴圈用於您預先知道腳本需要運行的次數的情況。 語法 參數: 初始值:主要是初始化一個變數值,用於設置一個計數器(但可以是任何在迴圈的開始被執行一次的代碼)。 條件:迴圈執行的限制條件。如果為 TRUE,則迴圈繼續。如果為 FALSE,則迴圈結束。 增量:主要用於遞增計數器(但可以是任何在迴圈 ...
  • Modal也即是模態窗,通俗的說就是彈窗。是一款bootstrap的js插件,使用效果也是非常好。 為什麼要使用modal就不必多說了,一個網站,在開發過程中你說你沒用過js彈窗我都不信!好的彈窗不僅僅給人以美感,也會讓我們開發效率提高,甚至心情也會舒暢! 我們看看在yii2中如何使用modal。 ...
  • SSH項目出現了 錯誤,仔細檢查後發現,是兩個不同的屬性映射了表中的同一個欄位造成的錯誤。 ...
  • Spring中的新名稱也太多了吧!IOC/DI/MVC/AOP/DAO/ORM... 對於剛剛接觸spring的我來說確實暈了頭!可是一但你完全掌握了一個概念,那麼它就會死心塌地的為你服務了。這可比女人忠誠多了。 在這裡我們來說侃下MVC吧!嗯!MVC設計模型和MVC框架之區別。 一組概念需要先理解 ...
  • JavaWeb不能吃。本文將帶你在JavaWeb的世界里走馬看花,踏雪尋梅,讓你明白,JavaWeb究竟是個啥。 ...
  • 1.將String字元串放在最前面 為了防止偶發性的NullPointerException 異常,我們通常將String放置在equals()函數的左邊來實現字元串比較,如下代碼: <pre http:="" www.ahlinux.com="" start="" cmd="" 9034.html ...
  • 組件配置添加: common\components\XmlParser 然後就可以在控制器里直接取 xml格式適合微信公眾號開發。 ...
  • 1.將對象轉換為JSON字元串,返回值為一個JSON字元串 public static String toJson(Object value) { try { return mapper.writeValueAsString(value); } catch (Exception e) { e.pri ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...