libcurl for Clarion
Добавлено: 12 Ноябрь 2015, 20:11
Место общения программистов, форум разработчиков БД на Clarion
https://www.forum.clarionlife.net/
-rw-r--r-- 1 ded ded 169 Nov 12 18:58 response.txt
drwxr-x--x 2 ded ded 4096 Nov 12 18:58 .
dr-x-----x 3 ded mgrsecure 4096 Nov 11 14:29 ..
-rw------- 1 ded ded 47 Nov 11 14:31 .bash_history
Но если продолжите, то начните пожалуйста с этих команд.
А с этим-то какие проблемы?pansoft писал(а): 2) Команда: curl -f "xml_file=@cheque.xml" http://localhost:8080/xml - отправка файла через http
Код: Выделить всё
test_r routine
DATA
fsCurlL &fsCurl
lor:ok byte
CODE
fsCurlL &= new(fsCurl)
fsCurlL.init()
fsCurlL.WindowTitle='Отправка письма...'
fsCurlL.SetUrl('smtps://smtp.yandex.ru:465','userName','userPswd')
fsCurlL.SetMailHeader('adress1@yandex.ru','adress2@gmail.com','Отправитель','Получатель')
fsCurlL.SetMailText('Тест','Текст тестового сообщения...')
lor:ok=fsCurlL.MailHeaderAdd()
if lor:ok=1
lor:ok=fsCurlL.MailFileAdd('1.xls')
.
if lor:ok=1
lor:ok=fsCurlL.MailFileAdd('1.txt')
.
if lor:ok=1
if fsCurlL.MailSend()=1
message('Успех!')
.
.
fsCurlL.kill
dispose(fsCurlL)
v1.01
- .SetCustomRequest method, for customizing the get command like HTTP: DELETE, TRACE and others
- .GetResponseCode method returns HTTP or FTP response code
- constants to use in .SetOpt(curlopt_constant):
- CURLOPT_HEADER throw the header out too
- CURLOPT_NOBODY use HEAD to get http document
- CURLOPT_POST HTTP POST method
- CURLOPT_DIRLISTONLY (CURLOPT_FTPLISTONLY) bare names when listing directories
- CURLOPT_APPEND Append instead of overwrite on upload!
- CURLOPT_PUT HTTP PUT
При выполнении в командной строкеДед Пахом писал(а):А с этим-то какие проблемы?pansoft писал(а): 2) Команда: curl -f "xml_file=@cheque.xml" http://localhost:8080/xml - отправка файла через http
curl.AddHttpHeader('Content-Type: multipart/form-data')
curl.SetHttpHeaders()
postParams = 'xml_file='& filecontent
res = curl.SendRequest(url, postParams, outfile)
Код: Выделить всё
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<title>Error 500 Server Error</title>
</head>
<body><h2>HTTP ERROR 500</h2>
<p>Problem accessing /opt/in/QueryPartner. Reason:
<pre> Server Error</pre></p><h3>Caused by:</h3><pre>javax.servlet.ServletException: Content-Type != multipart/form-data
at org.eclipse.jetty.server.Request.getParts(Request.java:2051)
at org.eclipse.jetty.server.Request.getPart(Request.java:2043)
at es.programador.http.ClientDocumentServlet.a(ClientDocumentServlet.java:201)
at es.programador.http.ClientDocumentServlet.doPost(ClientDocumentServlet.java:96)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:755)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)
at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:684)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:533)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:255)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
at org.eclipse.jetty.server.Server.handle(Server.java:370)
at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:494)
at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:982)
at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1043)
at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865)
at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240)
at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)
at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:667)
at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)
at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)
at java.lang.Thread.run(Unknown Source)
</pre>
<hr /><i><small>Powered by Jetty://</small></i><br/>
</body>
</html>
Код: Выделить всё
<?php
$ch = curl_init();
$data = array('name' => 'Foo', 'file' => '@/home/user/test.png');
curl_setopt($ch, CURLOPT_URL, 'http://localhost/upload.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);
?>
Попробуйте задать по принципу:
Код: Выделить всё
PostParams = 'data=text&data2=text2&data3=text%20width%20space'
Я так понял надо добавить '%20width%20space'Admin писал(а):Попробуйте задать по принципу:Код: Выделить всё
PostParams = 'data=text&data2=text2&data3=text%20width%20space'