0

我在一个电子商务网站上工作,使用 JSF 2。为了与与银行进行所有操作的公司沟通,我需要将此 XML 发送给他们(这只是他们提供的一个示例):

<?xml version="1.0" encoding="ISO-8859-1"?>
<requisicao-transacao versao="1.2.0" id="6560a94c-663b-4aec-9a45-e45f278e00b4" xmlns="http://ecommerce.cbmp.com.br">
    <dados-ec>
        <numero>1001734898</numero>
        <chave>e84827130b9837473681c2787007da5914d6359947015a5cdb2b8843db0fa832</chave>
    </dados-ec>
    <dados-pedido>
        <numero>1603662828</numero>
        <valor>100</valor>
        <moeda>986</moeda>
        <data-hora>2010-07-14T15:50:11</data-hora>
        <idioma>PT</idioma>
    </dados-pedido>
    <forma-pagamento>
        <bandeira>visa</bandeira>
        <produto>A</produto>
        <parcelas>1</parcelas>
    </forma-pagamento>
    <url-retorno>https://www.dummyurl.du/dummypage.do?id=trhjgnerifvnidjfnvmd</url-retorno>
    <autorizar>1</autorizar>
    <capturar>true</capturar>
</requisicao-transacao>

所以在阅读了很多关于如何发送和接收 XML 之后,我创建了这个方法:

public String rent(){
    //String folderAndFile = createTransaction();

    //creating the HTTP Post
    DefaultHttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost("https://qasecommerce.cielo.com.br/servicos/ecommwsec.do");

    try {
       //Reading the file as an entity
        FileEntity entity = new FileEntity(new File("/home/valter.silva/sample.xml"));
        entity.setContentType("text/xml");
        post.setEntity(entity);

        HttpResponse response = client.execute(post);
        HttpEntity httpEntity = response.getEntity();

        System.out.println(EntityUtils.toString(httpEntity));

    } catch (IOException e) {
        e.printStackTrace();
    }
    return null;
}

但输出始终是:

INFO: <?xml version="1.0" encoding="ISO-8859-1"?> <erro xmlns="http://ecommerce.cbmp.com.br"> <codigo>001</codigo> <mensagem>Requisição inválida</mensagem> </erro>

这意味着.xml我发送的我是无效的。由于某种原因,XML 是错误的.. 但是什么?

我发送文件的方式好吗?我能做些什么呢?

更新 我正在尝试另一种方法,但输出始终相同,...,我的代码有问题吗?

//approach v1
    public String rent(){
            //String folderAndFile = createTransaction();

            try {
                File file = new File("/home/valter.silva/test.xml");
                HttpPost post = new HttpPost("https://qasecommerce.cielo.com.br/servicos/ecommwsec.do");
                post.setEntity(new InputStreamEntity(new FileInputStream(file),file.length()));
                post.setHeader("Content-type", "text/xml; charset=ISO-8859-1");

                //creating the HTTP Post
                DefaultHttpClient client = new DefaultHttpClient();

                HttpResponse response = client.execute(post);
                HttpEntity httpEntity = response.getEntity();

                System.out.println(EntityUtils.toString(httpEntity));

            } catch (IOException e) {
                e.printStackTrace();
            }
            return null;
        }


//approach v2
public String rent(){
        //String folderAndFile = createTransaction();

        try {
            File file = new File("/home/valter.silva/test.xml");
            HttpPost post = new HttpPost("https://qasecommerce.cielo.com.br/servicos/ecommwsec.do");

            //creating the HTTP Post
            DefaultHttpClient client = new DefaultHttpClient();

            String fileInString = fileToString("/home/valter.silva/test.xml");
            InputStream inputStream=new ByteArrayInputStream(fileInString.getBytes());//init your own inputstream
            InputStreamEntity inputStreamEntity=new InputStreamEntity(inputStream,fileInString.length());
            post.setEntity(inputStreamEntity);

            HttpResponse response = client.execute(post);
            HttpEntity httpEntity = response.getEntity();

            System.out.println(EntityUtils.toString(httpEntity));

        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }
4

1 回答 1

0

您能否检查您尝试发布的网址是否可以正确处理您的 xml?我尝试将您提供的 xml 仅使用简单的 http post 上传到指定的 url 并得到

<?xml version="1.0" encoding="ISO-8859-1"?> <erro xmlns="http://ecommerce.cbmp.com.br"> <codigo>001</codigo> <mensagem>Requisição inválida</mensagem> </erro>

我更喜欢您先尝试从外部上传 xml,然后再尝试使用您的代码。例如,我使用了 Mozilla 插件的 RESTClient 。

于 2013-07-30T09:32:11.540 回答