Deployment problem in debug mode

Hi,
I developed a project in XP and moved to a laptop with vista. I am able to run (except *.exe) all files but I am not able run debug mode. I get the error:
Deploying application in domain failed; could not rename C:\program files\sun\creator2_1\sunappserver8\domains\creator\generated\xml\j2ee-modules\PAIRS5_
Log Level:     SEVERE
Logger:     javax.enterprise.system.tools.deployment
Name-Value Pairs:     _ThreadID=13;
Record Number:     2093
Message ID:     Exception occured in J2EEC Phase com.sun.enterprise.deployment.backend.IASDeploymentException
Complete Message
Could not rename C:\Program Files\Sun\Creator2_1\SunAppServer8\domains\creator\generated\jsp\j2ee-modules\PAIRS5 to C:\Program Files\Sun\Creator2_1\SunAppServer8\domains\creator\generated\jsp\j2ee-modules\PAIRS5_old
     at com.sun.enterprise.deployment.backend.ModuleDeployer.setOldDirs(ModuleDeployer.java:764)
     at com.sun.enterprise.deployment.backend.WebModuleDeployer.preRedeploy(WebModuleDeployer.java:241)
     at com.sun.enterprise.deployment.backend.ModuleDeployer.doRequestFinish(ModuleDeployer.java:158)
     at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:148)
     at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:71)
     at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:639)
     at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:188)
     at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:520)
     at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:139)
     at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:168)
Is there any error I can fix??? Please help...
dr.am.mohan rao

Were you able to fix this? I am having the same issue.

