Forum Moderators: open
public TransactionStatus modifySubscriberServices(
string transactionId,
string ctn,
string pricePlanCode,
Service[] service)
{
TransactionStatus TS = new TransactionStatus();
TS.transactionId = "01234567890123456789";
TS.englishMessage = "Modify Subscriber";
TS.frenchMessage = "Francais";
TS.errorDescription = "Error on Rogers";
TS.status = TransactionStatus.TransactionStatusStatus.apperror;
return TS;
}
If I remove Service[] service then I can see the fields when I invoke the web service.