header("content-type:text/html;charset=utf-8");$client = new SoapClient("http://s.dailiangu.com:8011/WebLocalData.asmx?WSDL");$p = $client->__soapCall('Return_Package', array('UN'=>'xxxxxxx','PS'=>'xxxxxxx','TopCount'=>5));//var_dump($p);//结果从这里分析
有一个方法叫Retrun_Package,要传三个参数,分别是用户名,密码和调用的条数,此处我用的XXX代替,但最后却报错了,我对PHP不是很熟悉,望各位指正。
回复讨论(解决方案)
UN PS两个参数换成正常合法的试试看
我使用正常的时候提示如下错误:
Fatal error: Uncaught SoapFault exception: [soap:Server] System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.NullReferenceException: Object reference not set to an instance of an object. at WebService1.WebLocalData.Return_Package(String UN, String PS, Int32 TopCount) in F:\开发相关\网站\测试服务-对外测试\对代练堂服务\WebService1\WebService1\WebLocalData.asmx.cs:line 26 --- End of inner exception stack trace --- in E:\APM\APMServ5.2.6\www\htdocs\templets\new\test.php:11 Stack trace: #0 E:\APM\APMServ5.2.6\www\htdocs\templets\new\test.php(11): SoapClient->__soapCall('Return_Package', Array) #1 {main} thrown in E:\APM\APMServ5.2.6\www\htdocs\templets\new\test.php on line 11
对php的soapClient封装没啥好感,太透明了,错误提示坑爹,不过这个例子我觉得你得改成这样
$client = new SoapClient("http://s.dailiangu.com:8011/WebLocalData.asmx?WSDL");$p = $client->Return_Package(array('UN'=>'xxxxxxx','PS'=>'xxxxxxx','TopCount'=>'5'));
还不行,直接上curl或者fsockopen按照
http://s.dailiangu.com:8011/WebLocalData.asmx?op=Return_Package
给出的请求协议格式请求过去。
已经可以了,非常感谢,原来如此。我明白了。那么怎么获取里面的参数呢,假如返回的有一个id这个参数,怎么获得呢?
返回的是DataSet 类型,里面每一行(每1行就是1笔套餐)包括以下5个值:
[WorkID] 工作室编号,例如48
[PID]套餐编号,例如:512
[Ptitle]套餐名称,例如:XXXXXXXX
[Pri]价格,例如:150.00
[H]代练时间,例如:72
返回的是DataSet 类型,里面每一行(每1行就是1笔套餐)包括以下5个值:
[WorkID] 工作室编号,例如48
[PID]套餐编号,例如:512
[Ptitle]套餐名称,例如:XXXXXXXX
[Pri]价格,例如:150.00
[H]代练时间,例如:72
看了下,返回的应该是个xml格式串
<Return_PackageResult> <xsd:schema>schema</xsd:schema>xml</Return_PackageResult>
php解析xml的有simplexml系列,DOMDocument系列,Sax系列 。。
这个你自己看着文档搞搞吧。
返回的是这样的
object(stdClass)#2 (1) { ["Return_PackageResult"]=> object(stdClass)#3 (2) { ["schema"]=> string(716) "" ["any"]=> string(1329) "68697【代练堂】70-85级★赠4000金五大声望尊敬★纯任务70.008468698【代练堂】【S11荣誉战场毕业】全套加武器【秒排2-3天】50.008468700【代练堂】dnf手工代练刷段刷尊【任意等级-尊2】40.002468715【代练堂】【1-80级急速招募版】2天完成 全区全服30.006068716【代练堂】【1-85级包卡135元】送大鸟五大声望尊敬135.00108" } }
哦,忘了soapClient帮我们将xml结果转成php对象类型了。
echo $p->Return_PackageResult->schema;
echo $p->Return_PackageResult->any;
谢谢你,把分给你,但还有一点点小小的问题,可否加个QQ谈呢,比较方便。285994968
谢谢你,把分给你,但还有一点点小小的问题,可否加个QQ谈呢,比较方便。285994968
我这就开忙了,你先别结贴,有问题这里问,有心的坛友会帮你的。
返回的如下:
68697【代练堂】70-85级★赠4000金五大声望尊敬★纯任务70.008468698【代练堂】【S11荣誉战场毕业】全套加武器【秒排2-3天】50.008468700【代练堂】dnf手工代练刷段刷尊【任意等级-尊2】40.002468715【代练堂】【1-80级急速招募版】2天完成 全区全服30.006068716【代练堂】【1-85级包卡135元】送大鸟五大声望尊敬135.00108
应该是如下几个参数,怎么分别获得呢?
68 715 【代练堂】【1-80级急速招募版】2天完成 全区全服 30.00 60
68 716 【代练堂】【1-85级包卡135元】送大鸟五大声望尊敬 135.00 108
公司编号 业务单号 内容 价格 时间
explode,sscanf...很多函数可以用。
public class DAL
{
public OracleConnection getcon
{
get
{
return new OracleConnection("data source=sajet_odac;user id=sajet;password=tech");
}
}
public string TestconDb()
{
using (var con = getcon)
{
try
{
con.Open();
OracleCommand cmd = new OracleCommand("select sysdate from dual", con);
OracleDataReader rd = cmd.ExecuteReader();
if (rd.Read())
return rd.GetDateTime(0).ToString();
else
return "Connect DBError";
}
catch (Exception ee)
{
return ee.Message;
}
finally
{
con.Close();
}
}
[WebMethod]
public string GetSysdate()
{
DAL d =new DAL();
return d.TestconDb();
}
======调用代码
private void button1_Click(object sender, EventArgs e)
{
ServiceReference1.TsajetServerceSoapClient client = new ServiceReference1.TsajetServerceSoapClient();
MessageBox.Show(client.GetSysdate());
}
===============异常提示
Server was unable to process request. ---> Object reference not set to an instance of an object.
=====说明在 本地调用是没有问题的 把webservice 放到 IIS 服务器上 就不行了 请指点下各位大神。。

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-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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.

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' =>

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

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
