473,668 Members | 2,318 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help with error: "No overload for method 'x' takes 'y' arguments" using web service

Hi,

I'm new to C-Sharp (as of today) and i'm struggling to implement a
SOAP client to a PHP5 web service. I have added the Web Reference (do
I also need to use wsdl.exe and compile the .dll, and reference that
as well?) to the wsdl document.

Behind my form, I have the following (snippeted) code:

/* our service reference */
private localhost.Consi gnmentService setWayp;

int waypID = setWayp.setWayp ointByID(this.t bCID.Text,
wLon[this.cbWarehous e.SelectedIndex],
wLat[this.cbWarehous e.SelectedIndex],
System.DateTime .Now.ToShortDat eString,
System.DateTime .Now.ToShortTim eString, selStatus);

The relevant web reference proxy code is:
public partial class setWaypointByID Request {
private string idField;
private decimal longitudeField;
private decimal latitudeField;
private System.DateTime dateField;
private System.DateTime timeField;
private statusType statusField;
private bool statusFieldSpec ified;
....
}

The precise error is: No overload for method 'setWaypointByI D' takes
'6' arguments
I've been searching for hours and am stumped!

Any help appreciated

Mar 26 '07 #1
4 2670
hmm,

You only have a web method with seven args., but you pass with six args

cheers,
RL
"JamesG" <ma********@gma il.comwrote in message
news:11******** *************@n 59g2000hsh.goog legroups.com...
Hi,

I'm new to C-Sharp (as of today) and i'm struggling to implement a
SOAP client to a PHP5 web service. I have added the Web Reference (do
I also need to use wsdl.exe and compile the .dll, and reference that
as well?) to the wsdl document.

Behind my form, I have the following (snippeted) code:

/* our service reference */
private localhost.Consi gnmentService setWayp;

int waypID = setWayp.setWayp ointByID(this.t bCID.Text,
wLon[this.cbWarehous e.SelectedIndex],
wLat[this.cbWarehous e.SelectedIndex],
System.DateTime .Now.ToShortDat eString,
System.DateTime .Now.ToShortTim eString, selStatus);

The relevant web reference proxy code is:
public partial class setWaypointByID Request {
private string idField;
private decimal longitudeField;
private decimal latitudeField;
private System.DateTime dateField;
private System.DateTime timeField;
private statusType statusField;
private bool statusFieldSpec ified;
...
}

The precise error is: No overload for method 'setWaypointByI D' takes
'6' arguments
I've been searching for hours and am stumped!

Any help appreciated

Mar 26 '07 #2
Hi,

The last argument is generated by the proxy, because the statusType is
optional. I have tried giving it a 7th and get the same error.

Thanks
On Mar 26, 10:33 pm, "Egghead" <robertlo@NO_SH AW.CAwrote:
hmm,

You only have a web method with seven args., but you pass with six args

cheers,
RL"JamesG" <mailmeh...@gma il.comwrote in message

news:11******** *************@n 59g2000hsh.goog legroups.com...
Hi,
I'm new to C-Sharp (as of today) and i'm struggling to implement a
SOAP client to a PHP5 web service. I have added the Web Reference (do
I also need to use wsdl.exe and compile the .dll, and reference that
as well?) to the wsdl document.
Behind my form, I have the following (snippeted) code:
/* our service reference */
private localhost.Consi gnmentService setWayp;
int waypID = setWayp.setWayp ointByID(this.t bCID.Text,
wLon[this.cbWarehous e.SelectedIndex],
wLat[this.cbWarehous e.SelectedIndex],
System.DateTime .Now.ToShortDat eString,
System.DateTime .Now.ToShortTim eString, selStatus);
The relevant web reference proxy code is:
public partial class setWaypointByID Request {
private string idField;
private decimal longitudeField;
private decimal latitudeField;
private System.DateTime dateField;
private System.DateTime timeField;
private statusType statusField;
private bool statusFieldSpec ified;
...
}
The precise error is: No overload for method 'setWaypointByI D' takes
'6' arguments
I've been searching for hours and am stumped!
Any help appreciated- Hide quoted text -

- Show quoted text -

Mar 26 '07 #3
bob
Hi,
You appear to have missed the bool parameter at the end.
i.e. 7 parameters required.
hth
Bob
On 26 Mar 2007 14:21:01 -0700, "JamesG" <ma********@gma il.comwrote:
>Hi,

I'm new to C-Sharp (as of today) and i'm struggling to implement a
SOAP client to a PHP5 web service. I have added the Web Reference (do
I also need to use wsdl.exe and compile the .dll, and reference that
as well?) to the wsdl document.

Behind my form, I have the following (snippeted) code:

/* our service reference */
private localhost.Consi gnmentService setWayp;

int waypID = setWayp.setWayp ointByID(this.t bCID.Text,
wLon[this.cbWarehous e.SelectedIndex],
wLat[this.cbWarehous e.SelectedIndex],
System.DateTime .Now.ToShortDat eString,
System.DateTime .Now.ToShortTim eString, selStatus);

The relevant web reference proxy code is:
public partial class setWaypointByID Request {
private string idField;
private decimal longitudeField;
private decimal latitudeField;
private System.DateTime dateField;
private System.DateTime timeField;
private statusType statusField;
private bool statusFieldSpec ified;
...
}

