Problem in Integration of Apex with R12

Hello,
I followed the paper apex-ebs-extension-white-paper-345780.pdf to do Integration of Apex with R12. but stuck on one step.
I am done with all the steps in R12. Now if i click the menu in R12, its going to my existing Apex aplication but still asking username and password.
Can anyone help me out in what exactly I need to change in Apex Authentication scheme in Apex. Right now I am using Authentication scheme as Application Express.
Please help me out
Thanks in advance
Ananya
Edited by: Ananya on 26 Dec, 2011 8:51 PM

Hi Mini,
Thanks a lot for ur replies. But it is not working for me. I am not able to figure out whats going wrong.
My Requirement is to redirect to the first page of my application without asking for the APEX login page from the EBS menu.
So summarizing whatever I steps i have followed:-
(1) Created Profile and function in APPS as given in "apex-ebs-extension-white-paper-345780.pdf"
(2) I created the following package in APPS schema
     CREATE OR REPLACE PACKAGE APPS.XXAPX_SECURITY_PKG AUTHID DEFINER AS
     FUNCTION generate_hash (
     p_string IN VARCHAR2
     , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2;
     FUNCTION validate_hash (
     p_string IN VARCHAR2
     , p_hash IN VARCHAR2
     , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN;
     END XXAPX_SECURITY_PKG;
     CREATE OR REPLACE PACKAGE BODY APPS.XXAPX_SECURITY_PKG AS
     g_key VARCHAR2(100);
     FUNCTION generate_hash (
     p_string IN VARCHAR2
     , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2
     IS
     BEGIN
     IF p_string IS NULL THEN RETURN NULL; END IF;
     RETURN RAWTOHEX(UTL_RAW.cast_to_raw(
     DBMS_OBFUSCATION_TOOLKIT.MD5(
          input_string=>p_string||':'||
          TO_CHAR(SYSDATE-(p_offset/24*60*60), 'YYYYMMDD HH24MISS')||g_key)));
     END generate_hash;
     FUNCTION validate_hash (
     p_string IN VARCHAR2
     , p_hash IN VARCHAR2
     , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN
     IS
     BEGIN
     FOR i IN 0..p_delay LOOP
     IF p_hash = generate_hash (p_string, i) THEN RETURN TRUE; END IF;
     END LOOP;
     RETURN FALSE;
     END validate_hash;
     BEGIN
     SELECT encrypted_user_password INTO g_key
     FROM FND_USER WHERE user_name = 'SYSADMIN';
     END XXAPX_SECURITY_PKG;
(3) Created a function in the APPS schema:-
     create or replace FUNCTION ebs_authenticate (
     p_username IN VARCHAR2
     , p_password IN VARCHAR2) RETURN BOOLEAN
     AS
     BEGIN
     IF apps.XXAPX_SECURITY_PKG.validate_hash (p_username, p_password) THEN RETURN TRUE; END IF;
     RETURN (apps.FND_WEB_SEC.validate_login (p_username, p_password) = 'Y');
     END ebs_authenticate;
(4) In my authentication scheme of my apex application i have changed it to use custom authentication to use the below function
     return apps.ebs_authenticate
(5) Created a procedure in the APPS schema:-
     create or replace PROCEDURE apps_logon
     IS
     v_username VARCHAR2(100);
     v_password VARCHAR2(32);
     BEGIN
     wfa_sec.getsession(v_username);
     v_password := xxapx_security_pkg.generate_hash(FND_GLOBAL.user_name);
     IF v_password IS NOT NULL THEN
     APEX_CUSTOM_AUTH.login(
          P_UNAME => v_username,
          P_PASSWORD => v_password,
          P_SESSION_ID => v('APP_SESSION'),
          P_APP_PAGE => apex_application.g_flow_id||':38'
     ELSE
     RAISE_APPLICATION_ERROR(-20001, 'Password is null, session id = '||icx_sec.g_session_id);
     END IF;
     END apps_logon;
(6) In my login page, i have created a process Get Username Cookie and with the process point: onload(Before Header)
     BEGIN
     apps.apps_logon;
     EXCEPTION WHEN OTHERS THEN NULL;
     END;
Now I am getting this error with the login page :-
ORA-06502: PL/SQL: numeric or value error: character string buffer too small Content-type: text/html; charset=UTF-8 Set-Cookie: WWV_CUSTOM-F_1120314105059329_811=B4134623EB436033; path=/; Location: f?CallFromForm='Y'&p=811:38
Please help me figure out the problem as I am struggling a lot with this from last few days :(
Thanks in advance.

Similar Messages

  • Integration of Apex with Oracle Apps R12

    How can I integrate Oracle Apex with Oracle Applications R12? The requirement is like by clicking a menu the user will see an apex report without giving again the user name and password. By simple menu attachment it's asking for apex login credentials. But I want it will redirect to the apex page without asking for user name and password.
    Anyone please tell the step by step procedure of how to integrate apex with oracle apps R12.
    Please help.

    Hi,
    See below my thread this might be of some help to you. We could successfully integrate EBS and OBIEE.
    Logout link missing upon integrating OBIEE 11g with EBS (Not through SSO)
    Thanks,
    Sri

  • Problem of integrating apex4.1 with bi publisher

    i 'm working on
    linux + 11gR2 apex 4.1 bi 11.1.1.5.0(only installed bi publisher)
    both apex and bi on the same server and same database
    i 'm following this pdf :Integrating Oracle Application Express with BI Publisher
    http://www.oracle.com/technetwork/developer-tools/apex/integrating-apex-with-bi-publisher-169198.pdf
    now i got a problem when login apex using bip's username
    in validate_login function flex_ws_api.make_request always got null
    here is the function :
    create or replace function validate_login(
    p_username in varchar2,
    p_password in varchar2) return boolean
    is
    l_validate varchar2(48);
    l_env clob;
    l_xml xmltype;
    l_ns varchar2(4000) default null;
    l_url varchar2(4000);
    begin
    l_env := '<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pub="http://xmlns.oracle.com/oxp/service/PublicReportService">
    <soapenv:Header/>
    <soapenv:Body>
    <pub:validateLogin soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <userID xsi:type="xsd:string">'||p_username||'</userID>
    <password xsi:type="xsd:string">'||p_password||'</password>
    </pub:validateLogin>
    </soapenv:Body>
    </soapenv:Envelope>';
    l_url := 'http://'||v('BIPUB_SERVER');
    if v('BIPUB_PORT') is not null then
    l_url := l_url||':'||v('BIPUB_PORT');
    end if;
    l_url := l_url||'/xmlpserver/services/PublicReportService';
    l_xml := flex_ws_api.make_request(
    p_url => l_url,
    p_envelope => l_env);
    l_validate := flex_ws_api.parse_xml(l_xml,'//validateLoginReturn/text()',v('NS'));
    if l_validate = 'true' then
    return true;
    else
    return false;
    end if;
    exception when others then
    return false;
    end validate_login;
    ...... what's wrong???
    thx !!!!!
    Edited by: 901181 on 2011-12-7 下午7:32

    In hopes that someone can give me some guidance, I've duplicated the issue on my apex.oracle.com workspace.
    Workspace: NBPERP
    Username: GUEST
    Password: 12summer3
    Application: 464. Report Demo
    Page 1 - a drop down list with submit will show that a query, when run, will return values.
    Shared Component/Report Layout: LAYOUT TESTER - a simple RTF with some unique text that mimics the table shown on page 1.
    Shared Component/Report Query: TEST REPORT - the same query that is being executed on Page 1. If I click into the query and set the bind variable to "Indy" (no quotes) and then Apply Changes, I can download an XML file with the correct data. If I think click "Test Report", I get a "no data found" (unexpected condition #1). If I click back into the query and set the bind variable, click "Test Report", again, I get a "no data found" message (unexpected condition #2).
    Any help/direction on this problem would be much appreciated.

  • Integration of apex with other applications

    hi all,
    i'm planning on integrating my apex application to a .net express application.. since some of my screens will use webforms and some will use winforms.. to state the obvious, i will use apex for my webforms and .net for my winforms.
    what i want to do is that when i login to apex, i will also be automatically logged in to the .net app whenver i open one of its forms and vice versa.
    i did some reading that apex uses wwv_flow_custom_auth_std package and it executes wwv_flow_custom_auth_std.login after successful authentication? is this right? anyways, what i don't know is how apex checks if a user is logged in so that i can probably have my .net app do the same thing.
    any thoughts?
    thanks
    allen

    Allen
    it executes wwv_flow_custom_auth_std.login after successful authentication? is this right?Not exactly. This procedure, aka "the login api" causes the steps defined in the application's authentication scheme to be followed. It's usually called from the login page and accepts the username, password, session ID and some other information as input. One of the steps in an authentication scheme is credentials verification. Normally, if this optional step succeeds, the session is then registered, i.e., the authenticated username and the current session ID are recorded in the sessions table and a cookie is sent to the browser to be used for session management for the duration of the session. Then the indicated after-login page is redirected to. This is one way to structure an authentication scheme. Another is to use the code often referred to here as the "ntlm page sentry". You can find this is you search a bit. This method causes the user's authenticated status (and identity) to be obtained from the environment, e.g., from headers set by Windows NTLM. So really an application can do authentication and session management any way the developer chooses. It's completely flexible.
    ...anyways, what i don't know is how apex checks if a user is logged inApplication Express doesn't know or care if a user is logged in. Your application can check for this in whatever way you see fit. One way is to compare the value of APP_USER with a known list of unauthenticated users, e.g., APEX_PUBLIC_USER, ANONYMOUS, and nobody.
    Scott

  • Integration of APEX with Cognos BI SDK

    Hi All,
    Is it possible to integrate APEX with cognos BI SDK.
    If yes, how do we integrate both of the.
    What are the pre-requisites for his.
    Please name the jar, and also the process of intgration

    Hi,
    Apart from single sign-on, its very straight forward.
    I guess, when you render a Cognos report you will have report URL right?
    use that url in iframe
    <iframe src="url" height=500px,width=500px />
    But if you don't have single sign-on , you will be asked to login and once you login to Cognos, you should be good to render any report from cognos through browser.
    I have integrated OBIEE and BO into our stack so, the need to train normal users is eliminated.

  • Intergrate Apex with R12 , How to Extend Oracle EBS with Oracle Apex

    Question out to the experts. I am looking for the easiet way to launch an Apex Application from EBS, we are currently on 12.1.3 (EBS) and 3.2 (Apex, we will be updgrading here shortly). We would like to create a responsibilty in EBS , when click upon it brings up our application and login screen. We are using an LDAP authentacation and will build a custom authorization scheme using the launching responsibility from EBS as the gate keeper.
    Any and all assistance is greatly appreciated
    Steve
    Edited by: steve falteisek on Aug 14, 2012 3:31 PM

    steve falteisek wrote:
    Sure , i have a couple of questions
    You posted a link to follow but it brings me to several discussion threads. I am using the .pdf by Rod West from Cabot Consulting (http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf). To try to set up the ability to launch apex via a responsibilty in R12 specifically 12.1.3. There are a couple of steps that i have questions about.
    With the E-Business Suite R12 this is achieved by creating a custom jsp in the $OA_HTML
    directory on the server. An example is shown in the LaunchApex.jsp shown in Figure 9. The jsp
    assumes that /pls/apex is the APEX DAD and that there is a custom system profile
    ***** First Question for step below
    (APEX_HTTP_SERVER) containing details of the Oracle HTTP Server used by APEX.
    ?? What type of information are we supposed to setup here? I am assuming this is done under application developer via EBS but not sure what we are suppose to enter?
    This is referring to a custom system profile that you need to create using Application Developer responsibility and populate the site level with the HTTP server URL you are using for APEX - see {thread:id=2273624} for an example
    >
    >
    The jsp can be compiled using the command shown in Figure 8 (See metalink notes 215268.1 and
    458338.1).
    ******* Second Question
    ??? The command below in Figure 8 does not work, i get a cannot find ojspCompile.pl error , also the metalink notes enclosed seem to talk about a different issue?
    Figure 8
    export PATH=$PATH:$FND_TOP/patch/115/bin
    ojspCompile.pl compile -s 'LaunchApex.jsp ' retr
    I believe this is a typo - there is a space between "jsp" the single end-quote, which should not be present. Try the command without the space.
    >
    In the end all I am trying to do initially is get apex to launch via an EBS responsibility (NO SSO initially) , i had this working in 11i but not with r12 i have having some difficulties. Apex is running and working on the db , so we know the application is viable , just trying to work on a different launching mechanism
    Thanks again for taking out the time.. Hopefully with your help we can get this up and running
    SteveHTH
    Srini

  • Problem in Integrating Existing Application with Portal

    I have my existing application. When i tried to integrate it with portal by URLScrapper Channel, my existing applications are logging me out.
    My existing applications have different user / password for logging into it. Once i try login, i am not able to log into it. I hope there is some problem in session. Can anybody tell me how can rectify it.

    Guys can u explain ,how to set the cookies in the session
    Bcoz i am also facing the same problem when i am integrating the portal with my application.
    I am able to login to the application , but when i do some operation it logs me out of the appliation .
    guys can u throw light on this issue.

  • Integrating Oracle Apex with Oracle eBusiness Suite

    Hi All,
    Can someone give me details about how we can integrate Oracle Apex with eBusiness Suite. We have few custom forms/ reports which are being developed in Apex. We want to register these in oracle applications as standard functions and link them to user responsibilities. Is it a good idea to create ApEx as separate application or can we use an existing application (like OM).
    Any pointers, references, documents with reference to this would be very useful.
    Thanks in advance.

    or view: http://skrajend.blogspot.com/2007/06/htmldb-authentication-with-oracle.html
    There are other excelent tip from Rod West
    http://www.oracle.com/technology/products/database/application_express/pdf/Extend_Oracle_Applications_11i.pdf
    regards
    Rolando
    Edited by: RolandP on May 12, 2009 6:56 PM

  • Facing problem when Integration of configurator with ADF application

    Hello,
    Integration of conifigurator with custom application is not returing to "return_url" after clicking on Finish button in conifgurator.
    We have developed a custom ADF application which integrates a configurator.
    We have follwed the below url on developing this.
    http://www.oracle.com/technetwork/topics/newtojava/overview/ofm-ebs-blog-postings-096286.html
    After completeing the configurator process, but the page is still showing as loading and not returning the return_url parameter mentioned in initialization parameters
    So we are unable to get the FacesContext of calling application as it always returns null.
    Please hlep on this, it is bit urgent.
    Thank you
    kali

    Hi pankaj,
    I tried the approach you suggested, Still it's getting stuck at that point it self, Below is the simple servlet code which is the return_url,
    package view;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class configurator extends HttpServlet {
    private static final String CONTENT_TYPE = "text/html; charset=UTF-8";
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    public void service(HttpServletRequest request,
    HttpServletResponse response) throws ServletException,
    IOException {
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    System.out.println("Hi how are you");
    out.println("<html>");
    out.println("<head><title>configurator</title></head>");
    out.println("<body>");
    out.println("<p>The servlet has received a POST or GET. This is the reply.</p>");
    out.println("top.location = \"http://localhost:7101//ConfigTest-ViewController-context-root//CheckoutTest.jsp");
    out.println("</body></html>");
    out.close();
    Below is the view source of clock rotating page , where i can't find any thing from the above servlet,
    <!-- $Header: czContainer.jsp 120.0 2005/05/25 07:12:55 appldev noship $ -->
    <!doctype html public "-//W3C//DTD HTML 3.2 Transitional//EN">
    <html>
    <head>
    </head>
    <body>
    <form name="_FormXYZ" method=POST>
    <input type=hidden name="_Field123">
    </form>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>
    <!-- <img src="/OA_MEDIA/czLogo.gif"> -->
    </td>
    </tr>
    <tr>
    <td>
    <!-- $Header: czEmbed.jsp 120.0 2005/05/25 05:18:08 appldev noship $ -->
    <link rel="stylesheet" charset="UTF-8" type="text/css" href="/OA_HTML/cabo/styles/cache/swan-desktop-custom-2_3_6_9-en-gecko.css"><script>var _UixWindowOpenError='A popup window blocker has been detected in your browser. Popup blockers interfere with the operation of this application. Please disable your popup blocker or allow popups from this site.'</script><script src="/OA_HTML/cabo/jsLibs/Common2_3_6_9.js"></script><iframe id="_pprIFrame" name="_pprIFrame" frameborder="0" longdesc="#" title="" src="/OA_HTML/cabo/images/swan/t.htm" style="position:absolute;top:-100;visibility:hidden" width="0" height="0"></iframe><div id="_pprBlockingDiv" onclick="return pprConsumeClick(event);" style="position:absolute;left:0;top:0;width:0;height:0;cursor:wait;" onkeyup="return false;" onkeydown="return false;" onkeypress="return false;"></div><script>var cachedLibs;</script><script>var pprFirstClickPass=true;</script><form id="DefaultFormName" name="DefaultFormName" style="margin:0px" method="POST" action="/OAHTML/czContainer.jsp?akRegionCode=FNDDIALOGPAGE&akRegionApplicationId=0&sessionid=A13TXog2ZwLsgdQNg07KHaLJka&transactionid=null&retainAM=N&addBreadCrumb=S&oapc=6"><input id="_AM_TX_ID_FIELD" type="hidden" value="2" name="_AM_TX_ID_FIELD"><input id="_FORM" type="hidden" value="DefaultFormName" name="_FORM"><span id="lovHFCId"></span><span id="_OAEmbeddedModePageLayoutReplacement__"><table id="FwkErrorBeanId" width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td></td></tr></table><div></div><script language="javascript" src="/OA_HTML/cabo/oajsLibs/oafcoreR121.js"></script><div></div><div><div class="x69"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr valign="bottom"><td><img src="/OA_HTML/cabo/images/swan/infol.gif" width="18" height="18" border="0" alt=""></td><td><img src="/OA_HTML/cabo/images/swan/t.gif" width="5" height="0"></td><td width="100%"><table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td width="100%"><h1 class="x7c">Information</h1></td></tr></table></td></tr></table></div><div class="x78"><noscript>JavaScript enabled browser required.</noscript><div></div><div></div><span id="TerminationInformationRegion"><table id="_czt1103-CSMsgTopRow" align="center" cellpadding="0" cellspacing="0" border="0"><tr><td><img id="_czt1103-HorizontalSpacer1" src="/OA_HTML/cabo/images/swan/t.gif" width="25" height="1"></td><td id="_czt1103-CSMsgTopCell" align="left"><span id="_czt1103-CSMsgContainer"><span id="_czt1103-CSHeaderMsg" class="x2">Your configuration is being processed. Please wait ......</span><div></div><img id="_czt1103-VerticalSpacer1" src="/OA_HTML/cabo/images/swan/t.gif" width="1" height="50"><div></div><table id="_czt1103-ClockImageRow" align="center" cellpadding="0" cellspacing="0" border="0"><tr><td><img id="_czt1103-ClockImage" name="_czt1103-ClockImage" src="/OA_MEDIA/process_animation.gif" title="Processing" border="0"></td></tr></table></span></td></tr></table><div></div>
    <IFRAME HEIGHT="0" WIDTH="0" SRC="CZInitialize.jsp?XMLmsg=<client-event session-id='JRAD1'><terminateSession/></client-event>" NAME="BackToCallingApplication" Id="BackToCallingApplication" title=""></IFRAME></span><input id="_fwkAbsolutePageName" type="hidden" value="/oracle/apps/fnd/framework/webui/OADialogPage:::" name="_fwkAbsolutePageName"><script language="javascript" src="/OA_HTML/cabo/oajsLibs/oafcoreR121.js"></script></div></div></span><span id="_DefaultFormName_Postscript"><input type="hidden" name="_FORMEVENT"><input type="hidden" name="serverValidate"><input type="hidden" name="evtSrcRowIdx"><input type="hidden" name="evtSrcRowId"><script>var _resetDefaultFormNameNames=["_FORMEVENT","serverValidate","evtSrcRowIdx","evtSrcRowId"];</script><script>function _DefaultFormNameValidater(form){return true;}</script></span><script>_submitFormCheck();</script></form><iframe name=formsLauncher src="http://ebs-tst.hologic.com:80/OA_HTML/blank.html" title="Forms Launcher" height=5px width=5px scrolling=no frameborder=no></iframe>
    </td>
    </tr>
    </table>
    </body>
    </html>
    I am not sure where i have done a mistake, Can u please correct me if i am wrong..:)
    Thanks,
    Kali
    Edited by: sai on Dec 24, 2012 2:42 AM

  • Problem in integration of listener with EBS

    When i run this *"java -Dapex.home=/apex -Dapex.images=<LOCATION_OF_Image>/image -Dapex.port=<port_no> -Dapex.erase -jar apex.war"*
    Its working fine and I get a apex login page .
    But the problem is that when I close the terminal all connection are lost and given error "The requested URL could not be retrieved"
    How can i integrate listener with EBS .
    I am using
    APEX 4.1
    Database 11.1.0.7
    Application 12.1.3
    I want to configure listener with EBS .When I start instance automatic start apex listener
    Edited by: king on Apr 17, 2012 2:59 AM

    Hello,
    But the problem is that when I close the terminal all connection are lost and given error "The requested URL could not be retrieved" That's not very surprising, as APEX Listener is running in Standalone Mode in your current scenario. If you close the terminal session that the JVM is running in you kill the JVM and hence APEX Listener.
    You could use a tool like "nohup" to detach the process you start from your terminal session. But using the Standalone Mode for a (long running) production scenario is not recommended anyway, and...
    I want to configure listener with EBS .When I start instance automatic start apex listener... obviously not your actual aim.
    So, EBS shall be your target. Shoudn't be a huge problem, as EBS comes with an OC4J Container and OC4J is one of the Containers officially supported by APEX Listener. I'm not sure if your EBS already ships with the JDK version needed, but as soon as it runs at least 1.6.0_20 it should work.
    As I've already replied to your question in {thread:id=1118604} there is a working approach described in {message:id=10069317}.
    Did you try that one? If so and it didn't work out, could you please describe the problems you've encountered?
    Thanks,
    Udo

  • Problem in :    Integration of  ASP  with   R/3 using XI

    I am facing a problem in a particular scenario involving ASP  application.I am trying to Send a synchronous  message to R/3 using XI.
    I calling a business service of XI from ASP page to pass the  message across to XI.But I get an error on execution of the ASP page.The error is As  follows
    <b>" During the application mapping com/sap/xi/tf/_EMP_MM_a
      com.sap.aii.utixi.misc.api.BaseRuntimeException
       was thrown: FATAL ERROR com.sap.engine.lib.xml.parser.parser~"</b>
    The interface used for mapping is EMP_MM_a

    Actually the Mapping program is Perfect but while sending the message from ASP is in string but not in XML format.
    I am using the Plain HTTP adapter for connecting to XI
    How I want to call a Business service of XI and pass a XML Message from ASP page to XI.
    (Source)                        (Target)
    ASPPage  ->     XI   ->    R/3
    (I could n't attach the IMAGE file So please try to find the above archetechture)
    can you give the suggestions on this
    Message was edited by: Dhanabal T

  • Problem in Integrating MS Exchange with EP

    Hi,
       I using EP 6.0 SP2. The problem is that I have a user who has the same user name and password both in Exchange Server and EP. But When I attached the Outlook Web Access Inbox (Standard iView) he is not able to see his inbox. I have created a system for the Exchange server in EP.In the URL Template I have given the following string
    https://172.16.14.86/Exchange/User.UserId/Inbox?cmd=contents.
    I have not given anything for URL Template Fraction for Single Sign-On (SSO2) and URL Template Fraction for User Mapping.
    The screen displays the logon screen and if I enter the same it displays 'The page cannot be found' message.
    Can anyone of you give me the solution for this problem?
    Regards,
    Sathish

    HI Satish
    can u direct access the url https://172.16.14.86/Exchange/User.UserId/Inbox?cmd=contents.
    out side the portal and it works?
    and one more thing while using Exchange mail u have to use single sign on method. becoz user mapping is not possible for all user.
    and u should use FQDN instead of IP address.
    regards,
    kaushal

  • Problem in integrating sunone webserver with websphere app server

    Hello all
    I am trying to integrate sunone6.0 webserver with websphere5.0 app server. I did the following changes in sunone6.0 config files
    1) Added one directive to the obj.conf file after "<Object name=default>":
    Service fn="as_handler"
    2) Added two directives to the end of the magus.conf file:
    Init fn="load-modules" funcs="as_init,as_handler,as_term" shlib="/opt/WebSphere/AppServer/bin/libns41_http.so"
    Init fn="as_init" bootstrap.properties="/opt/WebSphere/AppServer/config/cells/plugin-cfg.xml"
    Can any one of u tell me how to check whether sunone webserver is redirecting request to webshere app server?
    i tried this url https://sunonewebserver:80/webapps/examples but i was not getting any result of that url.

    You might want to check here http://developers.sun.com/prodtech/webserver/
    and here http://developers.sun.com/
    These have forums and articles devoted to specific Sun products

  • Problem in integrating Dreamweaver MX with  SAP xMII

    hi all,
    i am using Dreamweaver MX and xMII 11.5
    i have followed the steps for  <a href="http://help.sap.com/saphelp_xmii115/helpdata/en/Getting_Started/InstallationGuide.htm#Installing_the_Dreamweaver_Add_in">Installing the Dreamweaver Add-in</a>
    <b>i am unable to find the path "http://<servername>/Lighthammer/WizardInstall/IlluminatorWizard.exe" in the server</b>
    where can i find this file
    Regards,
    Art Team

    Hello Art Tech
    You may need to register the DWWizardGUI.dll.  Here is a snippet from the help documentation:
    If selecting SAP xMII Object does not display the plug-in, open a command prompt and type "cd\Lighthammer\Illuminator\Wizards" to navigate to the folder where the DLLs are located. Then type "regsvr32 IllumDWWizardGUI.dll" which should register the dll. Dreamweaver should then prompt you for the SAP xMII server name or internet protocol (IP) address (it defaults to localhost) when calling up the plug-in; this is similar to the standalone version of the plug-in.
    I may be wrong, but as I recall, you don't have to be in any particular mode to use the plugin in Dreamweaver as you do in Frontpage.
    Kind Regards,
    Diana Hoppe

  • Problem in Integration of BI Reports with NWBC

    Hi all,
    I am facing a problem when integrating Bi reorts with NWBC (Netweaver Bussiness client).I Created a role for that and when i add the BW reports in it,after saving it's displaying it as ABAP report and automatically changed the selected option to abap report.when i logged into NWBC the link for the reports are displayed but when i execute them it shows me blank screen.I added transaction to it and working fine.Problem is with Reports.In query designer i tried to save the query as a Role.it was displaying in the role screen(PFCG) bt not in NWBC.Please help me.
    1 more qns when I add report in role as a BW report it ask for query id what it is?i gave technical name here.
    Thanks in Advance.
    Vikas

    Hi Vikas,
    I'm facing the same problem, any tips?
    Regards,
    Ronen.

Maybe you are looking for

  • Run tym error "illegal statement"

    hi frends i am executing a program for ALV view but a run tym error is there "rror in an ABAP/4 statement when processing an internal table." the main part of the code is : <              P_NOCOVE AS CHECKBOX DEFAULT ' ', "NO COVER PAGE             P

  • How to stop ActionEvent for a button

    Hi, I have a button "Start". On clicking the button, it will ask with a prompt "You really want to start" with Yes and No button. On clicking Yes button, the "Start" button is changed to "Cancel Stat..." and start running a process. If want to stop t

  • Dynamic Property Editor for a Component

    All, Have a requirement to show the properties of a given component when the component is selected by the user in a nice property editor within Webcenter. The component will be part of a Fusion Web application (ADF). Can we surface the properties of

  • What is client runtime option installation?

    Hi, I have a bug here which says, they have installed the DB with client runtime option. So, now they have $OH/inventory but not $OH/oui. Anyone out there can throw some light on what exactly is this option?

  • I have another phones contacts in my phone

    I have contacts contacts in my imessaging. Also my screen is locked on landscape.How did this happen? How can it be changed back?