- 论坛徽章:
- 0
|
别人生成了两个文件:
.hpp:
/*
* This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
* This file contains Client Stub Class for remote web service
*/
#if !defined(__MONITORINGPORTTYPE_CLIENTSTUB_H__INCLUDED_)
#define __MONITORINGPORTTYPE_CLIENTSTUB_H__INCLUDED_
#include <axis/client/Stub.hpp>
#include <axis/OtherFaultException.hpp>
#include <axis/ISoapAttachment.hpp>
#include <axis/ISoapFault.hpp>
AXIS_CPP_NAMESPACE_USE
class MonitoringPortType :public Stub
{
public:
STORAGE_CLASS_INFO MonitoringPortType(const char* pchEndpointUri, AXIS_PROTOCOL_TYPE eProtocol=APTHTTP1_1);
STORAGE_CLASS_INFO MonitoringPortType();
public:
STORAGE_CLASS_INFO virtual ~MonitoringPortType();
public:
STORAGE_CLASS_INFO xsd__boolean setWriteMonitoring(xsd__string Value0, xsd__string Value1, xsd__string Value2, xsd__string Value3, xsd__string Value4, xsd__string Value5);
};
#endif /* !defined(__MONITORINGPORTTYPE_CLIENTSTUB_H__INCLUDED_)*/
.cpp:
/*
* This file was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
* This file contains Client Stub implementation for remote web service.
*/
#include "MonitoringPortType.hpp"
#include <axis/AxisWrapperAPI.hpp>
#include <axis/Axis.hpp>
MonitoringPortType::MonitoringPortType(const char* pcEndpointUri, AXIS_PROTOCOL_TYPE eProtocol):Stub(pcEndpointUri, eProtocol)
{
......
}
MonitoringPortType::MonitoringPortType()
:Stub(" ", APTHTTP1_1)
{
......
}
MonitoringPortType::~MonitoringPortType()
{
}
/*Methods corresponding to the web service methods*/
/*
* This method wrap the service methodsetWriteMonitoring
*/
xsd__boolean MonitoringPortType::setWriteMonitoring(xsd__string Value0, xsd__string Value1, xsd__string Value2, xsd__string Value3, xsd__string Value4, xsd__string Value5)
{
}
我写了个程序 MonitoringPortType monitor;在第一步 申明变量这程序就core down了,怎么回事呀 ?
[ 本帖最后由 jxnudh 于 2008-12-2 17:38 编辑 ] |
|