cancel
Showing results for 
Search instead for 
Did you mean: 

HTTPS and WebDynpro iView

Former Member
0 Kudos

Ok guys, need some help here. I have developed a webdynpro application, deployed to my test portal, create an iView for it, and tested it in the portal. Works Great!!!! Here's the problem, after being very happy with myself about the development of this webdynpro application, I deployed it to our Production Portal, create an iView, and tested. It doesn't work. I have narrowed it down to the fact that we use HTTPS on the production portal, when the iView is trying to come up, it says 404 not found. Now, if I go into the portal via the back end using HTTP, the iView works. Is there anyway that I can get around this HTTPS.

I posted this in the EP Implementation forum as well, not knowing exactly what the problem is related to.

Regards,

Rich Heilman

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Rich,

I am having the same issue. I did you get this resolved?

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Here is the deal, it really wasn't a problem with HTTPS. You need to update your IISPROXY.xml file on the j2ee engine.

Put something like this in the iisproxy.xml file. Restart the engine. It should work, did for me.



    <mapping name="webdynpro">
        <source>
            <protocol>http</protocol>
            <pre><code>/webdynpro/</code></pre>
        </source>
        <target>
            <protocol>https</protocol>
            <host>myportal.mycompany.com</host>
            <port>50001</port>
        </target>
        <protocol-header>ClientProtocol</protocol-header>

    </mapping>

http://help.sap.com/saphelp_nw04/helpdata/en/7c/0db4a6ea7840f79b60d9ec92bdfc10/content.htm

Regards,

Rich Heilman