Similar Messages

  • Problem with Debug mode and SLD

    Using the config tool, we have turned the Debuggable flag to 'yes' and set the Debug mode to OFF.   Now from the studio, when I enable debugging for the process, the server0 stops successfully and restarts successfully. However, during the restart, the SLD service errors out and does not get started. It encounters the following exception. I can verify the error in std_server0.out
    With erred SLD service, when I try to deploy and run the webdynpro application from studio, the deploy fails with the same exception.
    We tried all kinds of restart (of the engine\server instance), debuggable and debug mode setting permutations, but not successfull.  (debug port is 50021)
    We are having remote debug server setup (not local).
    Does anybody have any suggestions???
    The exception we get is:
    Finished with warnings: development component 'CreateOrder'/'local'/'LOKAL'/'0.2007.11.26.14.33.54':Caught exception during application startup from SAP J2EE Engine's deploy service:java.rmi.RemoteException: Error occurred while starting application local/CreateOrder and wait. Reason: Clusterwide execption: server ID 3775750:<Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='com.sap.engine.services.deploy.container.DeploymentException: <Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='Implied start failed for dependency :local/CreateOrder -> service:sld', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key Implied start failed for dependency :local/CreateOrder -> service:sld', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key com.sap.engine.services.deploy.container.DeploymentException: <Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='Implied start failed for dependency :local/CreateOrder -> service:sld', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key Implied start failed for dependency :local/CreateOrder -> service:sld (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)

    Hi Michael,
    one way is to enhance the server go.bat with debug parameters. Under c:\usr\sap\<SID>\j2ee\<INSTANCE>\cluster\server\go.bat define the following params
    set DEBUG_PORT=5000
    set DEBUG_PARAMS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=
    and add both params to the java arguments (e.g. behind the -classpath): %DEBUG_PARAMS%%DEBUG_PORT%.
    Regards,
    Stefan

  • Problems in Debug mode

    Hi,
    I like Raptor a lot, but I can't seem to get the debugger working properly.
    I created a tiny sample proc which I include below.
    I set a breakpoint on the SELECT statement.
    I hit the debug button and the Debug PL/SQL window appears, and so I click OK to debug.
    The SELECT statement is highlighted so all looks good as I seem to have hit the breakpoint, but...
    The mouse is stuck in hourglass mode and I've lost the debug menu as all entries are greyed out. I can't step through or watch items.
    Once the debug process is complete the mouse still is in hourglass mode and I can't use it at all. The keyboard is still usable but the menus aren't in the right context either and I'm stuck. Occasionally, after some minutes, I can resume and end the session using the keyboard, but from there I just have to close down Raptor as the mouse is pretty much useless and I can't fully tab around all the sub-panes.
    I can't see a similar issue in the forum or elsewhere for that matter. I get the same issue regardless of proc as I've tried others also.
    This is what I ran:
    CREATE OR REPLACE
    PROCEDURE aatest IS
    l_date DATE;
    BEGIN
    SELECT SYSDATE INTO l_date FROM DUAL;
    DBMS_OUTPUT.PUT_LINE(TO_DATE(l_date, 'DD-MON-YY HH:MI:SS'));
    END aatest;
    Thanks in advance,
    Garrett

    Set your breakpoints, then hit "Compile with Debug" (of the 4 buttons it is the one furthest to the right, with the Black arrow).
    The procedure appears to be running / paused, as what you would see when the procedure is finished is the following:
    Process exited.
    Disconnecting from the database XE as <username>.
    Debugger disconnected from database.
    Do a test function like:
    CREATE OR REPLACE
    function f_test_debugger(
    i_arg1 varchar2,
    i_arg2 varchar2
    ) return varchar2 is
    v_retn varchar2(200);
    begin
    v_retn := i_arg1 || ' ' || i_arg2;
    DBMS_OUTPUT.PUT_LINE('i_arg1 = ' || i_arg1);
    DBMS_OUTPUT.PUT_LINE('i_arg2 = ' || i_arg2);
    DBMS_OUTPUT.PUT_LINE('v_retn = ' || v_retn);
    return v_retn;
    end f_test_debugger;
    Without breakpoints, here is the series of events:
    Compile with debug
    Debug (ladybug button)
    A box should popup with all of the input variables defined as:
    i_arg1 := NULL;
    i_arg2 := NULL;
    You should replace these values with the text values. I have used:
    i_arg1 := 'first';
    i_arg2 := 'second';
    Then click ok in that box and the process should run through and in the logging window you should see something like this (note that the 3 bolded lines are programmed output from the DBMS_OUTPUT lines in the function; the rest is all system generated):
    Connecting to the database <sid> as <username>.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '<ip address>', '1547' )
    Debugger accepted connection from database on port 1547.
    Processing 59 classes that have already been prepared...
    Finished processing prepared classes.
    i_arg1 = first
    i_arg2 = second
    v_retn = first second
    v_Return = first second
    Process exited.
    Disconnecting from the database <sid> as <username>.
    Debugger disconnected from database.

  • Creator Hangs in debug mode

    I am testing a five page web page that connects to an SQL Server database.
    I am experiencing severe memory problems in debug mode. The application hangs after stepping through a some code.
    The debug screen goes all grey and I cannot get it to return to normal (see the code).
    I am developing on a windows XP platform and I am using Netscape 7.1 as my browser.

    Not sure why you are getting the error . I just checked the link, as well as the download tab, and it works for me. Could you please try the link again.
    Hot Fix 2: You can download it from update center: Launch the IDE and connect to the Update Center .
    See how to connect to update center from this link:
    http://developers.sun.com/jscreator/downloads/updates/index.jsp

  • Problem viewing cursor value in debug mode

    Hi eveybody!
    I'm French and new here.
    I know some topics deal with my subject but I don't really understand.
    Here's my environnement :
    Win2000 / ORA 9iR2 / SQL DEVELOPPER 1.0.0.15.57
    As some people say when i'm in debug mode (after compiling my procedure PL/SQL for debug) I can't see any value of my cursors !
    Ex :
    CURSOR cur IS
    SELECT COL1, COL2
    FROM TABLE1;
    v_cur cur%ROWTYPE;
    For v_cur in cur
    Loop
    If v_cur.COL1 = 'toto' then
    'do something' ;
    End if;
    End Loop;
    When I run this step by step in debug mode I can't see the data of my cursor in the data or smartdata pane.
    The values of my cursor is allways null !
    I guess I'm not the only one to see that bug.
    My question is should I wait a new release of sql developer or is there any solution for this problem?
    Anyway I want to congratulate the developers team who create this tool which is fabulous! It makes me forget TOAD and it's totally free.
    Thanks a lot for this job.
    Greg

    Here is a piece of code I use:
    CREATE OR REPLACE PROCEDURE sm_list AS CURSOR emp_cursor IS
    SELECT d.department_name,
    e.last_name
    FROM departments d,
    employees e
    WHERE d.department_id = e.department_id;
    emp_record emp_cursor % rowtype;
    BEGIN
    FOR emp_record IN emp_cursor
    LOOP
    DBMS_OUTPUT.PUT_LINE(emp_record.last_name);
    END LOOP;
    END;
    With this example, I agree, the smart data is null. Logged a bug. However, note that I do see values in the data tab and can modify and watch these values.
    When using cursors I've been looping and then fetching into cursor records, i.e.:
    FETCH emp_cursor
    INTO emp_record;
    emp_tab(i) := emp_record;
    and then the values display in the Smart data and data tabs.
    Sue

  • Problem get the parameter ID using debug mode

    Hi Expert,
    I got problem for tracking the problem which is using GET PARAMETER ID under debug mode. the scenario is like that, I go and run the BDC transaction and want to use GET PARAMETER ID 'KUN' to populate data customer code to some variable. but when I using the debug mode sometimes my variable is came from GET PARAMETER ID was missing. but if running not using the debug mode all is populated perfectly. is there any SAP notes or code I can use to continue my debuging instead using GET PARAMETER ID ? Thank you
    Regards,
    Koho koho

    Hi BreakPoint,
    Thanks for the replay, I really don't know and how to configure again. this morning I am running upload program using the BDC using the get paramater ID from posting FB03. I loading 10 documents upload. and 2 is failed to take the "get parameter id 'BLN' field var1" and var1 is blank, the other 8 document posted I can get the paramter id as well. any solution for this case. Thanks
    Regards,
    Koho koho

  • Problem connecting to Realtime system to download or run in debug mode

    I have updated my LabWindows\CVI to 2013. I have a PXI system with a PXIe-8101 controller. The PXIe-controller has a real-time OS installed. I have been programming this system for a while now so I am not exactly a novice anymore. The first time I tried to install the program to my real-time target I got a message which said "LabWindows/CVI cannot connect to the real-time target." It also said " .... The version of the LabWindows/CVI Run-Time Engine for RT must be compatible with the version of the LabWindows/CVI development environment."
    So I figured that was the problem. My next step was to go into MAX and sure enough was getting all sorts of flags and errors when I used the real-time software Wizard in MAX by right clicking on the Remote software and clicking on Add/Remove Software. And like I suspected there were several flags indicating a software differences. My next step was to update the software in my real-time target to resolve the problem. After I did that I compiled the code and installed it on my remote system.  Everything seemed OK.
    The following Monday I restarted LabWindows/CVI and made a couple of changes and tried to build and install to my real-time target. I get that same message as in the first paragraph. So I thought I might not have real-time system  booted up correctly or something like that so I checked all of that and it looked OK. Next I opened up MAX and it could see my real-time target just fine.
    When I had my LabWindows/CVI 2012 I did not have this problem. I think maybe there is some incompatibliity issues with my LabWindows 2013; has anyone had a similar problem? I am able to get around the problem by building the release version and copying it to the PXI with CuteFTP V9.0 but I cannot do run my program in debug mode with my LabWindows/CVI and if you may have noticed I have other problems which is in another post I put in next week. I am hoping the problems are connected and I can kill two birds with one stone LOL.
    I appreciate any suggestions.
    Thanks,
    Don Pearce

    Hello,
    I want to make sure I'm understanding what you are doing in the LabVIEW project. According to the Getting Started with the LabWindows /CVI Real-Time Module manual, these are the steps to install software on the RT target:
    1. Launch MAX.
    2. Find and expand your RT target under the Remote Systems item in the MAX configuration tree, right-click Software, and select Add/Remove Software. When you select Add/Remove Software, MAX launches the LabVIEW Real-Time Software Wizard. This displays all the National Instruments software and drivers installed on the host computer that you can install on a selected RT target.
    3. Select the software you want to install on the RT target, click the icon next to the software, and select Install the feature.
    You need to install LabWindows/CVI Run-Time Engine for RT to add support for LabWindows/CVI RT applications on the RT target. This component is required for all LabWindows/CVI RT applications.
    The forum post here solved this same issue by installing missing drivers based on this KnowledgeBase article.
    Also, LabWindows/CVI 2013 SP1 has been released. Service Pack 1 (SP1) has many  useful bug fixes (listed here), so I recommend upgrading to LabWindows/CVI 2013 SP1 if possible.
    Taylor B.
    National Instruments

  • Runing In debug mode problem

    i m using Form9i suite , oracle 9i running under VMware machine where i installed windows XP service pack 3 with internet explorer version 8 IE8.
    i have a problem when i run my Fmb form in debug mode it is not loaded, even though if i run it normally my fmb form loaded well .
    any suggestion
    thank you
    Edited by: user12923153 on Nov 11, 2012 6:37 AM

    Hi
    But the program to print the advice is set in the payment?
    What can you see in Print Out/Data Medium section?
    You need to considere F110 runs the print program in backgroud mode, that means a job is scheduled, so try to checl the job too
    Max

  • Problem when trying to run in "Debug Mode" in JDeveloper9i

    Hello All ,
    i have a problem to debug my application using
    JDeveloper9i .
    i get an error: "fdebug.exe could not be read "
    and Application error box appears .
    i did the following steps in the instalation:
    1) i installed the JDK 1.3
    2) installed the Jdev9i from base installation zip
    3) In <jdeveloper_root>\jdev\bin\ i executed the command
    InstallOJVM.bat c:\jdk1.3
    and get message:
    "InstallOJVM successfully"
    4) i wrote simple program and put a breakpoint ,
    when i'm trying to run the program in "Debug mode" i get an error box message
    "fdebug.exe Application Error"
    The memory instruction could not be read
    please help ,me to fix the problem i need the debuger option .
    thanks in advance.

    Do you have the file c:\jdk1.3\jre\bin\fdebug.exe, if you don't, you
    need it. Look for the file in the base install directory, it should be
    there and then copy it to the location above.
    Michel

  • Debug mode problem.

    Hi Expert,
    There is sap script form attached to the particular payment advice. When i am running trasanction F110, it contains the particular zprogram assigned to that payment method. I actually want to debug this and want to see how program accesses zprogram and zform but despite of breakpoint in the program and script it don't stop to the zprogram or from. Could you please guide me how i can reach to the zprogram and zscript in debug mode ?...Output is getting generated with the help of zprogram and zform.
    Thanks.

    Hi
    But the program to print the advice is set in the payment?
    What can you see in Print Out/Data Medium section?
    You need to considere F110 runs the print program in backgroud mode, that means a job is scheduled, so try to checl the job too
    Max

  • How to start weblogic in debug mode from BEA WebLogic Eclipse plugin

    I have a problem making weblogic work with eclipse3.1. I am using a BEA WebLogic plugin to handle weblogic (start/stop) from eclipse. However I want to debug my application and I am unable to figure out a way to start my weblogic in debug mode like we do in WSAD. I tried using some other plugins also but no luck. Please suggest me a plugin to handle this or any other way of debugging my application from eclipse. I am using weblogic 8.1.

    Hi,
    Dev Environment
    weblogic eclipse plugin 2.0 beta
    weblogic server 8.1
    eclipse 3.1.1
    Created a server that i would like to deploy my EJB so that i can put break points on my EJB in eclipse.
    How do i do it?
    I managed to deploy an ear (containing the ejb) directly to the weblogic installed folder and it deployed the ejb. But the breakpoint set in eclipse is not triggered. Of course in this case as weblogic server is running the .ear file deployed manually in the file system.
    Any help is appreciated.
    Mel

  • Deserialization works only in debug mode

    When I try to deserialize an XML document (defined via File-Connection) it works fine in debug mode but I get an error in non-debug-mode. What's the problem here?
    Error: 2011-12-29 19:31:40.25
    Code: 0x00000001
    Source: Read data from SAP
    Description: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: There is an error in X
    ML document (0, 0). ---> System.TypeInitializationException: The type initializer for 'Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1' threw an exception
    . ---> System.NullReferenceException: Object reference not set to an instance of an object.
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1..cctor()
    --- End of inner exception stack trace ---
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1..ctor()
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializerContract.get_Reader()
    at System.Xml.Serialization.TempAssembly.InvokeReader(XmlMapping mapping, XmlReader xmlReader, XmlDeserializationEvents events, String encodingStyle)
    at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
    --- End of inner exception stack trace ---
    at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
    at System.Xml.Serialization.XmlSerializer.Deserialize(TextReader textReader)

    Yes, there is a potential for a bug. Thus, feel free to log it in
    MS Connect.
    You need to deploy it to the GAC, too. I will better point you to a blog post that covers this: http://www.hoekstra.co.uk/index.php/software-mainmenu-36/ssis-mainmenu-75/73-create-and-use-a-c-assembly-for-ssis.html?start=1
    I suggest when you go live you create a script that will take care of all, but it is not too too laborious.
    Arthur My Blog
    Are you 100% sure? Because I can see that SSIS seeks for the dll in ...DTS/binn. So I see no need to pollute the GAC with this dll.
    My dll is not deployed into the GAC and when I remove it, it will no longer work. I think it works in DTS/binn because the DTExec.exe is located there?
    LOG: This bind starts in default load context.
    LOG: Using application configuration file: c:\Program Files\Microsoft SQL Server\100\DTS\binn\DTExec.exe.Config
    LOG: Using machine configuration file from c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
    LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1.DLL.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1/ClassLibrary1.DLL.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1.EXE.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1/ClassLibrary1.EXE.

  • App working fine in debug mode but not otherwise on iPad

    Hi everyone,
    Sorry if I am putting this question in wrong section, this seems to be the most relative location to ask question.
    My Problem:
    I have developed an app using Adobe Air and starling. App is working perfectly when I run on Flash Builder (debug and run both). When deploying on iPad at one particular location, it is either not getting TouchPhase.ENDED or some code is crashing.
    I tried to debug while running app on iPad and its working absolutely fine. But when I create the ipa file normally i.e. without debug mode, at a particular location code is not working.
    Please help me out in this regard, asap. I need to deliver it.
    Please!!!!
    Thanks
    Waqar Iqbal

    Hi,
    I know one case, but don't know if have a solution.
    See Registering Add-on in 2004
    Best Regards.

  • Android Emulator get hangs on starting the application in debug Mode

    I have deployed the application on Android Emulator in debug mode but on starting the app it get hangs. I have set the Java Debugging to true in the cvm.properties file and also started Java debugger from JDev before launching the ADF Mobile app on android emulator. Can any body help me to figure out the problem why the emulator gets hang on starting the application in debug Mode.

    Hi, after setting the debugging = true, you would also need to start the JDeveloper debugger and configure it for remote debugging. Shay has a blog article that should help.
    The emulator is hung while trying to connect to the JDeveloper debugger.
    https://blogs.oracle.com/shay/entry/debugging_adf_mobile_apps_on
    Thanks,
    Joe Huang

  • Server Error Running in Debug Mode

    Has anyone been able to run EA in debugging mode with the J2EE 1.4 application server?
    When I try, here's what happens:
    1. The server is stopped in preparation to run in debug mode
    2. The server restarts
    3. Before deployment the server dies with this error message:
    java.io.IOException. Unable to connect to admin-server ...
    This is for port localhost:4848

    There are a couple problems with debugging in EA:
    1) The debug port may be in use. Sounds like what you may be seeing. Assuming you're running on Windows, run "netstat -ano" to find out if port 1044 is in use. That's the debug port.. Kill the process that is using the port. This may require a reboot if the owner is System.
    2) The second problem is that on Windows, you may only be able to debug once without restarting the server. Non-Windows doesn't have this problem. The plan is to fix this in a future release.

