Hello,
I have a workflow which has an http step. The http step makes an html post to an asp.net web site and passes several parameters such as workflow ID, subworkflow ID, task ID. On page load, the asp.net web site then uses these parameters to make a web service call back to CS web services to retrieve information/data regarding the said workflow.
Problem: When asp.net makes the web services, it gives me a System.TimeoutException error.
I know the asp.net web service call works, since i've tried hardcoding constant values as post parameters on the http step. i am not sure if it matters but these values are IDs of another workflow.
I have also tried putting an initiator step before the http step and it works fine. a delay step also does the trick.
I've also made sure i'm closing all my web services calls after i'm done with them.
Thanks much for any ideas.