ExecuteLocalProcedure not accepting second parameter?

Hi,

Anyone have a clue as to why ExecuteLocalProcedure will not accept the second parameter passed?

I can run this from the Tessitura.asmx interface web page with no problem. However, when I try to pass it directly from a web page I've created, I get an error "Procedure or function [name] expects parameter '@sp_act_dt_date', which was not supplied."

Here's the parameters I pass in the procedure call string, verbatim; @sp_act_code=25&@sp_act_dt_date=09/24/2010

I've tried delimiting the "&" symbol that separates the parameters and get an "invalid character" error, which seems consistent with the documentation.

Not sure what I'm missing.

 

Parents Reply
  • When sending quotes around the procedure values parameter -

    System.Data.SqlClient.SqlException: Invalid parameter identifiers in @parameter_values

    When sending only the date in quotes -

    System.Data.SqlClient.SqlException: Procedure or function 'LP_Special_Activity_Summary' expects parameter '@sp_act_dt_date', which was not supplied.

    Baffled...

Children