Problem getOutputStream of Runtime

Hi all,
I'm facing a problem with getOutputStream Following is my code:
try {
String loadCommand = "svnadmin load " + repLocation;
Process loadProcess = runtime.exec(loadCommand);
OutputStream os = loadProcess.getOutputStream();
FileInputStream is = new FileInputStream(restoreLocation);
byte[] buff = new byte[BUFFSIZE];
int len = 0;
while ((len = is.read(buff)) > 0) {
os.write(buff, 0, len);
is.close();
os.close();
} catch (IOException e) {
log.error("IO EXCEPTION" + e.getMessage());
} catch (InterruptedException e) {
log.error("INTERRUPTED EXCEPTION" + e.getMessage());
i'm getting the following exception:
java.io.IOException: The pipe has been ended
     at java.io.FileOutputStream.writeBytes(Native Method)
     at java.io.FileOutputStream.write(Unknown Source)
     at java.io.BufferedOutputStream.flushBuffer(Unknown Source)
     at java.io.BufferedOutputStream.write(Unknown Source)
     at Load.<init>(Load.java:58)
     at Load.main(Load.java:107)
The above code is used to restore my repository.The code work upto some 30 revisions,But after some tiem i get the above exception.
Can anyone please point out my mistake!!
Not much of examples available for getOutpuStream method!!
Thanks
Archana

The dump file is basically the mixture of text headers and binary content, MD5 checksums are used to verify content, but no checksums for the headers (only the lenght is given, so that the headers content doesn't have to be eschaped).
It should be easy to find out in which revision the error occurs (since the svnadmin load outputs the information about which revision is being processed). You can either check it and try to correct manually or maybe examine and point out the error in the dump file.
A possible reason which comes to my mind right now is wrong encoding of some national characters, which causes the properties to be longer than the advertised lenght (since UTF-8 encoded characters take more than 1 byte). We experienced similar error with PVCS import.

Similar Messages

  • Problem in using runtime.exec()

    Hi all,
    I am having a problem with the runtime.exec method.I am trying to execute linux commands using this method.For most of the commands it works fine.But when i tried to change the user with the su command in linux my program hung up.So please help me to get around this.any help would be highly appreciable..
    I am pasting the code..
    <code>
    Process p=null;
    int ch=0;
    try
    System.out.println("Before executing command");
    String unlock_command="sh changeuser.sh";
    p = Runtime.getRuntime().exec(new String[] {"/bin/sh","-c","su tony"});
    InputStreamReader myIStreamReader = new InputStreamReader(p.getInputStream());
    while ((ch = myIStreamReader.read()) != -1)
    System.out.print((char)ch);
    p.waitFor();
    int p_exitvalue = p.exitValue();
    System.out.println("After executing the command and the exit value = "+p_exitvalue);
    p.destroy();
    catch (IOException anIOException)
    System.out.println(anIOException);
    catch(Exception e)
    e.printStackTrace();
    </code>
    Thanks
    HowRYou

    Is it possible that this is a re-post of this thread?
    http://forum.java.sun.com/thread.jspa?threadID=636637
    :^)Might be! What gives you that impression?

  • Problem Connection at Runtime

    Hi everybody,
    Context: Crystal Reports 9, Windows XPPro, SQL Server
    When I change my report to another Datasource at runtime doesn't work I retrive always the same data from the original Datasource.
    Below the code I'm using
        Dim sql As String, ConnectionInfo As CRAXDRT.ConnectionProperties
        Dim server As String, db As String
        sql = "MYRPT.rpt"
        Set CrxReport = CrxApplication.OpenReport(sql)
        Set ConnectionInfo = CrxReport.Database.Tables(1).ConnectionProperties
        ConnectionInfo.DeleteAll
        server = "NEWSERVER"
        db = "NEWDB"
        ConnectionInfo.Add "Provider", "SQLOLEDB"
        ConnectionInfo.Add "Data Source", server
        ConnectionInfo.Add "Initial Catalog", db
        ConnectionInfo.Add "User ID", "X"
        ConnectionInfo.Add "Password", "X"
    Thanks for any help.
    Jaime Zamora

    Post Author: phoenixvn
    CA Forum: .NET
    Thanks for your answers.I have found a way to overcome the problem and here is my code:        private bool ApplyLogOn(string password, ReportDocument reportDocument, string serverName, string userName) {            TableLogOnInfo li;            foreach (Table table in reportDocument.Database.Tables) {                li = (TableLogOnInfo)table.LogOnInfo.Clone();                li.ConnectionInfo.UserID = userName;                li.ConnectionInfo.Password = password;                li.ConnectionInfo.LogonProperties.Set(CONNECTION_URL, CONNECTION_URL_VALUE + serverName);                li.ConnectionInfo.LogonProperties.Set(JDBC_CONNECTION_STRING, JDBC_CONNECTION_STRING_VALUE + serverName);                table.ApplyLogOnInfo(li);                // Tests the connection.                if (!table.TestConnectivity()) {                    return false;                }            }            return true;        }

  • Any problems with labview runtime v 7.1 on one host interacting with lvrte 6.1 on another host?

    Using OPC, UDP ant TCP on the host running lv 7.1 runtime, communicating with a second host running lvrte 6.1. Both hosts communicating with cpfp 2020 and using similar IAK files. Need to know if there are any known problems with this scenario. I cannot convert st this time, the legacy 6.1 side.

    Hello,
    Thank you for contcting National Instruments.
    I am not sure I understand your question. The LabVIEW Run Time Engine (LV RTE)is used when you will be running an executable on a target. If you want to run executables on your cFP-2020 that were built in LV 6.1 and 7.1, you will need to make sure that LV RTE 6.1 and 7.1 are installed on the cFP 2020.
    If you wish to run VIs (not executables) targeted to your cFP-2020, you can use LabVIEW Real-Time 6.1 or 7.1, but not both.
    Let me know if you have further questions.
    Sean C.
    Applications Engineer
    National Instruments

  • UNIX Problem with method Runtime exec(String[],String[],File)

    Hello !!
    i'm french
    scuse my english
    I got a probleme with method exec(String[],String[],File) of Runtime Class
    i don't have any probleme when my program runs on Windows NT but the same program on UNIX doesnt execute my command..
    When i use exec(String[]) methode i dont have this problem ...but i need the second one methode because i have to execute my command in a different directory than the JAVA program.
    I need that results of this command are placed in this drectory so that i can't use an exex() like that :
    exemple with a perl :
    "perl /toto/titi/hello.pl"
    I want to execute this :
    "perl hello.pl" (and hello.pl is placed in /toto/titi)
    Conclusion :
    the exec(String[],String[],File) solution is ok with NT ...
    but with UNIX ????
    Is there other solution ??
    Should i do a "cd" command before my execution ? how can i do this ??
    Thanks !!!!

    Could you post your source code (only relevant part)
    Raghu

  • A problem about ABAP Runtime Error

    Now i am responsible for writing a program, including an internal table, which will store 3 million Datensätze.
    But when ich ran this program, an error happened:
    Runtime Error: TSV_TNEW_PAGE_ALLOC_FAILED
    Short Text:
    No more storage space available for extending an internal table.
    What happened?
    You attempted to extend an internal table, but the required space was not available.
      CALL FUNCTION 'RRX_GRID_CMD_PROCESS'                  "Query ausführen
            EXPORTING  i_handle           = g_handle
                       i_cmdid            = 'STRT'
                       i_iobjnm           = g_iobjnm
            IMPORTING  e_max_x            = g_x
                       e_max_y            = g_y
            TABLES     i_t_ranges         = g_t_ranges
                       e_t_dim            = g_t_dim
                       e_t_mem            = g_t_mem
                       e_t_cel            = g_t_cel
                       c_t_prptys         = g_t_prptys
                       e_t_atr            = g_t_atr
                       e_t_grid           = g_t_grid
                       e_t_ranges         = g_t_ranges
                       e_t_con            = g_t_con
                       e_t_fac            = g_t_fac
            EXCEPTIONS inherited_error    = 1
                       no_record_found    = 2
                       terminated_by_user = 3
                       no_processing      = 4
                       no_change          = 5
                       dbcl_nosupport     = 6
                       no_authorization   = 7
                       x_message          = 8
                       screen_canceled    = 9
                       launch_url         = 10
                       OTHERS             = 11.
      IF sy-subrc ne 0.
        CALL FUNCTION 'DEQUEUE_E_BIW_IOBJ' EXPORTING IOBJNM = 'U_SSTMON'.
        raise QUERY_RUN_ERROR.
      endif.
      if not p_sstmon is initial.
        delete from /bic/pu_sstmon.
      endif.
      CALL FUNCTION 'DEQUEUE_E_BIW_IOBJ' EXPORTING IOBJNM = 'U_SSTMON'.
    Output der Query in schlanke Tabelle mit erstem Feld 'y' umladen...
      loop at g_t_grid into wa_g_t_grid.
        i_grid-y = wa_g_t_grid-y.
        i_grid-x = wa_g_t_grid-x.
        i_grid-data = wa_g_t_grid-data.
        if i_grid-data(1) = m1.                   "Hochkomma entfernen
          shift i_grid-data.
        endif.
    append i_grid .  Error happened hier
      endloop.
      refresh g_t_grid.
      sort i_grid by y x.
    Who could give me some suggestion to solve this problem?
    Thank you in advance.

    thank you for your info.
    I think that using package size is only choice to avoid the huge internal tabel.
    But now i have a question. I must sort this internal table. When i use package size, then i can only sort a part of internal table. This will cause data uncorrect.
      SELECT * FROM zubpgrid INTO TABLE i_grid PACKAGE SIZE 10000.
    Legende des Grids auswerten (1. Zeile)...
    SORT i_grid BY y x.
      LOOP AT i_grid.
        if i_grid-y ne 1.                                   "1. Zeile Ende
          exit.                          "loop at i_grid
        endif.
    leere Titel in der RSRT-Ausgabe fehlen in der int. Tabelle.
    Sie sind Texte zum Vorgängerfeld und werden hier für die Steuerung
    eingefügt, mit Name der Schlüsselfeldes + '_TXT'
        l_v_delta_x = i_grid-x - i_gridlegende-x.
        if l_v_delta_x > 1.                                 "da fehlte was
          concatenate i_gridlegende-data '_TXT' into i_gridlegende-data.
          add 1 to i_gridlegende-x.                         "das fehlende x
          append i_gridlegende.
        endif.
    jetzt das aktuelle Feld aus i_grid...
        i_gridlegende-data = i_grid-data.
        i_gridlegende-x    = i_grid-x.
        append i_gridlegende.
        DELETE i_grid.
      ENDLOOP.
    ENDSELECT
    Who could help me to solve this problem?
    Thanks in advance!

  • Problem Installing VS2010 Runtime x32

    I developed a simple Crystal Report reader under VS 2010 with CR for VS2010. It's in C++.  The app works on the development machine.
    However when I install the runtime on the target machine (x32) it does not install all the crystaldecisions.crystalreports.xxx.dll files into C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet
    The only file in there is Crystaldecisions.Data.AdoDotNetInterop.dll.
    Is there another location where the crystal engine is located?
    I have the lateset runtime 13.0.1 (CRforVS 2010)
    I do notice the dates of the missing files are different. Is there another runtime install that I need for this to work?
    Thanks,
    Martin

    Did you add a Prerequisite of the "Dotnet Framework 4.0 Client Profile?"
    Your setup should include the following Prerequisites
    Microsoft .Net framework 4 Client Profile  x86 and x64
    SAP Crystal Reports Runtime Engine for .NET framework 4.0 (This is the CRforVS_click_once_13_0_1.zip file installed into c:\program files\Microsoft SDK's\Windows\V7.0A\Boostrapper\packages)
    OR
    Microsoft .Net framework 4 Client Profile  x86 and x64
    and add the MergeFile(s) from CRforVS_mergemodules_13_0_1.zip to the Setup project
    you can verify the runtime with the sample u2022NET-CPP-Win2005_CRNET_CR115_view_report.zip
    from http://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Just be sure to put a valid path for a report to open in the code. VS2010 will convert it into a working sample. Just copy the exe and a RPT file to the target to check the CR runtime.
    I had tried it both ways with out any problems. And don't force the setup to copy any CR references, the runtime provides everything.
    Martin

  • Problems with J2SE runtime enviromen 5.0 update 6

    i uninstalled it but it will not leave my add/remove program area
    i tried to reinstall it and i get this:
    the installation of package http://java.sun.com/update/1.5.0/jre-1_5_0_06-windows-j586.xp:failed with-203
    i go to try to remove it from the add/remove programs and i get this
    error applying transforms. verify the specified transform paths are valid
    i can install the 1_5_0_08 and it seams to be working fine for now but im wonder what problems the _06 will cause by sticking around where ever it seams to be hiding

    Updates for J2SE Runtime Environment 5.0 ? Can old updates be REMOVED
    Aug 27, 2006 3:56 PM
    i'm on XP Home SP2 and trying to clean up my computer. I recently installed Internet Explorer 7 Beta. Subsequently i received an error message that lead me to download something from the Java website. I'm not sure it was really necessary but i guess i'll keep it.
    Browsing through Add/Remove Programs i see two Java programs identical except one is version 6 the other is version 8. Both are 119MB. Can i remove/delete version 6 or do all the updates need to remain installed on my computer?
    Thank you,
    [email protected]

  • Problem in executing RunTime.exec() commands

    Hello EveryBody
    I have a problem.i have to zip the photos that r uploaded by the users and sumit it to the lab person.for that i zip these photos and give the lab person to download that zip.
    But the problem is that when ever i zip 30 to 40 photos its work fantastic.but more the 50 photos not get zip.I have used the code as follow.
    // Here tr=ru
    //dest=distinaction path of the file
    // src=source path of the file
    try
         Runtime rt = Runtime.getRuntime();
         String [] cmd={"zip",tr,dest,src};
    Process p2=rt.exec(cmd,null,dir2);//
         p2.waitFor();
    }catch(Exception e2){
    out.println("HOTO EXCEPTION "+e2.toString());
    Since no zip file is created for big size photo and also it not shows any error.can anybody help me it is urgent.
    Thanks a lot
    R

    zip reports the files as it progresses. It this report is too long, zip's outpbut buffer gets filled and if you do not read it from your Java program, zip will block.

  • Very strange problem. Portal runtime errors at various levels.

    Hello Everyone.
    I'm having trouble with some webdynpro applications in my production environment.
    Sometimes, the applications fail to load up generating a Runtime Error error. When I
    look through the logs of the WAS I find the following entries:
    cannot retrieve title from iView pcd:portal_content/com.inelectra.folder.ine/com.inelectra.roles/com.inelectra.autogestion/com.inelectra.Autogestion/com.inelectra.Solicitudes/com.inelectra.anticipoprestaciones/com.inelectra.java_local_Anticipo_Prestaciones_com_inelectra_anticipoprest_Anticipo_Prestacion
    [EXCEPTION]
    javax.naming.NamingException [Root exception is java.lang.NullPointerException]
    at com.sapportals.portal.pcd.gl.JndiProxy.getObjectInstance(JndiProxy.java:51)
    at com.sapportals.portal.pcd.gl.PcdGlContext.getSemanticObject(PcdGlContext.java:913)
    at com.sapportals.portal.pcd.gl.PcdGlContext.getSemanticObject(PcdGlContext.java:690)
    at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:69)
    at com.sapportals.portal.pcd.gl.PcdURLContext.lookup(PcdURLContext.java:238)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at com.sapportals.portal.appintegrator.parameter.ProfileProvider.getTitleForIView(ProfileProvider.java:155)
    at com.sapportals.portal.appintegrator.parameter.ProfileProvider.getTitle(ProfileProvider.java:109)
    at com.sapportals.portal.appintegrator.parameter.ProfileProvider.getParameter(ProfileProvider.java:64)
    at com.sapportals.portal.appintegrator.parameter.ParameterProviderManager.getParameter(ParameterProviderManager.java:51)
    at com.sapportals.portal.appintegrator.layer.AbstractIntegrationLayer.getParameter(AbstractIntegrationLayer.java:174)
    at com.sapportals.portal.appintegrator.layer.AbstractIntegrationLayer.getStringParameter(AbstractIntegrationLayer.java:193)
    at com.sapportals.portal.sapapplication.webdynpro.pagebuilder.TopLayer.processLayer(TopLayer.java:50)
    at com.sapportals.portal.appintegrator.LayerProcessor.processActionPass(LayerProcessor.java:168)
    at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doActionPass(AbstractIntegratorComponent.java:73)
    at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doOnPOMReady(AbstractIntegratorComponent.java:59)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.handleEvent(AbstractPortalComponent.java:396)
    at com.sapportals.portal.prt.pom.ComponentNode.handleEvent(ComponentNode.java:252)
    at com.sapportals.portal.prt.pom.PortalNode.fireEventOnNode(PortalNode.java:369)
    at com.sapportals.portal.prt.pom.PortalNode.processEventQueue(PortalNode.java:800)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:652)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.lang.NullPointerException
    I went ahead and checked the iView config and found that I was getting runtime error when trying to see the configuration of that and several other iViews. I'm getting a runtime error in the following component: com.sap.portal.appdesigner.framework.defaultPcmEditor . Now, this happened with several of the iViews I tried to check, not just with the one that is malfunctioning. I decided to check the pages to see if there was a problem there, and while I didn't get any runtime errors, the list that indicates the contents of the page was completely empty, as in not listing any of the iViews that it should contain, this happened with several of the pages I tried to check.
    Has this happened to anyone before? Do you have any idea what could be causing this? It seems to me as if the production environment got corrupted or something like that.
    Thanks a lot for any help you can provide.
    Francisco.

    Hi,
    1.Restart once and see if teh pages work fine after restarting.
    2.Sometimes when load balancing is not proper,such kind of errors come.
    3.Change the memory settings as per the note 723909.
    Memory settings will vary depending on whether your installtion is on 32 bit or 64 bit.
    You may have to change the following properties in configtool VM settings.
    go to c:/usr/sap/SID/JCxx/j2ee/configtool/configtool.bat
    change teh following properties as given in note <b>723909.</b>
    -<b>Xms
    -Xmx
    -XxNewsize
    -XxMaxNewsize
    -Xxpermsize
    -Xxmaxpermsize</b>.
    restart the engine after doing all these changes.It should work...
    reward points if helpful...........

  • Problem with method Runtime.exec()

    i wrote this simple line, in a servlet:
    Runtime.getRuntime().exec(myCommand);
    if i run this servlet in the OC4j included whith jdeveloper all works well...but if i run the same servlet in the Application server, the command is not executed...why????
    is it a security issue?
    please help me..

    Stefano, can you take a look at the application server log files to see if there is any related information that tells what was happening? What is better, can you try catching the standout and standerr of your command as what is done in the following message?
       Re: javac not found on UNIX AIX runnig Oracle AS 9.0.4
    Please tell me if you have any new findings then.

  • Problem in Attachment @ Runtime

    Hi,
    ####Senario1:
    I started my GP process which has two actions.
    Action1 is done by initiator and Action2 is done by other user.
    @using Attachment Clip
    On Action1, I attached a file at process level  by using attachment clip and completes this step.
    Now, I open the next step i.e. "Action2" with different user.
    At Action2 I could not able to see previously attached file.
    @using Additional Resources Runtime View
    I tried this with runtime view "Additional resources".
    Here it is working fine.
    Can anyone please tell me why this is soo? i have attached file at process level.
    ####Senario2:
    I started my GP process which has two actions.
    Both actions are done by initiator.
    @using Attachment Clip
    attachment is visible in Action2. Working fine.
    @using Additional Resources Runtime View
    attachment is visible in Action2. working fine.
    Why it is working if user is same for both the actions? I have attached file at process level.
    Regards,
    Pratik

    Hi,
    Check this thread as evrything should be here :
    Attachment transfer from EBP V 5.0 to Backend SAP R/3
    Regards,
    Laurent.

  • Problem of using Runtime.exec() to run .bat

    hi,
    i try to rum a .bat in the following way:
    Runtime runtime = Runtime.getRuntime();
    Process proc=runtime.exec("cmd.exe /c c:/test.bat");
    int exitVal=proc.waitFor();
    System.out.println("exitVal: "+exitVal);
    but it doesn' t work...
    ,and i get a exit value '1'
    what dose it mean?

    hi,
    i try to rum a .bat in the following way:
    Runtime runtime = Runtime.getRuntime();
    Process proc=runtime.exec("cmd.exe /c c:/test.bat");if it is already a .bat file, why do you invoke it with cmd.exe?? try running it directly as
    Process proc=runtime.exec("c:/test.bat");

  • Typical problem - Will Java Runtime options help me ?

    Hi,
    We are using JInitiator to launch our application.When launching, this application downloads the ".JAR" files which are in server .I'm able to get the handle of the application and access all the Methods and properties from Visual Basic 6.0. But the problem is that I'm able to call methods which accepts only Integer or String as arguments.
    I'm unable to call the methods which has argument type as Boolean [ Ex : Win.setVisible( Boolean b)  ]. I tried passing all types of VB variables ,But I get "Type Mismatch Error" . I found an application which is similar to mine that uses "-Xbootclasspath" , "-Xrunmicsupp" , "MIC_CLASSES" & "_classload_hook" options to control Java applications by overriding some classes.
    I created a new class with the same name but which has an extra function to accept string as a parameter [ Win.setVisible( String b) ] that enables me to call from VB. I want to Override my application's class with my class file which is in my local system. I want to override it because I'm supposed to change the class file in the server.
    Is it possible to do my task using " java -Xbootclasspath" or something similar to that ? If so, Please tell me the way to do this. Please point me to some sites where in i can find the details about the above options that which the application similar to mine is using. Please help me,I will be very thankful to you guys.Hope to see your replies soon.
    Thanks and Regards,
    Srinivas.

    D:\>javac AnimalTest.java
    .\Cat.java:4: illegal start of expression
    ^You really need to start to understand what you are doing. Look at the error, it even points to what the error is. Look at where this bracket appears in your code and think to yourself "Should that be there or should it be something else" Once you fix that, the other errors will probably disappear.
    Stoopid lag.
    Message was edited by:
    flounder

  • Problem during Forms Runtime

    Hello,
    when i Run my Form my Browser window opens-up & then exits ..<i.e> it Closes down .... And my Java Icon also doesn't appear in my task manager. I face this problem on my laptop.... But on my desktop it runs fine..
    Now the database, the developer suite , the version of IE-6 ..everything is same on my desktop & my laptop
    database = oracle 10g
    developer suite = 10g
    Then what is the problem ... why it doesn't show up my form..??
    Please Help...

    hi
    please uninstall jinitiator and reinstall it and if u have JVM.dll 2.20MB please replace it with the old one.
    i hope it will help u.
    and also try to clean history,delete cookies.
    sarah

Maybe you are looking for

  • My Macbook Pro keeps freezing. Help!

    Hi, I have a macbook pro mid 2010 model running OS X Lion 10.7.4 with 8GB of RAM (3rd party upgrade), 128 SSD. Up until about 3 weeks ago everything was running fine. Then one day the mac just froze and it's been doing it ever since on an irregular b

  • How to delete all favorites in here maps at once?

    How can i delete all favorites in here maps at once? On my Nokia lumnia 920 maps is not working due long synchronisation time. Arnold Solved! Go to Solution.

  • Clarification with .profile and messages files

    I ma new to UNIX administration, and here are some problem that I am facing with the system named "mercury". -In my .profile I do ot understand the following: 'set -o vi' -In the /var/adm/messages there are hundreds lines like these: _june 6 15:23 me

  • Huge chunk of music missing overnight!

    I'm running iTunes 10 on a Windows 7 operating system. Last night we had friends over and played music through our library all afternoon and evening. This morning when I went to turn some music on again, over 2 and half thousand songs are missing fro

  • Table title alignment

    on the ipad version how can i aligned the title. i see on their templates the ability to left center or right alignment. on my tables it is always centered