The precise error is: No overload for method 'setWaypointByI D' takes
'6' arguments
I've been searching for hours and am stumped!

Any help appreciated
Mar 27 '07 #4
On Mar 27, 1:07 am, bob <startatbob_cl. ..@cutthis.adri ley.co.nz>
wrote:
Hi,
You appear to have missed the bool parameter at the end.
i.e. 7 parameters required.
hth
Bob
On 26 Mar 2007 14:21:01 -0700, "JamesG" <mailmeh...@gma il.comwrote:
Hi,
I'm new to C-Sharp (as of today) and i'm struggling to implement a
SOAP client to a PHP5 web service. I have added the Web Reference (do
I also need to use wsdl.exe and compile the .dll, and reference that
as well?) to the wsdl document.
Behind my form, I have the following (snippeted) code:
/* our service reference */
private localhost.Consi gnmentService setWayp;
int waypID = setWayp.setWayp ointByID(this.t bCID.Text,
wLon[this.cbWarehous e.SelectedIndex],
wLat[this.cbWarehous e.SelectedIndex],
System.DateTime .Now.ToShortDat eString,
System.DateTime .Now.ToShortTim eString, selStatus);
The relevant web reference proxy code is:
public partial class setWaypointByID Request {
private string idField;
private decimal longitudeField;
private decimal latitudeField;
private System.DateTime dateField;
private System.DateTime timeField;
private statusType statusField;
private bool statusFieldSpec ified;
...
}
The precise error is: No overload for method 'setWaypointByI D' takes
'6' arguments
I've been searching for hours and am stumped!
Any help appreciated- Hide quoted text -

- Show quoted text -
Hi,

The problem turned out to be a typical silly mistake...
For future reference, the method actually required creating an
instance of the <remotemethod>R equest object, then assigning each
parameter as required.

Thanks anyhow :)

Mar 27 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
23934
by: bradleyp | last post by:
Hi all, Hopefully somebody can help. In Access 2002-SP2, I receive an error from the VB Editor if I try to compile the following code (see below). The error is as follows: Compile Error: Method or data member not found The follow subroutine is highlighted (specifically .txtNR_Program1):
2
2436
by: Ricardo Magalhães | last post by:
Hi, I using this code, to connect with a paradox file with ASP.NET. The first time its connect ok, but others times occurs the error: "ERROR - no error information available" I close all connection, and this error yet occurs. Someone knows why this ?
5
7222
by: Martin Jørgensen | last post by:
Hello again, Sorry to bother but I guess my C++ book isn't very good since it obviously contains errors so the program code doesn't work with g++. However I don't understand what the problem is. Last time the problem was that "using namespace std" apparently had a "link" class/object defined already. Now I get: error: no matching function for call to 'String::String(String)'
2
4509
by: Chris | last post by:
Hi, I want to show the whole recordset. There are 42 records and 2 fields. .... comd = New System.Data.OleDb.OleDbCommand("select name,lok from pc", oConnection) dtreader = comd.ExecuteReader for i=0 to 41 for j=0 to 1 dtreader.Read()
2
2698
by: Praveen Chandra | last post by:
Hi, I am trying to build a static library, while building the library i am getting the following error: fatal error C1189: #error : "No sstream/strstream implementation" Following is the code that is giving error: #ifdef HAVE_CONFIG_H
3
5850
by: uday.sen | last post by:
Hi, I am porting a piece of code from VC++ to linux platform. My compiler is g++ 3.2.2. I am getting following error: no matching function for call to A::setResponse(std::wstring) candidates are A::setResponse(std::wstring &) ---> This is indeed the signature I am using this function as:
0
1991
by: nurmaiza | last post by:
Hello, i'm using windows, eclipse, Tomcat 5.5 and JSP file trying to connect jdbc ms sql using jdts driver. i've download the driver and assigned the path at en.variable..but it give me an error no suitable driver anyone ve idea on what the setting shud i set?i've no idea after followed some instruction on web site still it give me the same error. this is my code <title>Obtain connection</title> </head> <body>
0
2414
by: Gwen Crutcher | last post by:
I keep getting the error "No value given for one or more required parameters", but not sure why. Can anyone please look at my code snipet and see if you see any reason why I could be getting this error. I am just trying to update a record using MS Access 2003 as the front end. This code is in VB.NET Private Sub cmdUpdate_Click() On Error GoTo Err_cmdUpdate_Click Dim rstUsers As New ADODB.Recordset
2
1265
by: BlackMustard | last post by:
hi all, i am trying to convert the string "32999" to a number, in order to compare it to other numbers and tell which one is the largest one, or if they're equal. i keep getting an overflow error. this is for a macro organizing numbered folders, so i started out with lower numbers using CInt(myNumberString) which worked fine up to this point. the odd thing is that i get overload using CLng and CDbl as well, even though i understand the...
2
1982
by: Jolie Chen | last post by:
I am learning template programming now, and I wrote the following code #include <iostream> #include "Queue.h" using namespace std; template <typename Tclass QueueItem { public: QueueItem(T item):value(item),next(0){}
0
8459
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8374
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8890
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8575
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8653
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7398
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6206
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4202
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2784
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.