File "E:\sandip\programs\IDS_Server\build\web\abstractsubmission.jsp" not f

Hi everybody.
I am using struts1.2.9. Please solve my problem.
AbstractSubmissionAction class
saveErrors(request,errors);
if(errors.isEmpty()){
return mapping.findForward(SUCCESS);
return mapping.findForward("failure");
struts file
<action input="/abstractsubmission.jsp" name="abstractSubmissionForm" path="/abstractsubmission"
scope="request" type="struts.action.AbstractSubmissionAction" validate="true">
<forward name="success" path="/abstactloggedin.jsp"/>
<forward name="failure" path="/abstractsubmission.jsp"/>
</action>
After run, browser shows
HTTP Status 404 -
type Status report
message
description The requested resource () is not available.
server log
File "E:\sandip\programs\IDS_Server\build\web\abstractsubmission.jsp" not found
Message was edited by:
SandipGaikwad

According to your suggestion, it throws java.lang.IllegalArgumentException: Path abstractsubmission.jsp does not start with a "/" character
struts-config.xml file
<struts-config>
<form-beans>
<form-bean name="abstractLoginForm" type="org.apache.struts.validator.DynaValidatorForm">
<form-property name="username" type="java.lang.String"/>
<form-property name="password" type="java.lang.String"/>
</form-bean>
<form-bean name="abstractUserRegistrationForm" type="org.apache.struts.validator.DynaValidatorForm">
<form-property name="title" type="java.lang.String"/>
<form-property name="firstname" type="java.lang.String"/>
<form-property name="lastname" type="java.lang.String"/>
<form-property name="designation" type="java.lang.String"/>
<form-property name="company" type="java.lang.String"/>
<form-property name="street" type="java.lang.String"/>
<form-property name="area" type="java.lang.String"/>
<form-property name="city" type="java.lang.String"/>
<form-property name="state" type="java.lang.String"/>
<form-property name="country" type="java.lang.String"/>
<form-property name="pin" type="java.lang.Long"/>
<form-property name="countryCode" type="java.lang.Integer"/>
<form-property name="cityCode" type="java.lang.Integer"/>
<form-property name="fax" type="java.lang.Long"/>
<form-property name="email" type="java.lang.String"/>
</form-bean>
<form-bean name="abstractSubmissionForm" type="org.apache.struts.validator.DynaValidatorForm">
<form-property name="title1" type="java.lang.String"/>
<form-property name="firstname1" type="java.lang.String"/>
<form-property name="lastname1" type="java.lang.String"/>
<form-property name="title2" type="java.lang.String"/>
<form-property name="firstname2" type="java.lang.String"/>
<form-property name="lastname2" type="java.lang.String"/>
<form-property name="abstracttitle" type="java.lang.String"/>
<form-property name="theFile" type="org.apache.struts.upload.FormFile"/>
</form-bean>
</form-beans>
<global-exceptions>
</global-exceptions>
<global-forwards>
</global-forwards>
<action-mappings>
<action
input="/abstractlogin.do"
name="abstractLoginForm"
path="/abstractlogin"
scope="session"
type="struts.action.AbstractLoginAction"
validate="true"
>
<forward name="success" path="/abstactloggedin.jsp"/>
<forward name="failure" path="/abstractlogin.jsp"/>
</action>
<action
input="/abstractuserregistration.jsp"
name="abstractUserRegistrationForm"
path="/abstractuserregistration"
scope="session"
type="struts.action.AbstractUserRegistrationAction"
validate="true"
>
<forward name="success" path="/abstractregistrationsuccess.jsp"/>
<forward name="failure" path="/abstractuserregistration.jsp"/>
</action>
<action input="/abstractsubmission.jsp" name="abstractSubmissionForm" path="/abstractsubmission"
scope="request" type="struts.action.AbstractSubmissionAction" validate="true">
<forward name="success" path="/abstactloggedin.jsp"/>
<forward name="failure" path="/abstractsubmission.jsp"/>
</action>
<action forward="/abstactsubmission.jsp" path="/AbstractSubmission"/>
<action
forward="/abstractlogin.jsp"
path="/AbstractLogin"
/>
<action
forward="/abstractuserregistration.jsp"
path="/AbstractUserRegistration"
/>
</action-mappings>
<controller processorClass="org.apache.struts.tiles.TilesRequestProcessor"/>
<message-resources parameter="com/myapp/struts/ApplicationResource"/>
<!-- ========================= Tiles plugin ===============================-->
<!--
This plugin initialize Tiles definition factory. This later can takes some
parameters explained here after. The plugin first read parameters from
web.xml, thenoverload them with parameters defined here. All parameters
are optional.
The plugin should be declared in each struts-config file.
- definitions-config: (optional)
Specify configuration file names. There can be several comma
separated file names (default: ?? )
- moduleAware: (optional - struts1.1)
Specify if the Tiles definition factory is module aware. If true
(default), there will be one factory for each Struts module.
If false, there will be one common factory for all module. In this
later case, it is still needed to declare one plugin per module.
The factory will be initialized with parameters found in the first
initialized plugin (generally the one associated with the default
module).
true : One factory per module. (default)
false : one single shared factory for all modules
- definitions-parser-validate: (optional)
Specify if xml parser should validate the Tiles configuration file.
true : validate. DTD should be specified in file header (default)
false : no validation
Paths found in Tiles definitions are relative to the main context.
-->
<plug-in className="org.apache.struts.tiles.TilesPlugin" >
<set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />
<set-property property="moduleAware" value="true" />
</plug-in>
<!-- ========================= Validator plugin ================================= -->
<plug-in className="org.apache.struts.validator.ValidatorPlugIn">
<set-property
property="pathnames"
value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/>
</plug-in>
<!-- ========================= Hibernate plugin ================================= -->
<plug-in className="struts.plugin.HibernatePlugin">
<set-property
property="path"
value="/hibernate.cfg.xml"/>
</plug-in>
</struts-config>
AbstractSubmissionAction
public class AbstractSubmissionAction extends Action {
private ActionMessages errors;
/* forward name="success" path="" */
private final static String SUCCESS = "success";
* This is the action called from the Struts framework.
* @param mapping The ActionMapping used to select this instance.
* @param form The optional ActionForm bean for this request.
* @param request The HTTP Request we are processing.
* @param response The HTTP Response we are processing.
* @throws java.lang.Exception
* @return
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
errors=new ActionMessages();
SessionFactory factory=null;
Session session=null;
String SQL_QUERY;
Query query;
DynaValidatorForm dForm=(DynaValidatorForm)form;
//get file name
FormFile myFile=(FormFile)dForm.get("theFile");
String fileName=myFile.getFileName();
int fileSize=myFile.getFileSize();
byte[] data=myFile.getFileData();
if(myFile.getContentType().equals("application/msword")){
System.out.println("Valid Micrsoft Word file");
try{
factory=(SessionFactory)servlet.getServletContext().getAttribute(HibernatePlugin.KEY_NAME);
session=factory.openSession();
Transaction transaction=session.beginTransaction();
//get the server upload directory real path
String filePath=getServlet().getServletContext().getRealPath("/");
//save file on the server
if(!fileName.equals("")){
System.out.println("Server path:= "+filePath);
//create file
File fileToCreate=new File(filePath,fileName);
//if file does not exist create the file
if(!fileToCreate.exists()){
FileOutputStream fileOutputStream=new FileOutputStream(fileToCreate);
fileOutputStream.write(myFile.getFileData());
fileOutputStream.flush();
fileOutputStream.close();
//get form information
String title1=(String)dForm.get("title1");
String firstname1=(String)dForm.get("firstname1");
String lastname1=(String)dForm.get("lastname1");
String title2=(String)dForm.get("title2");
String firstname2=(String)dForm.get("firstname2");
String lastname2=(String)dForm.get("lastname2");
String abstracttitle=(String)dForm.get("abstracttitle");
//get AbstractUserInfoPojo from request
Cookie[] cookies=request.getCookies();
long id=Long.parseLong(cookies[0].getValue());
AbstractUserInfoPojo abstractUserInfoPojo=(AbstractUserInfoPojo)session.get(AbstractUserInfoPojo.class,id);
AbstractDetailsPojo abstractDetailsPojo=new AbstractDetailsPojo();
abstractDetailsPojo.setId(id);
abstractDetailsPojo.setTitle1(title1);
abstractDetailsPojo.setFirstname1(firstname1);
abstractDetailsPojo.setLastname1(lastname1);
abstractDetailsPojo.setTitle2(title2);
abstractDetailsPojo.setFirstname2(firstname2);
abstractDetailsPojo.setLastname2(lastname2);
abstractDetailsPojo.setAbstracttitle(abstracttitle);
abstractDetailsPojo.setAbstractfilename(fileName);
abstractDetailsPojo.setAbstractUserInfoPojo(abstractUserInfoPojo);
abstractUserInfoPojo.setAbstractDetailsPojo(abstractDetailsPojo);
//save information
session.save(abstractDetailsPojo);
session.update(abstractUserInfoPojo);
//commit the changes
transaction.commit();
//pass abstractUserInfoPojo to request
request.setAttribute("abstractUserInfo",abstractUserInfoPojo);
}else{
System.out.println("File already exists");
}catch(IOException ioe){
System.out.println("==========IOException :-=============");
ioe.printStackTrace();
System.out.println("================================================");
}catch(SQLGrammarException sge){
System.out.println("==========SQL Grammer Exception :-=============");
System.out.println("1> SQL Query= "+sge.getSQL());
System.out.println("2> Error Code= "+sge.getErrorCode());
System.out.println("3> SQL State= "+sge.getSQLState());
SQLException sqe=sge.getSQLException();
System.out.println("4> Message= "+sqe.getMessage());
sge.printStackTrace();
System.out.println("================================================");
catch (HibernateException e) {
System.out.print("Hibernate Error");
e.printStackTrace();
} finally {
session.close();
}else{
System.out.println("Not a Valid Micrsoft Word file");
errors.add("Not a Word File",new ActionMessage("errors.abstractfilename"));
saveErrors(request,errors);
if(errors.isEmpty()){
return mapping.findForward(SUCCESS);
return mapping.findForward("failure");
}

Similar Messages

  • Sorry, we couldn't open your file using this feature. Visio Web Access is not available on this site.

    Recently installed Service Pack 1 in SharePoint Server 2013 Farm, post upgrade we are experiencing issue when opening visio documents:
    I am trying to open .vsdx (visio 2013) file but encounter following issue:
    Sorry, we couldn't open your file using this feature. Visio Web Access is not available on this site.
    Under Document library-->Library settings-->Advanced Settings
    Still I cant open file in browser as we always used to. Unfortunately we don't have Visio services in Farm.
    can you share your experiences regarding this issue post Sp1 SharePoint Server 2013.
    Thank You

    Hi Octopus,
    Based on the error message, it seems that the Visio Graphics Service is not started or the Enterprise feature is not enabled.
    I recommend to check the things below:
    Go to Central Administration > System Settings > Manage service on server > check if the Visio Graphics Service is started > then click Application Management > Manage service applications > check if the Visio Graphics Service application
    is created.
    Go to the root site settings page of the site where you got this error, click Site collection features to check if the SharePoint Server Enterprise Site Collection Features is enabled.
    Go to the site settings page of the site where you got this error, click Manage site feature to check if the SharePoint Server Enterprise Site Features is enabled.
    More information about the Visio Graphics Service:
    http://tutorial.programming4.us/windows_server/microsoft-sharepoint-2013---looking-at-visio-services-(part-3)---visio-graphics-service-service-application.aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • CR 2008 dependence files cannot be found during the web setup project build

    Hi,
    Please anyone who knows why dependence files cannot be found?
    CR 2008 dependence files cannot be found during the web setup project build. Nevertheless, this problem did not prevent the project from being installed on the server but I need to know why it couldn't be found? while I'm having the latest service packs installed on my development machine (SP0, SP1, SP-Fix 1, 2, 3 and 4 including ClickOnce and Merge Modules).
    The warning messages that I'm getting during the web setup project build.
    Build started: Project: VMAComponentsLibrary, Configuration: Debug Any CPU
    Starting pre-build validation for project 'VMASetup'
    WARNING: Unable to find module dependency with signature 'MFCLOC.74FD3CE6_2A8D_0E9C_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'ATL.Policy.66332652_9C28_58B1_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'OpenMP.Policy.04B9F3B6_9645_7658_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'MFCLOC.Policy.D2730D3F_3C41_5884_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'ATL.97F81AF1_0E47_DC99_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'CRT.Policy.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'MFC.Policy.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'MFC.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'CRT.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E'
    WARNING: Unable to find module dependency with signature 'OpenMP.1E507087_0819_45E0_FF1F_C8B3B9A1E18E'
    Pre-build validation for project 'VMASetup' completed
    Thank you.

    Hi,
    CR 2008 for VS has a merge module that will be copied to the C:\Program Files\Common Files\Merge Modules for example (CRRuntime_12_1.msm, CRRuntime_12_1_da.msm, CRRuntime_12_1_de.msm, u2026).
    According to CR documentation in order to deploy a project which uses a crystal reports we have to including one or more of these files in the setup project (Merge Modules).
    As I understand these files can help the setup project to know which dependence files are needed for the application to be deployed successfully with CR.
    You mentioned
    (The merge modules for Crystal Reports 2008 SP1 are dependent on the C++ library files from 2005 SP1.) I understood the above message.
    But what did you mean by this? What are the merge modules that you are mentioning hear?
    (I know this isn't what you want to hear but the merge modules just aren't available any other way. Microsoft doesn't have them available for download, and we are not permitted to make them available.)
    Thanks.
    Edited by: Sami Aljafer on Jun 15, 2009 9:37 PM

  • How to write a Xml installation file to build  web installer using IzPack.

    Hai everyone,
    I have got a problem in building a web installer using IzPack.I am getting this exception,when I am compiling my install.xml using a compile tool provided by IzPack soft.Eventhough I have not mentioned "packsinfo.xml" in my Xml installation file.
    Fatal error :
    null\packsinfo.xml (The system cannot find the path specified)
    java.io.FileNotFoundException: null\packsinfo.xml (The system cannot find the path specified)
    What went wrong??
    It is very very urgent. Could anyone tell me how to write a Xml installation file for building web installer,please??
    any help will be highly appreciated....
    Thank you very much in advance

    Hi,
    that is not really a java related question. Have you tried to find some IzPack support forum? I've never heard about it, so I can't help.

  • Pc is not recognising PDF file ( icon ) in emails and to open these it is loading a 3rd party program on the web. I have installed Adobe several times. To open my files I need to drag them to my Adobe program. any ideas??

    Pc is not recognize PDF file ( icon ) in emails and to open these it is loading a 3rd party program on the web. I have installed Adobe several times. To open my files I need to drag them to my Adobe program. any ideas??

    Hi aadeshs
    This problem is on my laptop  running Vista ( Business) on Adobe 10.0  ,   for many years I did NOT have a problem with this . No forum Pages on this. 
    Also i would like to know how screen readers can better interact with PDF as my wife has difficultys on some email attachments on her laptop , again there seems no easy avenue for someone in her situation surfing websites and forums  for Hours maybe ok ok for sighted people, but not if you are blind & use a screenreader.  No Support Help from Adobe is available.
    thanks
    oliver654837

  • Dynamically build web GUI interface

    Hi,
    I am planning to build web GUI interface. Instead of desiginning statically, I want to store GUI meta data in a xml file and build web GUI from the meta data.
    I would like to know if there any java tools available already to build web GUI from meta data.
    THanks
    RR

    Hi,
    I am planning to build web GUI interface. Instead of
    desiginning statically, I want to store GUI meta data
    in a xml file and build web GUI from the meta data.
    I would like to know if there any java tools
    available already to build web GUI from meta data.
    THanks
    RRWell, if you use Swing with a JApplet then you are dynamically creating the user interface. The components are added at runtime, not when you compile the programs. All you need to do is drive which controls to add by some stored data. The same is true for HTML if you generate your pages at runtime (i.e. not just static HTML files).

  • Data Federator - Building Web Services Data Source - Request Guidance

    Hello -
    I am trying to build a web services data source in Data Federator.
    I have:
    1. In ECC, I have created a web service, proxy, port, endpoint, etc. and am testing it with WS Navigator
    2. I have created a Project in Data Federator of the type web service
        a. Here I have assigned the WSDL URL (generated in ECC) as the URL
        b. I have setup web service authentication using the same userid, pwd in the web services definition (note: I have set the
            web services authentication to 'NONE' to avoing authorization issues)\
        c. I am now trying to "Generate Operations"
    I keep getting the error :
    The File Access Parameters are not valid (directory path = <HERE IS THE PATH TO THE WSDL WITH THE HOST/PORT stripped OUT>; file pattern = document
    I believe that it is finding the WSDL, becuase when I change the WSDL from 'Document' to 'RPC', the error changes with the file pattern = rpc.
    What needs to be done to the file access parameter piece.
    PLEASE provide guidance.  Thanks.
    - abhi

    Ananya,
    We are using XI to load data to BI from source system. XI basically uses the same concept as Web Services - Real time data concept via RFC embeded in Proxies.
    I was using web services to test data load - eventually we will use XI.
    KJs blog is pretty good. I was able to get data loaded - after several iterations and several OSS notes. It is still not perfect - there are several manual steps . I am going to pick KJs brain on that.
    We are on SP10 and looks like there are several bugs in RSRDA. Some of these are addressed in SP11 an SP12.
    Some notes to consider are
    0001003963, 0001008276,0001009260 and 001003265.
    Let me know if you have any questions.

  • File Upload in Web Dynpro ABAP not using File Upload UI element

    Hi all ,
    I have searching for a way to upload a file using the file open dialog ( or even by manually specifying the path/file name) without using the file upload UI Element in ABAP web Dynpro . The  File Upload UI element works for smaller files however with large file sizes 64 MB , the system seems to be running of memory (SYSTEM_NO_ROLL) . This is due to a known fact that the UI element makes a duplicate copy of the whole copy while it does the upload.
    I have been looking at the ACFUPDOWNLOAD as a way to solve this problem but cannot seem to figure out how it works , even the sample program  provided  by SAP does not work. I am working with a regular abap server and not kpro( knowledge mananagement provider)  or portal .
    Any help would be greatly appreciated.
    thanks,
    Ali.

    If you are on NetWeaver 7.01, you can try both the ACFUpDownload UI element or try creating your own FileUpload in Adobe Flex with Flash Islands.  ACFUpDownload requires the KPRO by default (which is why the same application isn't working for you), but you can write your own handler class to act as the KPRO receiver.  Here is an eLearning on the topic:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/109b9b52-bc00-2c10-8786-e4c5e96d7e04
    and source code:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70645070-bb00-2c10-f086-f126721acdb4
    If you want an eLearning on the FlashIslands approach, you can find it here as well:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50d42644-91ef-2b10-228c-9e0ae75b274e
    and Source Code:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f044b62c-90ef-2b10-64a6-9ec25294d133
    However in both of these approaches you still have to be careful with how you handle large files.  The problem is that they are processed often a single binary string.  This makes the processing easy, but requires total amount of session memory at least as large as the file being uploaded.  In NetWeaver 7.02 ABAP adds the concept of Streams and Locators to help with the partial processing of large files.  This feature doesn't come until later this year, but if you are interested you can learn about it here:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80f983df-213e-2c10-ba89-b5a12ef178e8

  • Generate txt output using a program unit in web report (OAS 10g)

    Hi Everyone.
    I have a c/s report (6i) which generates a txt file in a program unit using TEXT_IO package. I need to move this report to web (Reports 10g) and publishing it in OAS 10g. I've done that (without the text file generation), I can see the report on the browser in PDF Format and works fine... but, I still have a problem... when I use Text_io package, the c/s version of the report in 10g runs an generates the output.txt file but when I move it to web I got an error in the before report trigger (in which I invoke the program unit sp_generate_txt)
    I looked around for a solution and I just find the usage of webutil package, but as you know, webutil package is only usable in Forms.
    Any Ideas on how can I solve this problem?

    Hello,
    TEXT_IO can be used in Reports deployed on the web.
    The difference with Client /Server is the fact that the file create by TEXT_IO will be created on the "Middle Tier Server" and not on the Client.
    Regards

  • Lightroom 5 - Building Web Gallery hangs and  then fails (worked versions 3, 4 no problems)

    The key and only reason I own and use Lightroom is to create and manage my 50,000+ family photos spanning through 3 centuries.  (1800s, 1900s, 2000s)   
    www.L-Y-N-C-H.com
    With Lightroom 5 the web galleries I have previously created and uploaded and as well the customer user presets I have created OR the standard templates are now ALL hanging and failing during the "Upload Web Photo Gallary after exporting all the images, etc. 
    The app does report the folders and files exist on the server so it must be logging in succesfully and parsing files and directories etc? 
    It then goes off and is looping around "Building Web Photo Gallery" and after about 5 plus minutes it fails with a " an error occured sending the file:  connection to the server failed" 
    Which is probably just because it is broken and then times out because of failure.
    I have checked, triple checked, changed passwords and also later uploaded FTP files and etc and actually am now having to EXPORT the whole gallery locally via LR5 and then FTP by hand the whole thing to the website.
    defeats the whole reason i have been buying this product?
    EVERYTHING works great except Lightroom 5 is now broken for this task to me.  All I did was send money to upgrade and install product and upgrade libraries.......so i can't go back right?
    ~Thomas~

    March 2014: After 31 years of emailing and internet use, our/my entire email system has recently been bombarded by huge volumes of spam, hackers, and robo-mailer daemons so I am taking drastic actions to reduce the 1,000s of unwanted emails we/I get everyday. HostGator (my ISP for email and L-Y-N-C-H.com) SpamBlocker and now BoxTrapper are fully implemented. 
    This process follows 2 paths: 
    1) Wait and allow me additional time on your first use for me to see your email and then add your ISP/URL and email to my accepted senders list.  (whitelist)
    2) Reply to the link below to verify you are not a robomailer or spambot, etc.
    Thomas
    The message you sent requires that you verify that you
    are a real live human being and not a spam source.
    To complete this verification, simply reply to this message and leave
    the subject line intact or click the link below:
    http://www.l-y-n-c-h.com/cgi-sys/bxd.cgi?a=[email protected]&id=cFT4xTcucHoOZdYMPH8W_-139617 7312//www.l-y-n-c-h.com/cgi-sys/bxd.cgi?a=[email protected]&id=cFT4xTcucHoOZdYMPH8W_-1396177312
    The headers of the message sent from your address are shown below:
    From [email protected] Sun Mar 30 06:01:52 2014
    Received: from mail0.phx1.jivehosted.com (204.93.64.116:40517 helo=mx1-out5.phx1.jivehosted.com)
         by gator4123.hostgator.com with esmtps (TLSv1:DHE-RSA-AES256-SHA:256)
         (Exim 4.80.1)
         (envelope-from <[email protected]>)
         id 1WUDUu-00042h-45
         for [email protected]; Sun, 30 Mar 2014 06:01:52 -0500
    Received: from adobe-vm-wa03.m1phx1.jivehosted.com (lbs1.phx1.jivehosted.com 10.160.3.6)
         by mx1-out5.phx1.jivehosted.com (Postfix) with ESMTP id 98739880A16
         for <[email protected]>; Sun, 30 Mar 2014 11:01:45 +0000 (GMT)
    Date: Sun, 30 Mar 2014 04:01:44 -0700

  • Missing files in BusinessObjects Enterprise 11.5/Web Content/bin folder?

    I am getting the following error when I try to start BusinessObjects Enterprise .NET Administration Launchpad.
    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
    Parser Error Message: File or assembly name uitoolkitweb, or one of its dependencies, was not found.
    Source Error:
    Line 193:               <!--  BusinessObjects Enterprise Image Handler  -->
    Line 194:               <add verb="GET" path="EnterpriseImageHandler.aspx" type="CrystalDecisions.Enterprise.WebControls.EnterpriseImageHandler, CrystalDecisions.Enterprise.Web, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
    Line 195:               <add verb="" path=".bouitoolkit" type="com.businessobjects.encyclopedia.uitoolkit.web.ToolkitHttpHandler, uitoolkitweb"/>
    Line 196:          </httpHandlers>
    Line 197:          <!--  HTTP MODULES  -->
    It seems it can't find a file or set of files in ///C:/Program Files/Business Objects/BusinessObjects Enterprise 11.5/Web Content/bin. I looked in this folder and the only file there is WCA_Enterprise.dll.
    This all was working last week and I haven't run any updates so I'm not sure what happened to the files if, in fact, there were any to begin with.
    Is there a simple way to get these files back?
    Thanks,
    Art

    Hello Art,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • What does the "Copy error code files" option do in the build spec properties

    I have the "Copy error code files" checked for my application build specification but when I run my EXE on a different computer and call the simple error handler, I don't get the custom error from my computer's
    C:\Program Files(x86)\National Instruments\LabVIEW 2012\user.lib\errors\User-errors.txt file. Instead I get the "this error code is undefined" explaination.
    I've also tried including that file in the "always included" section of the build spec but that didn't work either. Am I missing something?
    CLD (2014)

    Infinite,
    Check out this link:
    http://www.ni.com/white-paper/3209/en
    Specifically this paragraph:
    "When building an executable (EXE) or shared library (DLL) with the Application Builder, make sure to add the custom error file as a support file (under the Source Files tab). For an executable, the custom error file will be saved in the <executable destination directory>\user.lib\errors directory. For a shared library, the custom error file will be saved in the National Instruments\Shared\LabVIEW Run-Time\<version>\Errors directory. When distributing a shared library, make sure to install the custom error file in this directory."
    James K.
    National Instruments
    Applications Engineer

  • Poonya Script :: The new programming language for Web

    Poony Script is a new programming language for Web, working with proxies between Flash Player and ActionScript 3, and a powerful performance and high flexibility of development, in addition to being free and unrestricted.
    To learn more about the novel technology in between:
    http://www.poonya.com/

    Hello AHernandezIP,
    The "Poony Script" was not made up to leave the AS3, but to expand the capabilities of it in Flash.
    The performance needs been studied carefully, and we get more than 80% of the performance of AS3, and it is still better and better that agent works in the API.
    Yet even this year we will be launching version "Studio" to create files 'swf' directly from the browser.
    We now know that more and more programs are becoming more complex, and the famous "Internet Cloud" is coming increasingly to everyone.
    The need now is to make a compiler that runs directly from the browser without installing anything on your computer.
    Who has vision of the future known as the "Poony Script" will be helpful.
    Thank you!

  • Forms6i Builder Web Preview does nothing

    On W2k and Forms6i builder when I try to run form as web preview nothing happens.
    Run as Cilent/Server works OK.
    Forms server works OK. If I manually enter in browser
    http://myserver/dev60cgi/ifcgi60.exe?form=module1.fmx
    works OK
    What is wrong? How has to the html file look like? (the html file that is used for web preview)?
    Is there someting else to enter in formsweb.cfg or httpd.conf (apache2)?
    Why is oracle documentation so basic, I need examples!

    appletviewer.exe is in path and it seems web preview does not work because it generates error.
    I don't know exact appletviwer sintax, but in any combination (and location of module1.fmx) I get:
    C:\>appletviewer -debug module1
    Initializing jdb...
    Internal exception: java.io.IOException: CreateProcess: C:\orant\jdk\bin\..\bin
    \java_g -debug -Djava.compiler=NONE sun.tools.debug.EmptyApp error=2
    at java.lang.Win32Process.<init>(Compiled Code)
    at java.lang.Runtime.exec(Compiled Code)
    at java.lang.Runtime.exec(Runtime.java:129)
    at sun.tools.debug.RemoteAgent.<init>(RemoteAgent.java:131)
    at sun.tools.debug.RemoteDebugger.<init>(RemoteDebugger.java:62)
    at sun.tools.ttydebug.TTY.<init>(Compiled Code)
    at sun.tools.ttydebug.TTY.main(Compiled Code)
    It may have something with JInitiator. When I type http://myserver/dev60cgi/ifcgi60.exe?form=test.fmx
    in my IE50/W2k browser, browser always crashes with no error message (all other IE5 windows dies too).
    It works with JVM: http://myserver/dev60cgi/ifcgi60.exe?config=ie50native&form=test.fmx
    I've downloaded the leatest JInit version, executed it, and it still crashes.
    Thanks,
    goran

  • Build Web Dynpro project EAR without Developer Studio

    Is it possible to build Web Dynpro project EAR file without Developer Studio? All possible solutions are welcome (console, scripts, java etc.) I want to integrate the project into CI Server and try to find way for automatic build.
    Thanks.

    Yes. Sure. But as i can see, during generation of EAR there are some files like (Project)App.xml, (Project)Component.xml that regenerated each time i create EAR from Developer Studio. I don't know the logic of creation of these files. Is there standard ant build script from SAP which i can use?
    Edited by: Artem Pasko on Dec 26, 2007 2:02 PM

Maybe you are looking for