Hi all,
we created iview for appintegrator. We followed the HowToGuide which you can find under: http://help.sap.com/bp_epv260/EP_JA/documentation/How-to_Guides/25_HowToUseAppIntegrator_en.pdf
We used the variant for Usermapping and set the parameters in this way:
URL template : <Request.Protocol>://<Request.ServerPort>/irj/servlet/prt/portal/prtroot/myJsp?<Authentication>
URL template fraction for user mapping : user=<MappedUser>&pass=<MappedPassword>
We read the mapped user id in the jsp through the component request.
<%
String user=componentRequest.getParameter("user");
String pass=componentRequest.getParameter("pass");
%>
The mapped user id is stored in upper and lower case. Our problem is that we get the user id only in upper case.
We use NW04s SP11.1. In previous version of EP6 the same mechanism works well.
Has anybody an idea how we can get the user id in upper and lower case?
Thanks.
Martin