Java Rest API客户端 - GET方法 - 错误415

时间:2016-01-12 00:58:16

标签: java apache rest cxf cxf-client

我是使用Apache CXF为Restful API编写Java客户端的新手。

在运行下面的代码时,我收到错误415,当我在网上看时显示为"不支持的媒体类型"。为了解决这个问题,我将代码更改为" target.request(MediaType.APPLICATION_XML)"来自原始target.request()。但是,这并没有修复代码。

调试此问题的最佳方法是什么? 非常感谢你的时间。

更新:在与Rest API开发人员讨论后,我发现我需要添加标题"(" Content-Type","应用程序/ x-WWW窗体-urlencoded");&#34 ;.但我不知道如何添加标题。有谁知道如何在这里添加此标题?

package com.blackhawk.ivr.restAPI.client;

import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.Invocation;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

public class BlissRestAPI {

public static final String BLISS_SERVICRE_URL = "http://x.x.x.x:9090/services";

public static void main(String[] args) {
    Client client = ClientBuilder.newClient();      
    WebTarget target = client.target(BLISS_SERVICRE_URL);
    target = target.path("/cardmanagementservices/v3/card/status").queryParam("ani", "xxxxxxxxxx").queryParam("card.expiration", "xxxxxx").queryParam("card.number", "xxxxxxxxxxxxxxxx").queryParam("channel.id", "xyz");
    Invocation.Builder builder = target.request(MediaType.APPLICATION_XML);             
    Response response = builder.get();
    System.out.println(response.getStatus());       
    response.close();
    client.close();
}

}

2 个答案:

答案 0 :(得分:0)

首先,您可以更改下面给出的媒体类型。

  • 客户:MediaType.APPLICATION_XML
  • Rest:MediaType.APPLICATION_JSON

JAX-WS是构建Web服务的Java标准。所以你在这里使用它,据我所知,很容易将轴2用于这种Web服务和客户端,因为有更多的JAX-WS实现。所以我将使用apache轴技术为您提供解决方案。

import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import org.apache.axis.encoding.XMLType;

import javax.xml.rpc.ParameterMode;


public class axisClient {

   public static void main(String [] args) throws Exception {

      String endpoint = "http://localhost:8090/archive_name/service_name.jws";

      Service service = new Service();
      Call call    = (Call) service.createCall();



      call.setTargetEndpointAddress( new java.net.URL(endpoint) );
      call.setOperationName( "service_method_name" );
      call.addParameter("parameter_name", XMLType.XSD_STRING, ParameterMode.IN );
      call.setReturnType( XMLType.XSD_STRING );
      call.setProperty(Call.CHARACTER_SET_ENCODING, "UTF-8");

      String jsonString = (String) call.invoke( new Object [] { "parameter_value"});

      System.out.println("Got result : " + jsonString);
   }
}

答案 1 :(得分:0)

我使用下面的代码(返回了200状态)让它工作了

    WebClient client = WebClient.create(BLISS_SERVICRE_URL);
    client.path("/cardmanagementservices/v3/card/status").query("ani", "xxxxxxxxxx").query("card.expiration", "xxxxxx").query("card.number", "xxxxxxxxxxxxxx").query("channel.id", "xxxxx");
    client.type(MediaType.APPLICATION_FORM_URLENCODED).accept(MediaType.APPLICATION_XML);
    client.header("Content-Type","application/x-www-form-urlencoded");
    Response response = client.get();
    System.out.println(response.getStatus());