search
HomeBackend DevelopmentPHP Tutorialphp如何调用WebService上传文件

由于我们公司要对OA进行二次开发,OA使用java开发的!现在里面有个接口是上传文件的接口,范例给的是c#的,我又不会C#,PHP也是新手没玩过接口上传文件,不知道如何动手!
下面附文档说明,看有没大神或版主帮我转成PHP的语言让我观摩学习下

uploadService 文件上传服务。
请求路径:/seeyon/uploadService.do?method= processUploadService

参数:
token    string   登录验证后获取的身份令牌。   我可以得到
senderLoginName  string  发起者登录名         我可以得到

返回值:string
成功则返回生成的附件id,如果多个文件上传则以"|"符号分割返回

c#范例:

URL preUrl = null;      URLConnection uc = null;      preUrl = new URL("http://XXX.XXX.XXX.XXX/seeyon/uploadService.do?      method = processUploadService"          +"&senderLoginName="+"zy"          +"&token="+"997a7cdc-2399-47e8-991e-96c859cccc7f");      String s = parameters.toString();      uc = preUrl.openConnection();      HttpURLConnection hc = (HttpURLConnection) uc;      hc.setDoOutput(true);      hc.setUseCaches(false);      hc.setRequestProperty("contentType", "charset=utf-8");      hc.setRequestMethod("POST");      BufferedInputStream  input=new BufferedInputStream(new FileInputStream("c:/LDAP集成设计文档.doc"));      String BOUNDARY = "---------------------------7d4a6d158c9"; // 分隔符      String fileName="LDAP集成设计文档.doc";      StringBuffer sb = new StringBuffer();      sb.append("--");      sb.append(BOUNDARY);      sb.append("\r\n");      sb.append("Content-Disposition: form-data; \r\n name=\"1\"; filename=\""+fileName+"\"\r\n");      sb.append("Content-Type: application/msword\r\n\r\n");      hc.setRequestProperty("Content-Type",          "multipart/form-data;boundary=" + "---------------------------7d4a6d158c9");      byte[] end_data = ("\r\n--" + BOUNDARY + "--\r\n").getBytes();      DataOutputStream dos = new DataOutputStream(hc.getOutputStream());      dos.write(sb.toString().getBytes("utf-8"));      int cc=0;      while((cc=input.read())!=-1)      {          dos.write(cc);      }      dos.write(end_data);      dos.flush();      dos.close();      FileOutputStream file = new FileOutputStream("c:/test.txt");      InputStream is = hc.getInputStream();      int ch;      while ((ch = is.read()) != -1) {           file.write(ch);      }      if (is != null)      is.close();


回复讨论(解决方案)

搜索 sock文件上传

搜索 sock文件上传


有的人说用curl跟这个有区别吗?

看在100分的份上,求好心人给给代码,不要复制网上的

小弟才接触PHP不到4个月

从你给出的 C# 代码上看,他和 php 的 sock 文件上传代码是基本一致的
具体的实现有待推敲。

如果服务方遵守标准的 http 协议,用 curl 当然更简单

由于无法得到服务方的反馈,调试是无法进行的

function uploadFileToOA($file=array(),$senderLoginName)
{
    $client=new \SoapClient("http://XXX.XXX.XXX.XXX/xxx?wsdl");
    $param=array("userName"=>"用户名","password"=>"密码");
    $token = $client->__soapCall('authenticate',array($param));
    $PostUrl = "http://XXX.XXX.XXX.XXX/XXXLoginName."&token=".$token->return->id;
    $fields = array("file"=>$file);
    $curl = curl_init($PostUrl);
    curl_setopt($curl, CURLOPT_POST,true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $fields);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER,1);
    $result = curl_exec($curl);
    curl_close($curl);
    return $result;
}
一把辛酸泪,太难了,终于搞定了

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.