File Upload works on windows to upload local file,but fails on unix

I have jspx page to upload excel file from my pc and I used jdev 10.3.1.4 works fine on windows, but I deployed to weblogic 10.3. I got java.io.ioexception No such file or directory when I uploaded a excell file
from my pc.Can you some one shed some lights on my head, Thank you.

This is my jsp page:
<html>
<div id =mrf>
<!--<%@ page contentType="text/html;charset=windows-1252"%>-->
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<bean:define id="myUploadForm" name="uploadForm" type="com.presentation.UploadForm" />
<SCRIPT LANGUAGE="JavaScript1.2" TYPE="text/javascript">
function submitAction(action)
     document.uploadForm.actionName.value = action;
     document.uploadForm.submit();
</script>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<html:form method="post" action="/Upload" enctype="multipart/form-data">
<tr>
<td align="left">
<bean:message key="label.upload.file" />
<html:file property="file" size="50"/>
</td>
</tr>
<html:messages id="messageId" message="true" property="uploadMessage">
<td class="message-context" align="left" colspan="7" width="100%">
<bean:write name="messageId"/>
</td>
</html:messages>
<tr>
<td class="page-context" align="left" nowrap>
<P>   <p>
<html:submit styleId="button1"
styleClass="inputbutton">
     <bean:message key="label.upload.button.submit"/>
</html:submit>
</td>
</tr>
<table>
<logic:present name="createMessage">
<h2><font color="red"/><bean:message key="msg.createOrder.errmsg"/></h2>
<logic:iterate id="IR" name="createMessage">
<tr>
<td>
<bean:write name="IR"/>
</td>
</tr>
</logic:iterate>
</logic:present>
</table>
<html:hidden property="actionName" value="start"/>
</html:form>
</table>
</div>
</html>
My java bean (UploadAction.java):
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.upload.FormFile;
public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception
          messages.clear(); //clear all messages and errors
int loaded =0;
List msgList = new ArrayList<String>();
          UploadForm uploadForm = (UploadForm)form;
