cancel
Showing results for 
Search instead for 
Did you mean: 

Proxy configuration and adobe services

Former Member
0 Kudos

Greeting all,

Since i have installed my Apache server i have a strange issue regarding my adobe services, I have followed all the step i have found on hepl.sap.com about proxy

Java

configure the portal side under service configuration and on visual administrator as well for http provider under dispatcher

Abap

In sicf under client --. proxy setting, activate.

I can access all my system from outside (abap and java) but when i try to generate a pdf i have the following error :

problem accessing data from Destination: dest:FP_ICF_DATA_WIL//sap/bc/fp/form/layout/FP_TEST_00.XDP?fp-language=DE&fp-cacheinfo=2007-02-09T14%3a28%3a37Z%2451e721c5-23fc-4f4e-a124-732f1d98372a%240%24de_DE%24v0%2e9

Caused by: com.adobe.ads.destination.DestinationException: HTTP-404 Error.

File Not Found while reading Dest URL: .......

It was working before the installation of the Apache server.

Did i missed something on the configuration ?

Thank for your advises

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

By my self

Former Member
0 Kudos

Hi cyferphanom

Could you tell me, What did you do for to solve the issue?

I have the same issue.

Thanks

Marcelo.

Former Member
0 Kudos

Hello Imbaez,

I have solved my issue by making some change in the syntax :

NameVirtualHost *:8009 --> i use a single virtual hostname in my case, just the port change

<VirtualHost *:8009 >

RewriteEngine on

ReWriteRule ^/sap(.*)$ http://<your abap server FQDN>:<abap port>/sap$1 [P,NC,L]

AllowEncodedSlashes On

ProxyPreserveHost on

RequestHeader set ClientProtocol http

NameVirtualHost *:8008

<VirtualHost *:8008 >

RewriteEngine on

ReWriteRule ^/(.*)$ http://<your java server FQDN>:<java port>/$1 [P,NC,L]

ProxyPreserveHost on

RequestHeader set ClientProtocol http

Please let me know if it work for you.

Regard

Former Member
0 Kudos

Hi,

I think you have not configured the destinations properly for ADS.

To do this login to visual admin -> under server0 -> go to destinations -> pick the last two destinations they will be the ADS destinations probably the last but one -> copy the link defined there and check whether its working or not ???

If you get the same error try to give the correct link .. Some time because of DNS issue between IP and hostname will cause such kind of issues.

Thanks,

Deepthi

Former Member
0 Kudos

Thank gurus for your answers,

Both instances are ruuning on the same host, i test the adobe using the program fp_pdf_test_00 and it works, but if try the fp_test_00 the error remind.

Former Member
0 Kudos

Hi,

Will you please try to generate a print output for any of your Bex queries or workbooks because it will generate the PDF ..

Thanks,

Deepthi

Former Member
0 Kudos

Hello deeptss,

How can i do it ?

Former Member
0 Kudos

I have solve my problem, thank for your time guys.

Former Member
0 Kudos
DE&fp-cacheinfo=2007-02-09T14%3a28%3a37Z%2451e721c5-23fc-4f4e-a124-732f1d98372a%240%24d

404 usually arises from Expired cache key's issued by the WEB Server.

Use http watch basicor professional and paste the calls here.

Thanks

SM