cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Error when using Web service Action Block.

Former Member
0 Likes
174

Hi All

I am calling recursive function in my transaction.Means same transaction i am calling inside a transaction.I have used the Webservice Action block to call the transaction.

I have passed the parameters whatever is requied.

But I am getting error when i am executing the transaction:

"Error invoking Webservice Action: Status(500):Internal Server Error".

Please suggest me on this.

Thanks in advance.

Regards,

Manisha

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Likes

May I know what exactly you are trying to achieve through this trax.

Regards,

Vishal Jadhav

Former Member
0 Likes

Hi Vishal

This transaction is trying to achieve the recursive function.

I want to call the same transaction within a transaction.So i have used WebService action block to call the transaction.

I have passed the input parameters whatever required.I have given loginName and password as my server login name and password.But when i am executing the transaction, I am getting the following error:

"Internal Server Error"

If any idea please suugest me.

Thanks,

Manisha

Former Member
0 Likes

500 errors are never good and usually generic

I wonder if your recursive function is too recursive - in that it never meets the stop condition. Put a stop condition it - even if temporary - and try again.

Former Member
0 Likes

Thanks Ryan, In my transaction there was a stop transaction action block.Because of this i was getting internal server error.After removed the stop transaction action block,my transaction started working fine.

Manisha