String actionName = uploadForm.getActionName();
uploadForm.setActionName("");
FormFile file = uploadForm.getFile();
if(actionName.equalsIgnoreCase("create")){
System.out.println("The actionName:" + actionName);
this.executeCreate(mapping,form,request);
// for first time after clicked Upload from main menu.
if(file == null || file.getFileName()== null || file.getFileName().length()== 0){
if(count > 0) {
messages.add("uploadMessage", new ActionMessage("msg.upload.failed"));
saveMessages(request, messages);
count++;
return (mapping.getInputForward());
     //the info in web.xml under <context-param>
String filePath = getServlet().getServletContext().getInitParameter("oracle.adf.view.faces.UPLOAD_TEMP_DIR");
System.out.println("The file name path:" + filePath);
     File folder = new File(filePath); //create the upload folder in client's local PC if not exists
     if(!folder.exists())
     folder.mkdir();
String fileName = file.getFileName();
if(fileName != null || fileName.length() >0){
     System.out.println("The file name:" + file.getFileName()+" has been craeted in:" +filePath);
try { 
     File newFile = new File(filePath, fileName);
     if(!newFile.exists()){
     FileOutputStream fos = new FileOutputStream(newFile);
     fos.write(file.getFileData());
     fos.flush();
     fos.close();
     request.setAttribute("uploadedFilePath",newFile.getAbsoluteFile());
     request.setAttribute("uploadedFileName",newFile.getName());
} catch (IOException e) {
log.info(e.getMessage());
log.error(e.getMessage());
loaded =1; //uploaded successed.
ParseExcelFile(filePath,fileName); ------------- fails here but it works on Windows XP with Jdev 10.1.3.5/OC4J.
saveMessages(request, messages);
return (mapping.getInputForward());
public static void ParseExcelFile(String localdir, String filename) {
FileInputStream fs = null;
try {
String strFile = localdir+filename;
fs = new FileInputStream(new File(strFile));
getContents(fs);
} catch (IOException ie) {
log.error(ie.getMessage(),ie);
} catch (Exception xe) {
log.error(xe.getMessage(),xe);
}finally {
try {
fs.close();
} catch (IOException e) {
log.error(e.getMessage(),e);
This log file from weblogic:
<[ERROR        ] [FINLOGSYS] 1310903306264 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'-com.business.MrfBusinessDelegate.ParseExcelFile(MrfBusinessDelegate.java :753] >>* C:/tmp/MarsUploads/MinMax_R12_template.xls (No such file or directory)java.io.FileNotFoundException: C:/tmp/MarsUploads/MinMax_R12_template.xls (No such file or directory)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:106)
at com.cablevision.materialRequest.business.MrfBusinessDelegate.ParseExcelFile(MrfBusinessDelegate.java:750)
at com.cablevision.materialRequest.presentation.UploadAction.execute(UploadAction.java:133)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3241)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
*<<>
Do I missing something ? help

Similar Messages

  • How do i retrieve file vault protected files from an external hard disk that used to be my mbp's hard drive? the hard disk got corrupted and will no longer boot. I put it in an enclosure and attempted to copy my files but failed because of FV encryption.

    This external hard disk used to serve as the main drive of my mbp. It got corrupted and the OSX would no longer load. I upgraded to a 500gb hd and used the old hd as an external drive. I tried to copy my files but i could not access them because of the filevault encryption. 110gb of hd space appears as used which means that my files are still in the drive. Is there a way to retrieve these files? thanks

    According to your post, you're using Leopard, so FileVault only encrypts your user folder (unlike Lion). On the mounted external drive, in your user folder, you should see a file called username.sparsebundle, with username being your user name. Double-click that file to open it and it should prompt you for a password. Type in your password and the file will mount as a volume in Finder. You should be able to copy all of your files over.

  • Problem : App works with Sun App server 8.0 but fails with 8.1

    Hi All
         I am experiencing some strange problem with executing my JSF application with Sun App Server.
         I have an EAR deployed on Sun Application Server 8.0 and 8.1.
         Strangely it works quite fine with 8.0 but fails with 8.1.
         In my JSP page ..I have a dummy component whose getter method is used as a "FormLoad" event of the page.
         <h:form id="imageForm" enctype="multipart/form-data">
         <h:messages showDetail="true" />
         <table width="980" border="1" cellpadding="0" cellspacing="0" bordercolor="#A9B8C2">
              <tr>
    <td>     
                   <h:inputHidden value="#{Screen1.initializeService}"/>
              <h:selectOneListbox styleClass="style2" id="cmbMiddleArea" immediate="true" value="#{Screen1.selectedMiddleArea}">
              <f:selectItems value="#{Screen1.middleAreaList}" />
         </h:selectOneListbox>
         In my backing bean i have ..
         public String getInitializeService() {
              ..... Retrieve all the data from DB to initialize all the components on the JSP page
              .......setMiddleAreaList......
              .......setSelectedMiddleArea.....
              ........set the values of the individal component...
         I am retrieving all the data from DB in this getter method and intializing the components on the JSP page.
         I have also checked the code generated for JSP by both the servers.I am posting the code here for reference although
         i did not find any significant difference between the two...
         For Server 8.0
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{searchBean.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value.reuse(_jspx_th_h_inputHidden_0);
         return false;
         For Server 8.1
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         PageContext pageContext = jspxpage_context;
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value_nobody.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{searchBean.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value_nobody.reuse(_jspx_th_h_inputHidden_0);
         return false;
         Now the actual problem is "getInitializeService" method never gets called when i deploy and run the application on Sun App Server8.1
         However with Sun App Server 8.0 it woeks perfectly fine.
         Can anybody help me in resolving these issues ?
         

    Actually generated JSP code can be referred as ...
    For Server 8.0
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{Screen1.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value.reuse(_jspx_th_h_inputHidden_0);
         return false;
         For Server 8.1
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         PageContext pageContext = jspxpage_context;
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value_nobody.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{Screen1.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value_nobody.reuse(_jspx_th_h_inputHidden_0);
         return false;
         }

  • Photo Stream not working on Windows in a Virtual Machine, but not on my Mac

    Hi there,
    since yesterday I tried to connect to Photo Stream with my Mac, but I can't. It works fine in my Windows 7 Virtual Machine with the iCloud software, it works fine on my iPhone 4S. The iCloud System Status suggests that all services work just fine.
    However, as soon as I try to activate Photo Stream in iPhoto 9.2 (626) (App Store version, confirmed latest version) or Aperture 3.2 (non App Store version, confirmed latest version), I am presented with the message, which roughly translates to "Activating Photostream... iPhoto couldn't connect to Photostream", with an "Abort" button as the only option.
    All other iCloud features work perfectly fine for me. Any suggestiosn?
    Thanks!

    confirm that it is activated in icloud preference pane ( System-Settings ) like this :

  • Performing a mass rename on originals to get rid of backslashes in file names. Worked for most files but failed for some with OSSStatus -43. Can't find any info on error -43. Any ideas?

    I'm moving all my managed files to be referenced so I can access from both Aperture and lightroom. Needed to do a rename on 16,000 files to get rid of backslashes in the file names. Most of the time it worked but for 1093 files it gave OSSStatus -43. I've tried googling the error and got nothing. Any ideas where to begin looking?
    Thanks
    Jim

    How are you renaming the files? In the "File > Relocate original file" dialog panel? Are you using a custom name format?
    Have you checked in Aperture, if the originals, that are giving you the error message, are still inside the Aperture library?

  • DragAcceptFiles Working in Windows 10 TP build 9926 But Not Working In build 10049 and build 10061

    This is a cross post from
    https://social.technet.microsoft.com/Forums/en-US/a63519d4-ba7a-46c1-bb34-ad034b836964/dragacceptfiles-working-in-9926-but-not-working-in-10049-and-10061?forum=WinPreview2014General.  The moderator suggested I post this here:
    My company has a software product that accepts dragged items.  In all versions of Windows from XP through Windows 10 build 9926 that functionality has worked fine.  However, with build 10049 (possibly 10041 which I did not test thoroughly before going
    to 10049) and now 10061 that functionality stopped working.  The application calls DragAcceptFiles to enable drag drop messages.  In addition, either ChangeWindowMessageFilter is called on Vista or ChangeWindowMessageFilterEx is called on Windows
    7 and higher for the messages WM_DROPFILES, WM_COPYDATA, and WM_COPYGLOBALDATA.  This was working fine on Windows 10 build 9926.  Now when I attempt to drag an item to our software product, I get the "Don't" symbol (circle with line through
    it) and no WM_DROPFILES messages are received.  The application is unchanged with only an upgrade to the Windows 10 build performed.  As a sanity check, I created a brand new VM running build 9926 and the functionality worked fine.  I then upgraded
    the VM to 10049 and it stopped working.  The following day I upgraded to 10061 and it is still broken.  Is there are new filter or restriction in place since build 9926 on DragAcceptFiles that would be stopping the traditional drag drop procedure
    from working? This is very frustrating because there is a dearth of information on Windows 10 API changes and since this appears to be some kind of recent change, I am out of ideas of where to look for answers.  I can duplicate this problem on the older
    platforms by simply calling DragAcceptFiles with the second parameter set to false.  In that case, on Windows 7 for example, I will get the "Don't" symbol just I am getting now in the Windows 10 TP with the argument set to true.

    DragAcceptFiles is now working again in 10074 so whatever the problem was, it has been fixed.

  • Scp works when logging with my user id but fails when using another one

    Hello all:
    I wrote a script that uses scp to transfer specific local files to a server. The script takes the user id and password and pass them as scp's parameters for authentication.
    Everything works fine when I uses my own user id to test the script but it fails when I used another id (with ligitimate password) to do the same thing.
    I suspect it's a privilege issue. Both ids belong to the same group. Where should I look to fingure this out?
    Thanks,
    John

    SCP is part of SSH. SSH requires the exchange of authorization keys to prevent man-in-the-middle attacks.
    When you log in the first time you may see a prompt like:
    RSA key fingerprint is 98:2e:d7:e0:de:9f:ac:67:28:d2:42:2e:37:16:58:45.
    Are you sure you want to continue connecting (yes/no)?
    This might be where your script fails. Since it prompts only the first time, you may just have to do one interactive SSH login to create an entry in ~/.ssh/known_hosts
    Or setup User equivalence to omit the exchange of passwords.
    You may find the following interesting:
    Oracle Linux 5 Howto: Installing and using cURL with support for SCP and SFTP
    OL5 Howto: Installing and using cURL with support for SCP and SFTP
    see 3) Set up SSH user equivalence for SCP and SFTP

  • PS opens files but fails to display them

    hi there! ive already done some searching but did not find anyone else having my problem.
    im using vista x64 and PS CS4 (updated). the problem occurs on both 32bit and 64bit versions.
    when i open an image with PS (does not matter which type or which way to open it), PS seems to open the file correctly, but does not display it at all.
    everything looks like the image is opened (f.e. small thumb of it in the layers window and the name of it in the title bar), but where the image should be displayed in fullsize you only see the grey PS background.
    it seems that besides this PS works completely fine. f.e. when i use the paint bucket tool on the grey area in the middle, the layer thumb changes to the color used..
    another strange thing: when i switch to another program and switch back to PS the grey background is gone and instead you see whatever program is beneath PS at that moment.. you can move the PS window and see right trough it, only the PS control windows are still displayed. thats what you see in the attached image: there is no screenshot of my explorer loaded in PS, it should be a picture of keira knightley.
    so far i have already tried to delete the PS settings and reinstall PS but it wont help.
    any help would be very appreciated!
    thanks in advance!
    Message was edited by: flair2k
    [edit] the problem occured all of a sudden. the day before PS worked completely fine.
    I have quite new gfx drivers installed.

    Try resetting your preferences as described in the FAQ.
    http://forums.adobe.com/thread/375776?tstart=0
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.
    A complete uninstall/re-install will not affect the preferences and a corrupt file there may be causing the problem.

  • Porting windows program with winelib - compiles, but fails to link.

    I'm trying to port zCPU emulator . I've got it to build and created object files. Now it doesn't link to its own functions and some wine ones
    Any ideas?
    As you see, I'm using small script for build.
    Here's a package of what I'm building from: http://silentman.org.ua/build.tar.bz2
    [sm@home-sm zcpu_emu_build] LANG="en_US.UTF-8" sh ./build.sh
    zcpu_emu.o: In function `putch(int)':
    zcpu_emu.cpp:(.text+0x20c): undefined reference to `_putch'
    zcpu_emu.o: In function `kbhit()':
    zcpu_emu.cpp:(.text+0x229): undefined reference to `_kbhit'
    zcpu_emu.o: In function `getch()':
    zcpu_emu.cpp:(.text+0x246): undefined reference to `_getch'
    zcpu_emu.o: In function `RunLoop(void*)':
    zcpu_emu.cpp:(.text+0x6ad): undefined reference to `video_event_loop()'
    zcpu_emu.o: In function `PokeVideoDriver(int&, int&)':
    zcpu_emu.cpp:(.text._Z15PokeVideoDriverRiS_[PokeVideoDriver(int&, int&)]+0x58): undefined reference to `con_putch(int)'
    zcpu_emu.cpp:(.text._Z15PokeVideoDriverRiS_[PokeVideoDriver(int&, int&)]+0xef): undefined reference to `video_draw_rectangle(int, int, int, int, unsigned char, unsigned char, unsigned char)'
    zcpu_emu.o: In function `ScratchPort(int, int)':
    zcpu_emu.cpp:(.text._Z11ScratchPortii[ScratchPort(int, int)]+0x39): undefined reference to `WriteToSCSI(int, int, int)'
    zcpu_emu.o: In function `GetPort(int&)':
    zcpu_emu.cpp:(.text._Z7GetPortRi[GetPort(int&)]+0x1d): undefined reference to `ReadFromSCSI()'
    SCSI.o: In function `InitSCSI()':
    SCSI.cpp:(.text+0xe1): undefined reference to `con_write(char const*, ...)'
    SCSI.cpp:(.text+0x198): undefined reference to `con_write(char const*, ...)'
    SCSI.cpp:(.text+0x22a): undefined reference to `con_endl()'
    SCSI.cpp:(.text+0x238): undefined reference to `con_write(char const*, ...)'
    SCSI.cpp:(.text+0x23d): undefined reference to `con_endl()'
    zBIOS.o: In function `DiskIO()':
    zBIOS.cpp:(.text+0x11c): undefined reference to `WriteToSCSI(int, int, int)'
    zBIOS.cpp:(.text+0x13c): undefined reference to `WriteToSCSI(int, int, int)'
    zBIOS.cpp:(.text+0x15d): undefined reference to `WriteToSCSI(int, int, int)'
    zBIOS.cpp:(.text+0x162): undefined reference to `ReadFromSCSI()'
    zBIOS.cpp:(.text+0x194): undefined reference to `WriteToSCSI(int, int, int)'
    zBIOS.cpp:(.text+0x199): undefined reference to `ReadFromSCSI()'
    /usr/lib/wine/libwinecrt0.a(exe_main.o): In function `main':
    exe_main.c:(.text+0x9d): undefined reference to `WinMain'
    collect2: ld returned 1 exit status
    winegcc: g++ failed
    Last edited by SilentMan (2008-06-12 12:54:38)

    Look like it is expecting Conio, which was a MS only console IO API. There are some implementations of Conio for Linux though. It might be worth learning ncurses, to just replace the Conio bits.

  • I can register an OCX file in Windows 7 x64 without incident but with Windows 7 x32 I get a p-up that says "DllRegisterServer failed with error code: 0x80004005. What gives???

    Hey yeah.  not much else to say.  The title says it all.
    I'm trying to register an OCX file that my video editing application requires to work properly.
    I'm using a  Registry (Regsvr32 and Regsvr64) tool to Register DLL/OCX files.  Both bit Registry tools work fine. I can Register any DLL or OCX file with Windows 7 x64 and everything goes smoothly.
    But, when in Windows 7 x32, again, no problem with merging the Regsvr32 tool, but when I go to register the OCX file message says it was loaded but the DllRegisterServer failed with error: 0x80004005.
    Why does everything work in Windows 7 RC 7100 x64 but not in Windows 7 RC 7100 x32???GA P35 DQ6 Mb, Intel Wolfdale 8600 3.33Ghz C2D CPU., 4x2Gb Mushkin DDR2 1066 PC2 8500 Ascents Memory Mods., PNY-nVidia GE Force 8800 GTS (640MB), 4-Western Digital Caviar SATA(2) HDD's (internal), 1 EIDE-USB External; Hauppauge PVR 1600 TV tuner, Dual Monitor: (1) Standard up top, (1) WideScreen below; Altec Lansing Speakers. Here Kitty, Kitty...that's my Kitty Kat, he's a Kat, because he is kat...kat.

    I don't know what happened. 
    My Video Editing software was working fine a few days ago in Windows 7 x64.  Tried using it this morning....couldn't load the .mpg video clip.  Just stood there looking stupid like it does in the 32-bit version of Windows 7.
    I was hoping the x64 version of Windows 7 RC 7100 was going to make a decent run against my XP Pro SP3 setup. When I was able to register the required .ocx file for the video editing application, I thought "cool".  I made a TV recording then used the Video Editor to edit it and it worked fine.  Earlier this morinng I made another TV recording, went to go edit it and the video editing application couldn't load the .mpg file at all.  This problem just annihilated any chance of me ever purchasing Windows 7, 32 or 64-bit.GA P35 DQ6 Mb, Intel Wolfdale 8600 3.33Ghz C2D CPU., 4x2Gb Mushkin DDR2 1066 PC2 8500 Ascents Memory Mods., PNY-nVidia GE Force 8800 GTS (640MB), 4-Western Digital Caviar SATA(2) HDD's (internal), 1 EIDE-USB External; Hauppauge PVR 1600 TV tuner, Dual Monitor: (1) Standard up top, (1) WideScreen below; Altec Lansing Speakers. Here Kitty, Kitty...that's my Kitty Kat, he's a Kat, because he is kat...kat.

  • Sync is not working between windows 7 and windows 8.1

    I have desktop windows7, laptop windows 7 and tablet windows 8.1.
    I installed later 2 last spring. At that time somehow, I managed to sync all 3 devices. (So, all had same bookmarks)
    Now sync works both windows 7 devices very well, but tablet windows 8.1 never sync anymore. Eventually bookmarks are rather different from other 2 devices.
    I tried to fix it, uninstalled / reinstalled firefox on tablet windows8.1, still it's not working.
    All 3 device have latest 37.0.1.
    Is there any way to sync all 3 devices?

    I am getting to know the first part:
    Index of file:///C:/Users/Kotomi/AppData/Roaming/Mozilla/Firefox/Profiles/2787ivm3.default-1430925443062/weave/
    "Up to higher level directory"
    addonsreconciler.json file > open
    {"version":1,"addons":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","guid":"QY2EwltxSXNS","enabled":true,"installed":true,"modified":1430926776849,"type":"theme","scope":4,"foreignInstall":false},"gmp-gmpopenh264":{"id":"gmp-gmpopenh264","enabled":true,"installed":true,"modified":1430926776851,"type":"plugin","scope":4,"foreignInstall":false},"{59f388ba-f292-fa00-7cac-08235bd2d446}":{"id":"{59f388ba-f292-fa00-7cac-08235bd2d446}","enabled":false,"installed":true,"modified":1430926776851,"type":"plugin","scope":8,"foreignInstall":true},"{46202618-7f2d-bec9-10b1-3472a5e6b050}":{"id":"{46202618-7f2d-bec9-10b1-3472a5e6b050}","enabled":false,"installed":true,"modified":1430926776852,"type":"plugin","scope":8,"foreignInstall":true},"{730668d5-a2f3-f44c-d895-50a736def8a1}":{"id":"{730668d5-a2f3-f44c-d895-50a736def8a1}","enabled":false,"installed":true,"modified":1430926776852,"type":"plugin","scope":8,"foreignInstall":true},"{10c68f07-63a6-4653-8f43-9fc763f22443}":{"id":"{10c68f07-63a6-4653-8f43-9fc763f22443}","enabled":false,"installed":true,"modified":1430926776852,"type":"plugin","scope":8,"foreignInstall":true},"{c4a864b7-e629-abfc-d6c1-08fc87dbd92f}":{"id":"{c4a864b7-e629-abfc-d6c1-08fc87dbd92f}","enabled":false,"installed":true,"modified":1430926776852,"type":"plugin","scope":8,"foreignInstall":true},"{250731da-4654-174e-2c42-3f260e9c2831}":{"id":"{250731da-4654-174e-2c42-3f260e9c2831}","enabled":false,"installed":true,"modified":1430926776853,"type":"plugin","scope":8,"foreignInstall":true},"{37a6259c-c0c1-dae2-99a7-866489dff0bd}":{"id":"{37a6259c-c0c1-dae2-99a7-866489dff0bd}","enabled":false,"installed":true,"modified":1430926776853,"type":"plugin","scope":8,"foreignInstall":true},"{67dc65a6-9f89-da33-1f46-b8f5c848fc02}":{"id":"{67dc65a6-9f89-da33-1f46-b8f5c848fc02}","enabled":false,"installed":true,"modified":1430926776853,"type":"plugin","scope":8,"foreignInstall":true},"{36e07069-9a49-6bcb-8be0-b3c94dfe0ad7}":{"id":"{36e07069-9a49-6bcb-8be0-b3c94dfe0ad7}","enabled":true,"installed":true,"modified":1430926776857,"type":"plugin","scope":8,"foreignInstall":true},"{2ee8eaa0-d15e-8fd9-2510-e78297cac20f}":{"id":"{2ee8eaa0-d15e-8fd9-2510-e78297cac20f}","enabled":true,"installed":true,"modified":1430926776858,"type":"plugin","scope":2,"foreignInstall":true}},"changes":[[1430926776849,1,"{972ce4c6-7e08-4474-a285-3208198ce6fd}"],[1430926776851,1,"gmp-gmpopenh264"],[1430926776851,1,"{59f388ba-f292-fa00-7cac-08235bd2d446}"],[1430926776852,1,"{46202618-7f2d-bec9-10b1-3472a5e6b050}"],[1430926776852,1,"{730668d5-a2f3-f44c-d895-50a736def8a1}"],[1430926776852,1,"{10c68f07-63a6-4653-8f43-9fc763f22443}"],[1430926776852,1,"{c4a864b7-e629-abfc-d6c1-08fc87dbd92f}"],[1430926776853,1,"{250731da-4654-174e-2c42-3f260e9c2831}"],[1430926776853,1,"{37a6259c-c0c1-dae2-99a7-866489dff0bd}"],[1430926776853,1,"{67dc65a6-9f89-da33-1f46-b8f5c848fc02}"],[1430926776857,1,"{36e07069-9a49-6bcb-8be0-b3c94dfe0ad7}"],[1430926776858,1,"{2ee8eaa0-d15e-8fd9-2510-e78297cac20f}"]]}
    Is this what you ment???

  • Java mapping in ccBPM works in PI 7.0 but fails in PI 7.1

    Hi guys,
    at the moment we are upgrading form SAP PI 7.0 to SAP PI 7.11.
    In a scenario for processing of incoming orders we use an ccBPM.
    In this ccBPM there is an mapping where the original xml document of the order are combined with some
    additional information form an web service (multi mapping 2 => 1)
    The result of this mapping is processed further to create an sales order in the backend.
    The multi mapping an java mapping is used.
    Now we are testing the scenario with PI 7.11 and it fails at this mapping step.
    in the workflow log following error occurs.
    An exception with the type CX_ST_MATCH_ELEMENT occ urred, but was neither handled locally, nor de
    Message no. W8899
    I tested the same message on out SAP PI 7.0 system and the whole ccBPM works well.
    When I extract the 2 messages from workflow log and paste them into the test tab of the operation mapping of Enterprise Service Builder of SAP PI 7.11, surrounding by the envelope used by multi mappings
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
                   XML MESSAGE 1
       </ns0:Message1>
       <ns0:Message2>
                   XML MESSAGE 2  
       </ns0:Message2>
    </ns0:Messages>
    the mapping works without error, but at runtime it fails, throwing the error mentioned above.
    What could be the reason for this error?
    Does the multi mapping change in PI 7.11 at runtime?
    Could it be a problem parsing the multi message?
    Any help appreciated.
    Kind regards
    Jochen

    Hi Raja,
    thanks for your suggest.
    I know this issue, the java class files are compiled using jdk 1.5.
    We made some more tests.
    e.g. created an dummy ccBPM with two mappings, one two spilt the incoming message in two messages (graphical message mapping) and one to merge this two messages to one message again (java mapping)
    the mapping works at design time on test tab, but fails with the same error at rumtime.
    Also we tested one single operation mapping with this two mappings (split via graphical mapping and merge via java mapping)
    This works also at design time but fails at runtime with a similar error shown in smq2
    The error message is Error ST_MATCH_FAIL occured. P1=element-start P2=M
    we tried to add the whole incoming message to the trace by
    getTrace().addWarning()
    but an trace object is never created in for this step in the workflow log.
    it seem whether you can not add trace messages using the command or that the error occures before this command will be used.
    Kind regards
    Jochen

  • File Adapter: Fixed length file read fails when all data not present

    Hi
    We have a BPEL process that reads fixed length data files. It works fine when all the data elements are available in the file but fails with 'rejected:10002' when even a single data is missing.
    How to handle this situation in BPEL file adapter?
    Are we doing something wrong or is this a normal functionality.
    If yes, then is there any work around for this as this is a very usual business condition which may occur, where all data elements are not mandetory.
    fixedLength
    ==========
    2,3,3,2
    Data - Successful
    ============
    1234567890
    2345678901
    3456789012
    Data - Failed
    ===========
    1234567890
    2345678901
    345678901
    Thanks in advance
    Buddhadev

    Hi Naveen,
          Do check the following things,
    >>Note : I have been asked to give the Transport Protocol as "NFS" (Whether this is the problem???) I have summarized the complete details below. Please help me
           1.If your file resides on your local network/local computer give NFS(Network file system). if your file resides on a FTP location give FTP and also give the FTP log on parameters.
    Additional Parameters
    File_MT.fieldFixedLengths 10,10,5
    File_MT.fieldNames VendorNumber,VendorName,City
    File_MT.fieldSeparator
    File_MT..processFieldNames fromConfiguration 
           2.If this structure does not match with the input file structure the file adapter wont pick up the file. So check for the help document provided by SAP in the following path.
    help.sap.com  --> Documentation  --> SAPNetWeaver --> SAPNetWeaver '04 --> English --> process integration --> SAP Exchange Infrastructure --> connectivity --> Adapters --> File Adapter
           Your file contains three records
    V123456789 A123456789 Bosto
    V234567890 B123456789 Atlan
    V334587900 C123456789 Austi
    You have mentioned the fieldSeperator as space but there is no File_MT.endSeparator '/n'  which differentiates between each and every row (record).
            Parameters for Record set Structures mentioned in the sender adapter configuration does not match with the actual file structure .
            Try giving exact structures in the configuration of sender file adapter.
    regards,
    Aravindh.

  • I cannot download the doc files which I have uploaded to Dropbox. I am using Microsoft Works in Windows 7.

    I cannot download the doc files which I have uploaded to Dropbox. I am using Microsoft Works in Windows 7.
    I am trying to download them to my ipad.

    You need Dropbox on your iPad. Open the document in Dropbox on iPad, and using the icon on the far right (down arrow) Open In ...

  • Is it possible  upload local file to internal table in background mode?

    Hi, all,
    Is it possbile to  upload local file(not server file) to internal table in background mode.
    If possbile ,please tell me detail . Thanks in advance.
    Regards,
    Lily

    Hello,
    This is possible.
    If you report has to be executed in background using schedule Job. Then the file path should be constant and it can be hard coded in the report itself while populationg the internal table.
    Then create a variant for your report and use that variant in the job.
    This will solve your problem I guess.
    Regards
    Arindam

Maybe you are looking for