Integrating Microsoft Lync with Web Applications

Hi,
Can you please tell, is it possible to integrate Microsoft Lync with the  web applications. If so, can you please tell how to proceed with it ?
Thanks.

Hi BarryBenson,
I suggest that you post this on MSDN forum so
that you can get More relevant information and help with the process. Sorry for any inconvenience this caused. Thanks for your understanding.
https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=ucmanagedsdk
Best regards,
Eric

Similar Messages

  • Integration office365 with web applications

    Hi, I'm develop web application where I have my own storage for files. I wan't add functionality that provide editing files via web browser.
    1. Is there possibility to call office365 app from my app by some API, send my file stream, edit and on save get back file stream to save in my storage?
    2. If you provide functionallity from 1.how looks architecture solustion? Do I conect some global office server or should I have office365 app instantion on my server?
    Thanks,
    Chris

    Hi,
    According to your post, my understanding is that you want to integration office365 with web applications.
    For your task the
    file API
    should be the right one. With it you can access and manipulate Office and OneDrive for Business documents.
    Here is a similar thread for your reference:
    http://stackoverflow.com/questions/27396671/office-365-integration-with-asp-net-web-application-mvc-application
    More information:
    http://channel9.msdn.com/Series/Deep-Dive-Integrate-Office-365-APIs-in-Your-Web-Apps
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Can not restart Microsoft SharePoint Foundation Web Application after stopping

    All, thanks for any help.
    I have a SP2010 instance running and am in the process of adding custom web parts, activities, and timer jobs.  As part of troubleshooting an odd problem where my code did not seem to be getting updated on deployments, I decided to try restarting the
    Microsoft SharePoint Foundation Web Application in Central Administration/Services on Server.  It stopped well enough, but on restart it now fails with the error "Expression must evaluate to a node-set.
    ".  I thought it might have something to do with the updated web.config, so I took it back to the original one, but the problem still persists.  I have tried multiple PC restarts and iisresets, along with trying to start the service via the use of
    stsadm.  My SP2010 instance is deployed on a Windows Vista box for testing.  I have successfully deployed this very same custom timer job to that very box in the past; it just won't deploy now and the Microsoft SharePoint Foundation Web Application
    constantly shows "error starting" on the Services on Server page.
    As a result I can no longer deploy timer jobs - they deploy but never show up Central Administration after deployment, and never execute.  Can anyone tell me how to get Microsoft SharePoint Foundation Web Application to restart?
    ~Thanks!
    Mitch

    Old post, but in case others come across this. From:
    http://sharepointumar.wordpress.com/2013/10/11/restart-microsoft-sharepoint-foundation-web-application-service-stuck-at-stopping/comment-page-1/#comment-146
    Stop it by running:
    $svc = Get-SPServiceInstance | where {$_.TypeName -like "*Foundation Web*"}
    $svc.Status = "Offline"
    $svc.Update()
    And then start:
    $svc = Get-SPServiceInstance | where {$_.TypeName -like "*Foundation Web*"}
    $svc.Status = "Online"
    $svc.Update()
    Optionally, you may need to run (I didn't):
    $wa = Get-SPWebApplication http://webAppUrl
    $wa.ProvisionGlobally()
    Ben Weeks
    SharePoint Consultant @ Webtechy Ltd
    T: +441223922070 F: +448701315220
    Web: http://www.webtechy.co.uk Blog:
    http://blog.webtechy.co.uk

  • Scale out sharepoint server search to index server and Microsoft SharePoint Foundation Web Application to new server

    Hi
    in my single server these below service are running:
    SharePoint Server Search 
    User Profile Service 
    Microsoft SharePoint Foundation Web Application
    here how i scale out  Microsoft SharePoint Foundation Web Application  to another server
    and  SharePoint Server Search  to new index server.
    adil

    Check here to see how to add servers to the farm:
    http://technet.microsoft.com/en-us/library/cc261752(v=office.15).aspx
    What Inderjeet meant was that if you chose to install SharePoint as a single server instead of a complete farm, you won't be able to add servers to the farm at a later time. You can check if this is the case by checking the registry key he mentioned. If
    that is indeed the case, there's nothing to it but reinstall the farm.
    So that is why you never should choose the single server option, it locks you in and limits future options, while choosing to install sharepoint as a complete farm it's still perfectly acceptable to host it on a single server.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Integration Microsoft Exchange with Portal

    Hi, i need help.
    I try connect MS Exchange 2007 with Portal, found the documentation only MS exchange 2003, but need documentation for MS Exchange 2007.
    Another problem have is that my S.O is Windows 2008 server and no exist documentation. Please can you tell me the links (URL) where find documentation
    My system is:
    MS exchange 2007
    Microsoft Windows 2008 server
    Portal 7.0 EHP 1
    Thanks.

    Please, do not cross post: Integration Microsoft Exchange with Portal
    Have you checked the installation guides available at [SMP|https://service.sap.com/instguides] or the [PAM|https://service.sap.com/pam] for more information about Windows 2008?
    br,
    Tobias

  • 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

  • Print a Web Template with Web Application Designer 3.X

    Hello
    I would know how I can print a web template made with Web Application Designer 3.X and that it is in the Intranet.
    Actually I'm printing that page with the option of the browser (Internet Explorer) but it print only I see, no print all the chart and the rest of the columns.
    How can I print all the data that compose  the web template?
    Thank you.

    Hello Sharath,
                         First check whether you have change authorizations for WAD, check you user name is added in the role for web templates and also check the authorizations.
    then in the web template in the menu bar go to view option ,select web items and properties , so that you can find them in the left hand side, then replace the chart item with the table and assign the query to the table.
    hope it is clear,
    assign points if useful.

  • How to integrate  microsoft outlook with WebAS

    how to integrate  microsoft outlook with WebAS

    Nibu,
    I guess users enumerated enough options in your original thread on different forum: Integration of Web AS and Microsoft OutLook and there is no need for cross-posting
    VS

  • Portal Integration of an existing Web Application

    Dear all,
    we are preparing for the pbnw certification. Our way is to deploy our existing web application on the J2EE engine and make it accessible via the portal, i.e. where are taking the certification scenarios J2EE-DEP and BP-EP.
    Up to now, my idea is to integrate the web surface of our application into the portal as far as this is possible without too much effort. Alternatively it would be possible to access our application via an URL-iView however to my feeling this is not a real integration. Did I get things right assuming that would meet the requirements for pbnw certification?
    I read that it is necessary to follow the portal's look and feel by applying SAP's CSS. Does anyone know where to obtain these? And what is the easiest way to replace the currently used stylesheets by them?
    Millions of questions...
    Thanks a lot!
    Regards,
    Angela Grüner.

    Dear Angela
    Please have a look at the following Weblog link which gives a detailed description of the method to create a URL iView using Application Integrator:
    /people/markus.pfeffer/blog/2005/12/14/integrating-your-web-front-ends-into-the-sap-enterprise-portal-using-the-application-integrator
    If you adopt this method to create the URL iView, then it meets the requirement for EP-BP Certification.
    The blog also includes an example of HTML code with applied SAP CSS. Please go through this section to implement EP look and feel.
    Hope this helps!
    Regards
    Atima

  • Uninstall Microsoft Lync By Using Applications in Configuration Manager

    Dear,
    I wants to remove Microsoft Lync 2010 by using create deployment application in SCCM 2012 and install Microsoft Lync 2013 at the same time, kindly I wants to know shall I create two packages for each one first I have to uninstall Microsoft Lync 2010 by create
    new package and create another package for install Lync 2013? Kindly I need steps for doing this job.
    Thanks..

    You can create customize the Lync2013 Admin file (navigate to your Microsoft Office setup folder, etc //Lync2013/setup.exe /admin) and create an msp file. Create a package and deploy it.
    There is a portion in the MSP file where you can set what Office does after installation and before installation. This will uninstall Lync 2010 during the Office 2013 installation
    1. Copy the Lync 2010 setup file (LyncSetupVolume.exe) into the same folder as your Lync 2013, create a folder called Lync2010.
    2. Run eg: //Lync2013/setup.exe /admin to create a new msp file (you can also use an existing msp file if available)
    3. In the MSP file , go to Setup>Add installations and run programs> add a command line (after installation, do not choose before installation) , etc //Lync2013/Lync2010/LyncSetupVolume.exe /silent /uninstall
    4. Save the file.
    5. Create a package with Lync 2013 //Lync2013/setup.exe /adminfile automated.msp
    6. Deploy it.
    You can customize the Office2013 Admin file to your liking as well. To test it out, may I suggest to deploy it through SCCM to a test machine as Available first and see if it works before deploying 
    Please refer http://social.technet.microsoft.com/Forums/en-US/configmanagerapps/thread/dc8c5dfa-eb1d-4ca6-8713-e37ba4175734
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer" Regards Edwin Anthony Joseph

  • Please need Help with web application deployment in Jdeveloper 12c

    Hi,
    I am desperate for help guys. am trying to deploy a web application in weblogic server, but nothing works!!
    I created a project in jdeveloper and created a jsp page inside the project, all what i want is to run that page!
    I followed the instruction here: Deploying Fusion Web Applications , I don't really know if i did it right or wrong, the document is too detailed and not understood clearly.
    I am a newbie oracle user, and trying to build jsp web application connected to oracle database. application deployment fails it says: cannot run application error deploying IntegratedWeblogic..
    please could you tell me the steps of application deployment in Jdeveloper 12c?
    what deployment profiles I need to create (ear, war , mar)?
    what deployment descriptor I need for my app to work?
    please guys I am newbie to oracle, if you could give me simplified answers and straight instructions it will be appreciated .
    thank you

    hi Timo,
    I am building a local web application, meaning the server is internal and will not connect to the web, only to local pcs via network. the application will insert/select data from the database server. My company wants to embed oracle technology on the datatabse and that what am trying to. I am not that expert in java and oracle in general, my main knowledge are in php, html and mysql programming. through my long internet research a lot has recommended jsp with html to be a good choice.
    At beginning I played around with ADF faces, I found it annoying because I prefer coding than using drag and drop interfaces, which always create unwanted results.
    Also am not that professional java programmer, i started learning jsp and found it easier.
    What I am thinking of is to make a web based application that works in browsers (like php), this application has forms to insert data, and also has forms to output data for printing. that's all. I tried to make it in php, but through my little knowledge and internet researches it seems php does not work with oracle and java is the recommended choice (or it works with php but too complicated to make it)
    any recommendation will be much appreciated
    thank you

  • IWS60SP4 Additional Document Directories Problem with Web Application

    We have iPlanet/Sunone WebServer 6.0 Service Pack 4 installed. I have deployed a web application using the wdeploy command line. I have defined an additional document directory that is outside of the web application and document root. No matter how many ways I try it, it seems to expect that the document root is the source of the files and totally ignores the additional document directory definition.
    Example:
    additional document directory: /add /opt/dir1/dir2
    document root: /opt/doc/root
    URL given: http://my.domain.com/uri/add/file.html
    expected: to get file.html out of /opt/dir1/dir2
    actual: fails, trying to get /opt/doc/root/add/file.html
    Do additional document directories actually work? (They worked for us under iPlanet 4.1) If so, please tell me how to make them work with a deployed web application.
    Thank you.
    - Tom

    In the original post you state:
    Example:
    additional document directory: /add /opt/dir1/dir2
    document root: /opt/doc/root
    URL given: http://my.domain.com/uri/add/file.html
    expected: to get file.html out of /opt/dir1/dir2
    actual: fails, trying to get /opt/doc/root/add/file.html
    You are mapping /add to the new dir. The URL you would need to type then is:
    http://my.domain.com/add/file.html
    not
    http://my.domain.com/uri/add/file.html
    Mapping /add to a new dir will work. You do not need to specify /uri/add.

  • Errors on Windows2003 with Web Application Framework 4.0 + CR_VS2010

    Hi,
    I have a new scenario about this problem e I would like get some opinions to solve this.
    We have a web Application (Asp.net + vb.net) wrote in VS 2010 using CR_VS 2010 running with Framework target 4.0.
    In Windows 2008 32bits or 64bits (IIS 7.0) the application works fine with Crystal Reports.
    In Windows 2003 32 bits or 64 bits (IIS6.0) some resources of Crystal Reports VS2010 doesn't work like in Win2k8, we have a page that export a report to disk using data set and always receive the message:
    ".. Could not load file or assembly 'file:///C:Program Files\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet1\crdb_adoplus.dll' or one of its dependencies. The system cannot find the file specified: C:\Program Files\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet1\crdb_adoplus.dll"
    The same application is useful on Windows 2008, we follow the instructions identified by KB 1540637, 1525432 and 1217986 but the problem was not solve.
    Another thing that was very strange in this environment ((Windows 2003) is:
    We have a console application that use CR_VS2010 and here the Crystal Reports works perfectly with this lines in application.config:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Is important remember that Web.config of our application already has the configuration above and don't have any reference to another cystal reports (only the version 13 (cr vs2010)).
    Can you help us ?
    Thank you and sorry for the bad english.

    Hi All,
    Thanks for waiting. I have the info now...
    It is fixed in CR 2008 as well.
    This should work also for CR for VS 2010 now, SP is not required, add this key to your PC's:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports\DesignerOptions]
    "DealWithMinimalMarginsWhenPrinting"="0"
                 Key=0  =>  minimal margins
                 Key=1 or delete key  =>  large margins
    As well here the sample code and note the PrintToPrinter does NOT read this key, you must use RAS:
    For Winform Viewer, it will not impacted this fix... in CR.Net SDK, if user used reportdocument print function like:
    reportDocument.PrintOptions.DissociatePageSizeAndPrinterPaperSize = true;
    reportDocument.PrintToPrinter(1, true, 1, 1);
    or they tried to print via CrystalReport Winform Viewer
                reportDocument.PrintOptions.DissociatePageSizeAndPrinterPaperSize = true;
                this.crystalReportViewer1.ReportSource = reportDocument;
                this.crystalReportViewer1.PrintReport();
    Even by setting the following registry key to u201C0u201D, the print out page will be large margin.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 12.0\Crystal Reports\DesignerOptions]
    "DealWithMinimalMarginsWhenPrinting"="0"
    However if you using RAS.Net SDK to print like following code, it will be affected by the fix:
                ReportDocument reportDocument = new ReportDocument();
                reportDocument.Load(@"C:\Users\Administrator\Documents\Visual Studio 2008\Projects\CrystalReportsApplication1\CrystalReportsApplication1\CrystalReport1.rpt");
                reportDocument.PrintOptions.DissociatePageSizeAndPrinterPaperSize = true; // Please note that, this code is does nothing. The only impacting to print result is the registry key.
                CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions printReportOptions = new CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions();
                printReportOptions.AddPrinterPageRange(1, 1);
                printReportOptions.PaperSize = CrystalDecisions.ReportAppServer.ReportDefModel.CrPaperSizeEnum.crPaperSizePaperA4;
                printReportOptions.PrinterName = @"\\CNPVGL002\CN64_BW";
                CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rptClientDoc = reportDocument.ReportClientDocument;
                rptClientDoc.PrintOutputController.PrintReport(printReportOptions);
    Thank you
    Don

  • Keepgenerated with web applications

    Does anyone know how to tell WebLogic to keep jsp generated .java files when
              compiling? I know how to do this normally, but setting keepgenerated in the
              weblogic.properties file does no good when dealing with a web application.
              The line below is shown in the log when starting up the web application:
              Thu Nov 02 15:47:18 CST 2000:<I> <WebAppServletContext-bonanza> registering
              JSPServlet with initArgs '[JspConfig:
              verbose=true,packagePrefix=jsp_servlet,compileCommand=javac,workingDir=C:\Bo
              nanzaSite\_tmp_war,pageCheckSeconds=1,superclass=null,keepgenerated=false,en
              coding=null,defaultfilename=index.jsp]'
              This seems to indicate that it is ignoring the weblogic.properties file. Can
              these arguments be changes, and if so, how?
              

    Jacek
              Make sure that all <context-param>...</context-param> definitions appear
              before the first <servlet>...</servlet> definition. Otherwise, what you
              have code looks exactly like what we are using in our web.xml file.
              John J. Feigal Voice (651)766-8787 (main)
              Sr. Technical Consultant (651)766-7249 (direct)
              Ensodex, Inc. Fax (651)766-8792
              4105 N. Lexington Ave., Suite 150 email [email protected]
              Arden Hills, MN 55126 WebSite http://www.ensodex.com
              "Jacek Laskowski" <[email protected]> wrote in message
              news:[email protected]...
              > Alex Worden wrote:
              > >
              > > Oops, I sent a link to our internal pages - here's the real one...
              > >
              > > http://www.weblogic.com/docs51/classdocs/webappguide.html#resvp
              > >
              > > There's plenty of other parameters you might want to set in there too so
              > > it's worth a look.
              >
              > The quesion was asked some time ago, but now I'm trying to use it and
              > still no luck:(
              >
              > Here is a part of my application's deployment descriptor:
              >
              > <context-param>
              > <param-name>weblogic.jsp.keepgenerated</param-name>
              > <param-value>true</param-value>
              > </context-param>
              >
              > and I expect Weblogic 5.1.0 SP6 on Windows2000 will keep Java classes in
              > WEB-INF\_tmp_war\jsp_servlet directory, but it do not (!)
              >
              > Does anyone use the feature successfully ? If so, where can I find the
              > source code of JSP files ?
              >
              > >
              > > Regards,
              >
              > Jacek Laskowski
              > HP Consulting
              

  • Forcing Variable Entry with Web Application Designer Bookmark

    Hello All,
    We have users that are creating bookmarks in a Web Application report.  They want to change their dates every time they open the bookmark, but the variable entry screen is not showing up even with the "Force Variable Entry Screen" option checked.  Is this how a bookmark is suppossed to funciton or is there anyway to make the variable entry screen appeear with a saved bookmark.
    ***the purpose of the bookmark is for users to save the format of the report as they see fit
    Any help would be appreciated!!
    Thanks!
    Tina
    Edited by: Tina Gatto on Jun 3, 2009 4:10 PM

    when you save yorru personalization, you dont save it to internet explorer favourites. its a different code to save personilization.
    try these posts they might help
    SAP Business Explorer (SAP BEx)
    SAP Business Explorer (SAP BEx)
    search sdn for 
    how to "personalize".
    hope this helps

Maybe you are looking for

  • Error reading material cost estimate for sales order (KE292)

    Dear All, I have an issue with billing. we are posting july month transactions, the material cost is maintained through MR21. When releasing billing document for accounting we are getting error message like"Error reading the material cost estimate fo

  • Updated to 10.7.2 and sound is no longer working.

    Running a 2010 11 inch Macbook Air. I updated to 10.7.2 and now the sound doesn't work. Annoying! Anyone experiencing the same issue or know how to fix it?

  • How to get Privacy Policy value for each userprofile in sharepoint 2010?

    In userprofile application, we have defined Privacy Policy of mobilephone feild as optional, so every user has option to choose visibility scope of this property to "Everyone/My Manager/my colegues/Only Me" . Now I am trying to get mobilephone value

  • IPhone File Transfer Speeds

    I have two MacBooks and two iPhones and I'm seeing very different file transfer speeds between the two. Both have the backup option manually disabled to improve sync times. Setup 1: iPhone 3GS with MacBook Pro (15-inch, Late 2008) model Setup 2: iPho

  • Transfer old and new music from iphone to new computer account?

    So my account on my family Mac desktop was malfuntioning -- meaning the apps open would not close, and the loading screen and rainbow cursor would not go away (its been days) therefore i decided to delete my account and create a new one. My account h