cancel
Showing results for 
Search instead for 
Did you mean: 

Business Graphics in ADS doesn't display on subsequent calls

Former Member
0 Kudos

We have this bizarre problem with Business Graphics in ADS.

We are embedding Business Graphics in an Adobe form and we find that the Business Graphics will not be displayed on second (subsequent) call(s) to the ADS, which can be simulated by clicking on the Refresh button in the web browser.

The Business Graphics will only be displayed in the first call to the ADS.

Has anyone encountered this?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

the problem is the URL that does not contain the jsessionId as during the second call. The browser has already a cookie and so the encodeRedirectUrl-method does not add the parameter.

You can enforce this with the following call:

String url = "forceEncoding:" + source.getUrl();

urlToBeUsed = ((IWebContextAdapter)WDWebContextAdapter.

getWebContextAdapter()).encodeRedirectURL(url);