RE: Problem accessing a web service. Please help. Thanks

2002-01-11 Thread Max Stolyarov
hanks Max -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 4:05 PM To: [EMAIL PROTECTED] Subject: Re: Problem accessing a web service. Please help. Thanks When you create your parameter, you must specify the class of the parameter, not the Para

Re: Problem accessing a web service. Please help. Thanks

2002-01-11 Thread Scott Nichol
When you create your parameter, you must specify the class of the parameter, not the Parameter class. For example, String symbol; Call call = new Call (); // set call properties here Vector params = new Vector (); // Here it is: String parameter specified as String.class type