Webservice problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chsab420
    New Member
    • Jun 2009
    • 1

    #1

    Webservice problem

    i have a function which takes many parameters but one string array and if i give it an empty string then it wont give back results but if i remove that parameter (in software "soap UI" then it gives me proper records). now i think the problem is that if i find out a way to remove this parameter or pass something which let webservice know that i dont want this parameter in my list of results so that it can give back results.
  • gerom
    New Member
    • Jan 2010
    • 4

    #2
    Could you provide more information of the that function... you wrote 'i have a function which takes many parameters but one string array etc.' it doesn't seem to make sense

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      If a function has X number of parameters then you have to supply that many number of arguments in order to call the method.

      If you do not want to provide a value as an argument for a particular parameter, consider passing it Null (or in VB.NET, Nothing).

      -Frinny

      Comment

      Working...