Deploying App On Windows Box

I ve developed a simple web app that runs perfectly on a Mac OS box.
I now need to deploy this onto Windows - I ve set the majority of things up but have come across a problem where the JSP tags are not getting translated - So for example if you do c:out... - It actually prints c:out and not the translated text.
I have copied a version of standard.jar and jstl.jsr to the WEB-INF/lib folder - Is there anything else that would cause this?
I am completely lost at this

Steve_Johnson wrote:
the JSP tags are not getting translated - So for example if you do c:out... - It actually prints c:out and not the translated text.To get it to work:
1) The webapp's web.xml must be declared to at least Servlet 2.3.
2) JSTL 1.1 JAR's (jstl.jar and standard.jar) in classpath (WEB-INF/lib is the usual place, yes).
3) JSTL taglibs in JSP must be declared with JSTL 1.1 URI syntax (i.e. no _rt suffix).
Nothing less and nothing more. If you still encounter this problem, then there may be something dirty or messed up somewhere in the configuration. E.g. duplicate JAR's of different versions in the classpath (take appserver's libraries in account), having extracted the JSTL JAR's and placed the loose TLD files in the classpath unnecessarily, having declared the TLD files in the webapp's web.xml unnecessarily, etcetera. Make sure that anything is clean and straight.

Similar Messages

  • Updating a Deployed app on Windows RT 8.1

    I have an app I have written for Windows RT. I am able to deploy it using add-appxpackage in powershell. I have installed the Side Loading key and this all works fine. What I am looking for is a way to update the app for users that are in the field. We will
    eventually have over 50 users using this app and the logistics of bringing in each tablet so I can do the add-appxpackage individually would be rather daunting. Is there a way to install an update to an app from within the app?  I can write code to have
    the new version downloaded to the tablet and stored in the local storage for the app. The problem is finding a way to run the add-appxpackage from within the app. Is there a way to do this?
    Jim
    Jim Wilcox

    Hi,
    Please refer to the article below:
    http://technet.microsoft.com/en-us/library/hh856048.aspx

  • VS2013 - I cannot deploy and debug windows phone 8.1 store app to windows phone device

    Hello, I create a project from C#-> Store Apps -> Windows Phone Apps, but  I cannot deploy my apps to my blue device. There was a error message show "Element not found". I can run the app from Blend, and found Blend package the app to Appx
    file. Is any method that we can deploy store app into windows phone blue device directly and how to debug it on VS 2013?

    Hi,
    Welcome to MSDN.
    I am afraid that this is not the proper forum for this issue, since this forum is to discuss and ask questions about the Visual Studio Debugging tools, Visual Studio Profiler tools, and Visual Studio Ultimate IntelliTrace.
    Since your issue needs professional windows phone knowledge, and there is dedicated forums for windows phone development issues
    Windows Phone Development forums, you could choose one of its sub forums depends on your issue like  Tools
    for Windows Phone development or  
    Developing for Windows Phone .
    In addition, I did a research, you could check whether the following links help.
    http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402565(v=vs.105).aspx
    http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402523(v=vs.105).aspx#BKMK_Runanddebug
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to get sideload product key in order to deploy windows store app into Windows 8 pro and windows RT

    From where can i get the Windows 8 sideload product key and the process how to get it .please explain in detail .

    I was able to resolve my issue once I worked with Microsoft Professional Services.  Here are the steps needed to deploy a Windows 8 Store app for anyone else looking for help on this.
    Create your app package in Visual Studio
        https://technet.microsoft.com/en-us/windows/jj874388.aspx
    Create an app certificate using PowerShell as administrator, here is one way to do it.
        https://msdn.microsoft.com/en-us/library/windows/desktop/jj835832%28v=vs.85%29.aspx
    Install the app on the device
        https://msdn.microsoft.com/en-us/library/windows/desktop/jj835832%28v=vs.85%29.aspx
    Ensure Device has the correct GP settings
        http://blogs.technet.com/b/scd-odtsp/archive/2012/09/27/windows-8-sideloading-requirements.aspx
    Install the application on the device
        Refer to Sideload the app for user section
        https://technet.microsoft.com/en-us/windows/jj874388.aspx
    * If you run your app now you should get an error, this is because you have not installed a Sideloading Key
    And the missing piece of the puzzle What is a Sideload key and how can I get one?
    * Documentation on this is confusing so here is what I needed to know and found out
        Sideload key is a product key that is needed to be added to the device so that it can use Windows 8 apps that are not from the Store
        It is not a requirement to have the machine joined to the domain or have Windows Enterprise installed on it. In my case my target was a Windows 8.0 Pro tablet.
        You do not need Windows 8.1 to use sideloading it will work on Windows 8.0 as well
        You can purchase a key from a Third Party Distributor but you will need to know what to ask for
        Ask for a Windows 8 Sideloading Key, Sometimes referred to as a Windows 8 Embedded Sideloading product key
        They cost about $100.00 a pop but they sell them as a Volume License so the minimum you can by is 5.
        However in my case it turned out that my company had an Enterprise Sideloading License, I just needed to know who to ask and what to ask for.
        Once you get your xxxxx-xxxxx- Slideloading key from the distributor here are the steps to installing it on the device (Section 2 Step 3)
        http://blogs.msdn.com/b/micham/archive/2014/05/30/sideloading-store-apps-to-windows-8-1-devices.aspx
    Once I installed that my application worked.

  • How to deploy galileo app in windows phone

    Hi Everybody,
    Could you please suggest how to deploy galileo app in windows phone ? .
    I have built this app in C++
    Seeking your co-operation and support..
    Thanking you,

    Only Metro/Store style apps can be installed on Windows phones - unless you're an OEM
     -Brian
    Azius Developer Training www.azius.com Windows device driver, internals, security, & forensics training and consulting. Blog at www.azius.com/blog

  • TEXT_IO.FOPEN not working on web deployed app FORMS 6i

    Hi all
    I have coded parsing file by using TEXT_IO.GET_LINE but it seems that my file even can't be opened.
    declare
    file1 text_io.file_type;
    filename1 varchar(256);
    linebuf varchar2(100);
    begin
    file1 := TEXT_IO.FOPEN(:CSV.CSV_PATH, 'r');
    Text_IO.Get_Line(file1, linebuf);
    if linebuf!='blablablablabla' then msg('line is OK!');
    else msg('Line is wrong!');
    end if;
    TEXT_IO.FCLOSE(file1);
    end;
    On local machine when i enter into :CSV.CSV_PATH "C:\details.txt" the file gets loaded because it gets processing, I can see messages.
    When I upload form onto remote web-deployed app server, I enter into path "D:\details.txt" (I cannot write on C:, the files are the same) nothing happens. Does it mean text_io won't work on Fomrs6i web-deployed? How can I investigate this issue.
    Thanks in advance
    Tome

    With Forms Server deployments. TEXT_IO writes the file on the Forms server not the local PC as it did in client-server mode.
    Here are some workarounds
    1) Download the WEBUTIL add-on from Oracle and use its TEXT_IO package to write to the local file.
    WebUtil is an essential add-on loaded with goodies such as a file browse dialog for local files. Its easy to use and is designed to be compatible with other oracle routines like TEXT_IO.
    Kudos to Duncan Mills at Oracle for this top add-on - dont leave home without it.
    www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm2) Use the original TEXT_IO (as you are now) to write to a file on the Forms Sever , then display it in a browser window using WEB.SHOW_DOCUMENT
    3) I remember seeing some some old Java scripts on OTN to write to local PC.
    MY APOLOGIES for #3. Most forum posts can be solved with that little gem of an answer. "My sink is blocked" ... "yeah I saw some java code to fix that"

  • Installing 11i apps on windows xp and Red Hat linux AS 3.0

    Hi,
    I am a newbie to Oracle E-business suite............i will be very helpful if anybody could help me with the full procedure on how to install Oracle apps on windows on Windows XP and Red Hat linux AS 3.0.........starting with configuring ip.....i would really appreciate if somebody helps me out...........well thanks in advance..waiting for a optmistic reply...
    Thanks again,
    Virendra

    I have done installation on XP and 2000 servers are heres the steps... detailed ones. I also request those who install Oracle Apps 11i to first read the installtion pdf's which helps you understand clearly the prerequisites overall.
    You cannot find the Pre installtion steps(such as Mks Toolkit and GNUMake config) in more clear terms from those documents.Which are explained here.
    The Must PDF's to refer before installation
    1)r1152ins.pdf
    2)11iconcepts.pdf
    According to the 11iconcepts PDF you can decide your business needs the N-Tier Architecture and Database Server and Application Tier Server File System in a very clear terms.
    The installation process can be divided into
    Pre Installtion,Installation and Post-Installation stages.
    I would caution everyone to concentrate more on Pre Installation stage and which is more critical for a successfull installtion of Oracle Apps and to be free with later cropping up problems.
    Further before moving into Installtion stages i have to Explain the Number of CD's and Installtion type's in Oracle App's.
    In many places you may need to wait patiently even more than 10 minutes for screens(Dialog Boxes) to appear dont conclude prematurely some problem on system.
    In oracle Apps 11.5.1 it consist of 12 CD's.
    1) Start Here CD(RAPID Installation Wizard)
    2)1-11 CD's
    1-3 Application Top information
    4th Oracle DB
    5-6 IAS and other tools
    7-11 Oracle Apps DB.
    You have to decide whether you are going to do a Single Node Installation(No Post-Installation Task) or Multi Node Installation. Refer(r1152ins.pdf)
    While installing for Multi Node you can see the Installation locations to be mentioned as
    Appl_Top,Common_Top,Data_Top etc.Try to install Appl_top and common_Top in one drive and Data_Top in another Drive(Single Node) and in different nodes in Multi Node installation.
    Installation Types
    Production ==>Real time Env implementation's
    Test ==>For test Env Purposes
    Vision Demo==>R&D or learning Purposes.
    Pre-Installation steps
    ======================
    Space Requirement for types of installtions
    Install VC++
    How to Download and install MKS tool Kit
    How to Download and Configure GNUMAKE
    Env path setting
    Create Applmgr user in Win2000
    Space Requirement for types installtion:
    Memory Requirement
    1 GB of RAM(512 Fine for initial Installtion)
    but planned for more user connections another 1 GB of Ram and according to the number of user's and Application needs you have to Increase the Memory.
    HDD capacity
    APP_Top(A)
    COMMON_TOP(C)
    DATA_TOP(D)
    Test DB : 22 + 20 GB (60 GB recommended)
    Prod DB : 22 + 20 GB (60 GB recommended)
    Vision Demo DB: 22 + 35 GB (80 GB recommended).
    Plus space for ur staging area.
    This are the actuall space required for the Oracle Apps Alone plan for more space for future needs etc.
    Softwares on System
    Win2000 server with Patch1,Winzip and Acrobat Reader Latest version etc.
    Install VC++:
    Install a clean installtion of VC++ of Visual Studio Family 6.0
    It should be first installed before installing MKS or GNUMAKE
    NOTE: When Visual C++ is installed, let the installer register all environment variables. This will allow executables to be linked from the command line.
    How to Download and install MKS tool Kit:
    Note:Try to purchase the MKS tool kit from the below site.
    or try to download the trial version valid for a months time.
    http://www.mkssoftware.com/products/tk/ds_tkio.asp
    Evaluation copy from
    http://www.mkssoftware.com/eval/
    Choose "MKS Toolkit for Interoperability " Download it in C:\
    Again you have to click the downloaded kit to start the actual download of 38 MB of MKS tollkit Evaluation version.
    You will be sent a Demo serial number to your mail id==>copy the same to a Notepad on your desktop.
    Now start the installtion of the MKSToolkit on your system by clicking on the MKStoolkit downloaded.
    It will prompt you for the Demo serial number which has to be provided.
    The MKStoolkit will be successfully installed.
    How to Download and Configure GNUMAKE:
    1) HOW TO GET AND INSTALL GNUMAKE ON WINDOWS2000
    This can be done by performing the following steps:
    NOTE: Please, be aware that you must install Visual C++ BEFORE installing GNUMAKE, because its installation process involves linking executables.
    1) Before downloading GNUMAKE, you will need to acquire some utilities which will be used for unpacking files. You can obtain the required utilities at the following
    URL: ftp://ftp.gnu.org/gnu/windows/emacs/utilities/i386/
    The directory contains the following files:
    README
    djtarnt.exe
    gunzip-1.2.4-i386.exe
    gzip-1.2.4-i386.exe
    tar-1.11.2-i386.exe
    tar-1.11.2a.exe
    Only two of the files are required:
    gunzip-1.2.4-i386.exe and tar-1.11.2a.exe
    2) After downloading the above files, rename them as follows:
    gunzip-1.2.4-i386.exe => gunzip.exe
    tar-1.11.2a.exe => tar.exe
    Place them into a directory that you can set in you PATH environment variable.
    3) Point your browser to the following
    URL: ftp://ftp.gnu.org/gnu/make
    The files needed from this directory are:
    make-3.77.tar.gz
    make-3.78.1.tar.gz
    make-3.79.1.tar.gz
    make-3.79.tar.gz
    Development requires to install version 3.77 or above. Downloading the latest version is perhaps best decision, but there are advantages to downloading the version required by development (3.77). (This document assumes that version 3.77 has been downloaded) (NOTE: AVOID USING SPACES IN
    DIRECTORY AND FILE NAMES. GNUMAKE,VISUAL C++, ETC. DO NOT ALWAYS DEAL WELL WITH SPACES)
    4) For instance, suppose you have downloaded file make-3.77.tar.gz on a directory called C:\GNUMAKE, unpack this file using gunzip.exe from a Command Prompt Window
    Example: C:\GNUMAKE>gunzip make-3.77.tar.gz This last action, will expand file make-3.77.tar.gz and the extension .gz will be removed.
    5) On the same Command Prompt Window, you should UnTAR the file, with the following
    command: C:\GNUMAKE>tar -xvf make-3.77.tar This will create a new subdirectory called MAKE-3.77 under C:\GNUMAKE, the original directory.
    6) In the new subdirectory, there is a batch file
    called build_w32.bat; run the batch file to generate GNUMAKE.EXE
    Try this from Command Prompt more than once if succesfully not built message appers till you get Generated successfully.
    Note:If Possible run all the bat files in the MAKE-3.77 and also config.bat in the sub directory by double clicking it.
    WARNING: There is a known issue with this last step, "GNU make fails to build regardless of chosing build_w32 or nmake"
    See [NOTE:115937.1]
    for work around. RELATED DOCUMENTS ----------------- For Microsoft Visual C++, MKS Toolkit and
    GNUMAKE support, you should contact their respective vendors Microsoft Visual C++, MKS Toolkit
    and GNUMAKE are registered trademarks.
    http://support.microsoft.com/ http://msdn.microsoft.com/ http://www.mks.com/
    http://www.gnu.org/ Note:104010.1: Release 11i on NT: Software Requirements
    Note:115937.1: GNU Make won't make on windows NT
    Important:All the downloaded files from GNU makes web sites shall be put in a single folder called gnumake under c:\ .Try to search for config.bat file inside this folders just click and
    run it.
    Env path setting:
    Try to search make.exe generated in c:\program files\mkstoolkit\mksnt and copy and paste it
    c:\gnumake\MAKE-3.77\windebug and c:\gnumake\MAKE-3.77\winRel also paste both this paths in the
    My Computers==>Properties==>Advanced==>Environment variables==>Path setting's
    After all this check as follows from CMD mode.
    1)execute make at c:\>
    2)execute gnumake at c:\>
    In win2000 it may return error messages or Target wrong ignore it.If it is on Win NT then it will return proper status.
    Create Applmgr user in Win2000:
    Create a Applmgr user account in win2000 .
    Installation:
    =============
    What here you require is the Patience .
    Load the START HERE CD and run the C:\> cd \cdrom\rapidwiz
    For Test and Prod it will ask for the location of Appl_Top,Common_Top and Data_Top location. Mention there path and ensure if more than one installtion say eg.Vision and Test or Prod to check the Path in all the tab pages its corresponding values and path's.
    In Vision Demo many of the Options are not propmted from the user.
    It will then do the system checking for Host Name and other details.All the checking should have been passed or if failed it will mark it in RED cross mark.Rectify the mistake and then onceagain proceed or else you will have problem after installation.
    The Installation time takes around 5 to 6 Hrs of time.
    For info on Post installation or on Multi Node follow the pdf's i have mentioned above.
    The most tedious of all is succesfully crossing the Apps system checking it does for all
    installed products it requires without any failure.
    The GNUMAKE configuration or steps were nowhere given and it was all our trail and error exp.
    This is possibly the most elaborate steps to install Apps on Win. post for further help. email me at [email protected] or [email protected]
    Rajeev.

  • Database logon failed when deploy CR on Windows Server 2008

    I use Crystal Reports for Visual Studio 2010 Production Release with MVC 2 web aplication and SQL Server 2008 database server. When I compile/run from VS 2010 it running well, but when deploy it on Windows Server 2008, when load certain report (Not All report) face the following exception message:
    Database logon failed
    Stack Trace is as the following:
    at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e) at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext) at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportOptions options) at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportFormatType formatType) at SequisLife.Controllers.ReportController.run_report(String report_name, IDictionary`2 dic_param)
    InnerException:
    System.Runtime.InteropServices.COMException (0x8004100F): Database logon failed. at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext) at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
    run_report method is as the following:
    private ActionResult run_report(string report_name, IDictionary<string, string> dic_param)
                string ls_respon = "";
                try
                    get_sqllogin();
                    ReportClass rptH = new ReportClass();               
                    rptH.FileName = Server.MapPath(VirtualPathUtility.ToAbsolute(report_name));
                    rptH.Load();             
                    rptH.Refresh();
                    Database crDataBase;
                    Tables crTables;
                    TableLogOnInfo crTableLogOnInfo;
                    ConnectionInfo reportConnectionInfo = new ConnectionInfo();
                    reportConnectionInfo.ServerName = server;
                    reportConnectionInfo.DatabaseName = database;
                    reportConnectionInfo.UserID = login_user;
                    reportConnectionInfo.Password = login_pass;
                    crDataBase = rptH.Database;
                    crTables = crDataBase.Tables;
                    foreach (Table crTable in crTables)
                        crTableLogOnInfo = crTable.LogOnInfo;
                        crTableLogOnInfo.ConnectionInfo = reportConnectionInfo;
                        crTable.ApplyLogOnInfo(crTableLogOnInfo);                  
                    ParameterFields lpf_parameters = rptH.ParameterFields;
                    if (lpf_parameters.Count > 0)
                        foreach (ParameterField lpf_param in lpf_parameters)
                            var llst_tmps = dic_param.Where(d => d.Key == lpf_param.Name);
                            foreach (var param in llst_tmps)
                                if (param.Key == lpf_param.Name)
                                    if (lpf_param.ReportName == "")
                                        rptH.SetParameterValue(lpf_param.Name, param.Value);
                                    else
                                        rptH.SetParameterValue(lpf_param.Name, param.Value, lpf_param.ReportName);
                    Stream stream = rptH.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
                    return File(stream, "application/pdf");
                catch (Exception ex)
                    ls_respon += ex.Message;
                    ls_respon = " - "ex.StackTrace;
                    ls_respon += " - " + ex.InnerException;
                    ls_respon += " - " + ex.Source;
                    ls_respon += " - " + ex.Data;
                    return Content(ls_respon);
    Please any body hepl me...
    Thank's in advance

    Hi,
    I am using CR with visual studio 2010 in windows 7 box 64bit box. using a ADO.net data source. And I need to export .rpt as pdf.The solution works fine in my dev box. by when i try to deploy in a windows server 2008 R2 box (64bit) it fails . Both my dev box and deplyment box uses sql server 2008 DB . Also i am using .Net framework 4.0 (not client profile)
    installed the following things in deployment box:
    1. CRRuntime_64bit_13_0_1.msi in
    2. Also copied the CRforVS_mergemodules_13_0_1 in C:\Program Files (x86)\Common Files\Merge Modules
    I get the following error in my Box:
    CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)   at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)   at Tesco.Instore.PickingControl.ReportController.PrintDriverDocumentation(String driverDocumentation, Int32 vehicleTripId)] 20/10/2011 08:08:41        PCS        Critical                   Classic .NET AppPool      Error running End of Van [Logon failed.
    Error in File temp_31b3196f-fd25-45c8-b657-5d9cd7c9dccb {4F74290C-D56E-4FC4-8DEF-371BB5C5B10B}.rpt:
    Unable to connect: incorrect log on parameters.]
    I also verified the database connection is upto date. while creating the solution
    the project build is set to anyCPU.
    is there anything else i have to install ?? Please help me ..I am trying this thing from last one week and have not got any proper solution till now

  • How to sideload a windows 8 app from Windows server 2012

    Hi
    I am developing a windows 8 app for my organization and we want to sideload form the server without installing on each client PC. The Client's PC are in a specific Organization Unit. Can Anybody assist me in getting this done please.
    dotdazzle

    you can sideload by using powershell, (e.g. Add-AppxPackage) which you can script, is that what you mean?
    http://technet.microsoft.com/en-us/library/hh852635.aspx
    http://technet.microsoft.com/en-US/windows/jj874388.aspx?ocid=wc-nl-insider
    http://www.howtogeek.com/129535/how-to-sideload-modern-apps-on-windows-8/
    You can use any method you like, to deploy/execute these powershell scripts, or there are other solutions like ConfigMgr or Intune (in case you might already have those available)
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Why am I getting different results for the same resolution but different Windows boxes, Win 7 and XP

    I am running an .exe on two different windows boxes, one in Win 7 and one on XP.  I set both for resolution 1024 x 768.
    On Win 7 (laptop and old Dell desktop) I have a great looking app.  On the WIn XP boxes all the fonts to large.  THis doesn't make sense to me as all the PC's have the same resolution.
    Has anyone run across this before?
    Mark Ramsdale
    Solved!
    Go to Solution.

    The system fonts for XP and Vista/Win7 are different.
    See
    http://forums.ni.com/t5/LabVIEW/Elements-have-moved-when-opening-vi-with-f3-patch/m-p/1054817
    http://forums.ni.com/t5/LabVIEW/What-can-affect-the-size-of-a-front-panel-object-between/m-p/1058607...
    http://forums.ni.com/t5/LabVIEW/Font-size-on-Windows-7-with-LabVIEW-2009/m-p/1055114/highlight/true#...
    and several other similar threads.

  • BEST PRACTICES: How to deploy apps with public and private content & data?

    Can anyone recommend a guide, blog post, etc. on best practices for:
    - designing & deploying apps that have publicly-accessible (http + https) content, and
    - content and data for which users must be authenticated and authorized?
    NOTE: In our environment users are authenticated via OID. We're using Apex 4.

    Hi,
    Have a look at this Sample App for getting Auth Token from Instagram in windows phone app. 
    Also read the api documentation for more details from
    here.
    Pradeep AJ

  • Error deploying RDC to Windows 7

    I have a VB6 application with the Crystal Reports Report Designer Component embedded in it.
    When I deploy the application to a Windows 7 box, I get the following error :
    "This system does not have a valid license, or the evaluation copy of the license has expired. Please contact Business Objects to obtain a Report Design Control License. "
    The application runs fine when deployed to a Windows XP box.
    What can I do ?
    thanks
    kevin

    Hi Kevin,
    Moved to Legacy SDK support....
    RDC is old technology and Windows 7 is new so it's not supported. Best effort only and is it's likely a permission issue.
    Try registering keycode.dll and look for the registry key in Windows XP Local Machine, Software and then what ever version you are using and duplciate it in 7.
    You may try enabling install logging and see what permissions errored or file errors. May be some dependency files missing also.
    RDC is no longer supported or shipped as of CR 2008 so you should look at updating to Visual Studio .NET 2008 and using the CR .NET assemblies. RDC is not supported in .NET also.
    Thank you
    Don

  • Slow start of app from Windows-Share

    Hi,
    i have an ZFD-App which has to start an *.EXE from a Windows-Server. The command ist like \\winserver\icd\path\boxes.exe When I start this ZEN-App I have to wait longer than 30 seconds before I can see a logon-windows of this program. If I make a good old local link on my WinXP-desktop and I start this I see the logon-windows after only 2 seconds. This is e very big difference.
    I tested this scenario with another EXE from another windows-share, it's the same problem.
    Any suggestions?
    Uwe Bassen
    Hamburg
    Germany

    Well, if the user/workstation isn't authenticated to your windows box before
    the app starts, its going to have different timeout issues (I'm not sure how
    you have the app assocated).
    My suggestion: copy the exe to a location that the user/workstation already
    has rights to. Not sure why you have to run the app from a server the user
    doesn't have rights to already.
    You might be able to build in the authentication prompt into your app with a
    pre-launch script (i.e. net use )
    >>> On 12/21/2009 at 3:46 AM, in message
    <[email protected]>,
    bassen<[email protected]> wrote:
    > Hi,
    > i have an ZFD-App which has to start an *.EXE from a Windows-Server.The
    > command ist like \\winserver\icd\path\boxes.exe When I start thisZEN-App I
    > have to wait longer than 30 seconds before I can see alogon-windows of
    > this program. If I make a good old local link on myWinXP-desktop and I
    > start this I see the logon-windows after only 2seconds. This is e very big
    > difference.
    >
    > I tested this scenario with another EXE from another windows-share,it's
    > the same problem.
    >
    > Any suggestions?
    >
    > Uwe Bassen
    > Hamburg
    > Germany--
    bassen----------------------------------------------------------------------
    --bassen's Profile:
    > http://forums.novell.com/member.php?userid=30002View this thread:
    > http://forums.novell.com/showthread.php?t=396411

  • Edge Animate ad banner to open up a link in the in app browser window of Adobe Content Viewer

    Hi I've got an adobe edge animate banner that animates and looks good. But I need it to be able to open a link (once the banner has been tapped on) in the Adobe Content Viewer app's in app browser window. Presently it only opens up within the 300x600 box that the ad is in.

    Can you post your current link code?
    It sounds like you are using the "_self" property which is opening it up inside the banner.
    Try using window.open("yourlink", "_blank");
    - Dylan

  • How to run a jar app on windows start up

    what classes can i use in java..
    to run a java app when windows xp starts up and even to shut windows down...
    what name are these classes under in the java libary..if there is any..

    LeeHarvey wrote:
    so i have to learn C# and C every thing.. to do any thing out side java...what about visual basic...Lee, VB6 ended support 4 years ago. Do you want to be a programmer or a burger flipper?
    You could go with VB.NET except it is succinctly, SH1T! Even the poeple who wrote hate it so much they'd tell you to use C# instead. [reference required] Seriously, it's got none of the advantages of VB6, and all of the disadvantages. I think it was designed to fail.
    C# is just like Java, except different ;-)
    Actually Java and C# are match racing... That is the longer they are developed the more alike they become... ergo they're suffering the wind-tunnel effect... they're copying each others weaknesses. This is a car. This is a lunch box.
    Java is still winning, which works for me, for now... when Java stops winning I'll swap boats quick as look at ya.
    Cheers. Keith.

Maybe you are looking for