Вопрос

Я пишу расширение Firefox, которое будет использоваться дома.По сути, мне нужно отправить PDF-файл и некоторые текстовые значения в веб-сервис.Прямо сейчас у меня есть html-страница, которая делает это.Мне нужно расширение для автоматизации сбора и отправки данных в веб-сервис.

Вот HTML, который работает.

<body>
<form name="frm_upload_file" enctype="multipart/form-data" method="post" action="my web service address">
<table cellpadding="2" cellspacing="0" border="0">
    <tr>
        <td>ClientID</td>
    <td><input type="text" name="client_id" /></td>
</tr>

<tr>
   <td>HTML</td>
   <td><input type="text" name="html" /></td>
</tr>
<tr>
   <td align="right" class="inputtxt"> File: </td>
   <td class="inputtxt">

       <input name="pdf" type="file" />
   </td>
</tr>
<tr>
   <td align="left" colspan="2" class="inputtxt">
       <p><br /><input type="submit" name="submit" value="Submit" /></p>
   </td>
</tr>
</table>

Вот JavaScript, которого нет

postToURL: function(html, file) {
var form = content.document.createElement("form");
form.setAttribute("enctype", "multipart/form-data");
form.setAttribute("method", "post");
form.setAttribute("action", "address to my web service");

var clientIDField = document.createElement("input");
clientIDField.setAttribute("type", "text");
clientIDField.setAttribute("name", "client_id");
clientIDField.setAttribute("value", "123456");
form.appendChild(clientIDField);

var htmlField = document.createElement("input");
htmlField.setAttribute("type", "text");
htmlField.setAttribute("name", "html");
htmlField.setAttribute("value", html);
form.appendChild(htmlField);    

var fileField = document.createElement("input");
fileField.setAttribute("type", "file");
fileField.setAttribute("name", "pdf");
fileField.setAttribute("value", file);
form.appendChild(fileField);

content.document.body.appendChild(form);    
form.submit();

При отправке данных с помощью js я получаю от сервера следующее исключение.исключение

javax.servlet.ServletException:com.sun.jersey.api.container.ContainerException:javax.mail.MessagingException:Отсутствует начальная граница

Есть идеи?

Это было полезно?

Решение

Вы не можете установить значение входного файла — иначе вы можете украсть файлы с компьютеров людей.

Другие советы

Я не думаю, что вы можете изменить значение a <input type="file"> поле по соображениям безопасности.Вероятно, вам придется найти другой способ автоматизации этого процесса.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top