Maybe you are looking for

  • The AirPlay is not working at Apple TV 3rd gen

    I got this Apple TV at last month, and the AirPlay is working great. And today I try to use AirPlay on my iPhone 5, as usually, and I can't find the AirPlay button in the Control Center. I reboot both of my iPhone and Apple TV but the problem still h

  • Internet access for clients

    GuysNeed some assistance on providing internet access at a branch site for clients. Any thoughts and suggestions welcome and appreciatedWe have a number of branch offices connected over ISP managed MPLS network, any-2-any. I am looking at implementin

  • Log File Error when open MDS_Log from MDM Console

    Hi Experts, I am facing a problem when I tried to open MDS_Log file from MDM Console. The error message was showing as below: Log File Error Problems in the log file prevent Console from displaying its contents. To view log contents, open the log fil

  • Change Default Application level setting for checkbox value from "On"/"Off" to 1/0

    Hi,   I am creating livecycle designer forms. In that the checkboxes take a default value of "On'/"Off" and I have to change it to 1 and 0 in all the boxes on layout checkbox property. In livecycle i have to change it in Object-Binding tab.   Is ther

  • Search for Main Group Not all Subgroup

    Search for Main Group Not all Subgroup My illustrator project may have 5 main groups, which may all included 100 subgroups. I would like to search for main group without having to search through all subgroup, because too many and too long for the scr