Hi,I have a urlexternal task in my workflow. I am calling a website page in the url command of my urlexternal task. It is redirecting to the webpage as required. Once the actions in the page has been done i wan to return to the teamsite page from which i came to the web page . I am getting the URI refferral correctly. If i redirect to that url it is going to the login page of teamsite. Plese give me a solution
When you redirect from webpage to the teamsite, on which page of teamsite you want to redirect ? What process you have used to redirect from webpage to teamsite page ?
Hi,I have a button click event like the following. i wrote the code as below: protected void btnOk_Click(object sender, EventArgs e) { if (ViewState["PrePage"] != null) { Response.Redirect(ViewState["PrePage"].ToString()); }}on my page load i have the following codeprotected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Uri pre = Page.Request.UrlReferrer; ViewState["PrePage"] = pre.ToString(); } }the uri referrer will be get as:"http://myserver/iw-cc/command/iw.group.ccpro.list_directory?vpath=//myserver/default/main/POCWork/WORKAREA/Poc/doc/WML/ARO/ALexReadyXML"since i have come from this path i have to go there from this page. but it is redirecting to login page of teamsite
If you have not alredy login then only user will be redirected to the login page, otherwise you would be able to directly view the page you want.Which version of teamsite you are using ?, to know the cookies state whether stored or not after page close or redirect.
If I understand the issue correctly - I believe the problem is that you are not passing all the state information (form variables, cookies) from the initial externaltask to the other page, which in turn would need to use that information so that when it redirects back to the TeamSite server it maintains the original authentication information.
Can you tell me the way to pass the state information to and from the teamsite?