Starting BIP Server in background mode on Windows

Hi,
When we start the standalone BIP Server inside an OC4J container on Windows, a command prompt remains open. If you close the command prompt the BIP Server process dies.
Is there a way to start the BIP Server in a background mode ?
Please advise.
Thanks,
Chetan

Thanks all for your reply.
I used the javaservice to create a windows service.
javaservice -install "OC4J" "C:\Program Files\Java\jdk1.5.0_07\jre\bin\client\jvm.dll" -XX:MaxPermSize=128m -Xmx512m "-Djava.class.path=C:\oracle\OracleBIPublisher\oc4j_bi\j2ee\home\oc4j.jar" -start oracle.oc4j.loader.boot.BootStrap -description "Oracle BI Publisher OC4J Service"

Similar Messages

  • Download DMS attachment into an application server in background mode?

    Is it possible to download DMS attachment into an application server in background mode?
    Currently I am using the following code but does not work in background mode
      CALL FUNCTION 'CVAPI_DOC_GETDETAIL'
        EXPORTING
          pf_dokar     = 'Z06'
          pf_doknr     = gs_drad-doknr
          pf_dokvr     = gs_drad-dokvr
          pf_doktl      = gs_drad-doktl
          pf_read_kpro = 'X'
        TABLES
          pt_files      = lt_file
        EXCEPTIONS
          not_found    = 1
          no_auth       = 2
          error            = 3
          OTHERS       = 4.
    *Copy Attachment from DMS to PC File
      CALL FUNCTION 'CVAPI_DOC_VIEW'
        EXPORTING
          pf_dokar      = 'Z06'
          pf_doknr      = gs_drad-doknr
          pf_dokvr       = gs_drad-dokvr
          pf_doktl          = gs_drad-doktl
          pf_appl_start = ' '
          pf_apptp      = '1'
          pf_filename   = 'C:\TEMP\ZLINK.BMP'
          ps_file       = ls_file
        IMPORTING
          pfx_file      = l_pfx_file
        EXCEPTIONS
          OTHERS        = 0.
    *Load BMP into SE78
      PERFORM import_bitmap_bds
        IN PROGRAM saplstxbitmaps
        USING l_filename             "Local File for Upload/Download
                   l_bmpnam             "Name
                  'GRAPHICS'           "Application Object
                  'BMAP'                   "ID
                  'BCOL'                   "Color
                  'BMP'                     "Extension
                  'ZLINK PICTURE'   "Title
                  space          "Resides in Printer Memory in Print Request
                 'X'                 "Reserve Height of Graphic Automatically
                 space           "Graphic Storage: Compressed Bitmaps
        CHANGING l_docid
               l_wf_res.   "Graphic Resolution
    Thanks

    Hi!
    You didn't find answer for this, because it is not possible. If you run your program in background, it is running on the server, and does not have any connection to your local machine. That's why you can't upload/download in background mode.
    You might try to address somehow your local PC, with its IP or MAC address, but I don't think does this task worth so much time.
    Run your program in online mode, or if you want to run it in background, then upload your file into the SAP server.
    Regards
    Tamá

  • Starting the server in Japanese mode after deployment in english mode.

    Hi,
    I have a problem
    We are developing some system for Japanese clients.
    Now problem is that we need to deploy all on their server which shows every hting
    in Japanese. Its going to be really very difficult for us.
    Is there any key or property in weblogic server by changing that we can change
    the language (english-->japanese)
    Actually what I wanted was first to run the server in English mode. deploy each
    and every thing sucessfuly.
    Then stop the server.
    Change that flag or whatever to use japanese character set.
    Start the server again so that it run in japanese language and having every thing
    already deployed.
    Is it possible approach?
    Any other suggestions are also most welcome.
    Thanks and Regards
    Pavitra

    Hi,
    You would have to use the below command to give the root directory to start the server in MSI mode
    -Dweblogic.RootDirectory=path
    Example:
    java -Dweblogic.RootDirectory=c:\MyServerRootDirectory weblogic.ServerTo get more information on this you can check the below link
    Topic: Starting a Managed Server in MSI Mode
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/server_start/failures.html#wp1058998
    Regards,
    Ravish Mody

  • XLS from Application server in background mode to internal table

    Hi,
    I need to transfer the content of an excel file in the application server to an internal table while running my program in background. My file is xls, cant use csv. For dataset bin mode, I need to know how to transfer the data to my internal table, already searched on forum but didnt find answer, at least not for background..
    ow, I am using v6 here
    about the ALSM_EXCEL_TO_INTERNAL_TABLE, I get the upload_ole error all the time, and with TEXT_CONVERT_XLS_TO_SAP, conversion_failed all the time too...
    here is the code, just the load part and data declaration:
    REPORT zbeto.
    TYPE-POOLS: truxs.
    TYPES:
    BEGIN OF y_cot,
    text1(12) TYPE c,
    text2(12) TYPE c,
    text3(12) TYPE c,
    text4(12) TYPE c,
    text5(12) TYPE c,
    END OF y_cot.
    DATA: it_datatab TYPE STANDARD TABLE OF y_cot,
    wa_datatab TYPE y_cot,
    it_raw TYPE truxs_t_text_data.
    DATA:
    v_file TYPE rlgrap-filename,
    begin_col TYPE i VALUE '1',
    begin_row TYPE i VALUE '2',
    end_col TYPE i VALUE '5',
    end_row TYPE i VALUE '102',
    t_ctmp TYPE y_cot OCCURS 0 WITH HEADER LINE,
    t_xls TYPE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    START-OF-SELECTION.
    PERFORM f_load_xls.
    FORM : f_load_xls
    FORM f_load_xls.
    v_file = '
    ZSAPDEV\SAPDEVINTERF$\COTACAO\TESTE.XLS'.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
    EXPORTING
    filename = v_file
    i_begin_col = begin_col
    i_begin_row = begin_row
    i_end_col = end_col
    i_end_row = end_row
    TABLES
    intern = t_xls
    EXCEPTIONS
    inconsistent_parameters = 1
    upload_ole = 2
    OTHERS = 3.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
    EXPORTING
    I_FIELD_SEPERATOR =
    i_line_header = 'X'
    i_tab_raw_data = it_raw " WORK TABLE
    i_filename = v_file
    TABLES
    i_tab_converted_data = it_datatab[] "ACTUAL DATA
    EXCEPTIONS
    conversion_failed = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    t_ctmp[] = it_datatab[].
    ENDFORM. "f_load_xls
    both FM arent working, and when I try to execute in background mode, before anything, I recieve the following error:
    Message text:
    Error during import of clipboard contents
    Message class:
    ALSMEX
    Message no.:
    037
    Message type:
    A
    and without the ASLM FM, the TEXT_CONVERT give me the conversion_failed exception...
    the directories are right, that I am sure, because I just copy&paste it from CG3Z/CG3Y when I uploaded and downloaded to
    check the file in the server...
    am I missing something?
    thanks again,
    Roberto Macedo
    (PS: I made another topic because none replied the other in 4 days and wasnt solved yet)

    Hi!
    You didn't find answer for this, because it is not possible. If you run your program in background, it is running on the server, and does not have any connection to your local machine. That's why you can't upload/download in background mode.
    You might try to address somehow your local PC, with its IP or MAC address, but I don't think does this task worth so much time.
    Run your program in online mode, or if you want to run it in background, then upload your file into the SAP server.
    Regards
    Tamá

  • Firefox won't start (not even in Safe Mode) on Windows 7 x64

    I am Running Windows 7 x64 and Firefox 3.6.15.
    Since the day before yesterday I am unable to start Firefox. Even in Safe Mode it just won't start.
    I click the Firefox icon, the mouse cursor changes to indicate the computer is doing something. After 3 seconds or so the mouse cursor again changes back to its default state. Nothing else happens.
    The Task Manager in Windows shows me that an instance of firefox.exe is running, but I see no Firefox window.
    Then if I again click to open Firefox, another firefox.exe instance starts, but again I see no Firefox window.
    There isn't even a warning about one instance of Firefox already running.
    What I have tried:
    I have uninstalled Firefox, removed all the Firefox files and folders from c:\users\username\AppData\Local and Roamning. I re-downloaded the 3.6.15 installation package and re-installed.
    No change.

    I have the same problem.
    The only Firefox version working is the 64bit nightly build 6.0a1. No 32Bit version of Firefox works!. Chrome, Safari and Internet Explorer all work well.
    Another Problem I have in this context is, that the Firefox Installer hangs in the tidy up step - even for the nightly 64Bit version. I have to kill the setup.exe process but the Installation seems to be completed.
    Before my change to Win7 64Bit I had OpenText NFS Solo 14 installed on a 32Bit Windows7 and no Problems.
    Is there a solution for this problem without uninstalling OpenText NFS Solo 14?
    I need the NFS Server at work.

  • Starting Weblogic Server in Development Mode

    Hello,
    How can I start a managed server in development mode? I set STARTMODE=false in
    the StartManagedServer.cmd. However, this did not work. Any ideas? Thanks in
    advance.

    收到,谢谢!
    内容不错

  • Start weblogic server in debug mode through command prompt

    Hi,
    Please help me in starting the weblogic server in debug mode through command prompt.I am using weblogic 10.3.6 app server.
    Thanks

    Hi,
    To debug weblogic startup issues you can pass the below jvm arguments:
    -Dweblogic.slc=true
    -Dweblogic.debug.DebugServerLifeCycle=true
    Debug options are available in weblogic based on the subsystem, such as security, jms, jdbc, deployment..etc
    You can refer to :
    https://blogs.oracle.com/vijaya/entry/weblogic_web_service_debug_flags
    Thanks,
    Sharmela

  • How to run weblogic server in background process on Windows XP 2002 ?

    Hi,
    I have installed weblogic server 9.2 in Windows XP 2002, I want to start my weblogic server and instances in background and keep running .
    Can anybody please provide information on the same ?
    Thanks in Advance,
    Kartheek.

    Hi Kartheek,
    If you're new to running WebLogic as a Windows service, you'll probably find it a bit tricky at first. I found troubleshooting problems, especially start-up and process-crashes, awkward at first. If you have time, you may want to check these out:
    [ http://connectionserver.blogspot.com/2009/06/weblogic-as-windows-service.html|http://connectionserver.blogspot.com/2009/06/weblogic-as-windows-service.html]
    [http://e-docs.bea.com/wls/docs81/adminguide/winservice.html|http://e-docs.bea.com/wls/docs81/adminguide/winservice.html]
    -Jones

  • Error starting J2EE server in debug mode

    I am trying to start the Sun 1.4 application server in a debug mode. I get an error
    err:FATAL ERROR in native method: No transports initialized
    : No such file or directory
    Error [2] in bind() call!
    Socket transport failed to init.
    Transport dt_socket failed to initialize, rc = -1.
    The setting in config.xml file is:-
    debug-enabled="true" debug-options="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044
    Any help will be appreciated.
    Thanks,
    Milind

    I changed the port number and it worked. Not sure why port 1044 as specified in the Sun documentation doesnot work.
    Milind

  • Starting managed server in MSI mode

    Is it possible to access an application deployed on a managed server which is started in MSI mode(Admin server is stopped)??

    Hi,
    MSI mode just says that the Managed Server Can be started without the AdminServer Running. But the Application Serving functionality wise there is no difference. So even if your Managed Server is running on MSI mode ..it will serve the Application as it could server with Non-MSI mode.
    So Yes,  The Application can be accessed from the ManagedServer which is running in  a MSI mode.
    Thanks
    Jay SenSharma
    http://weblogic-wonders.com/weblogic  (WebLogic Wonders Are Here)

  • Problems in starting Admin server for soa suite in windows 7 homebasic

    Hi All,
    I installed SOA Suite R1 in my laptop running windows 7 home basic version.
    Its 64 bit OS but I installed the files in win32 folder as it didn't allow me to install the generic file and even win64 file.
    installation was successful but after installation once I try to start the weblogic admin server using
    startAdminServer.cmd through my command prompt. It is running for few seconds and command prompt is getting closed abruptly and nothing comes up.
    It's very strange and I am not able to find out... Please help me.
    Thanks In Advance.

    Ideally you should be able to set up the 64-bit generic installer not sure of the reason...
    Please use the correct version of 64 bit jdk and check the logs
    You can check out the weblogic admin server logs
    BEA_HOME\user_projects\domains\your_domain\servers\AdminServer\logs

  • Starting SDM Server in integrated mode

    Hi,
    I am trying to start the SDM Server after upgrading to SP17 but the server doesnot start in the 'integrated' mode. The reply I get is the following "SDM server not up after 55 seconds. Waiting for another 5 seconds". It is starting in the 'standalone' mode and I am able to connect through the remotegui. The server is running on AIX. The log doesnot have any information regarding what is happening. Please help.
    Regards,
    Sanjib

    Hi Pascal,
    Sorry for the delay in replying. I am starting the GUI by executing the script RemoteGui.bat and I am able to connect to SDM of other servers. There is one particular server whose SDM server doesnot start in integrated mode.
    Passing the command ./sdm.sh jstartup mode=integrated ends with return code = 0. And after that I pass the command ./StartServer.sh. These commands are as per SAP Note 860939. I have waited for 600 seconds as you have suggested and the following is the snapshot from the sdmlog20060929.log file:
    Sep 29, 2006 7:48:58 AM  Info: Starting SDM - Software Deployment Manager...
    Sep 29, 2006 7:48:59 AM  Info: tc/SL/SDM/SDM/sap.com/SAP AG/6.4017.00.0000.20060420082457.0000
    Sep 29, 2006 7:49:01 AM  Info: SDM operation mode successfully set to: Integrated
    Sep 29, 2006 7:49:01 AM Info: JStartupFramework is active
    Sep 29, 2006 7:49:01 AM  Info: Operation mode of SDM in JStartupFramework is "Integrated".
    Sep 29, 2006 7:49:01 AM  Info: Check if Server is running already.
    Sep 29, 2006 7:49:01 AM  Info: OK server is not running. Enable SDM Process in JStartupFramework.
    Sep 29, 2006 7:49:02 AM  Info: enabling SDM Process with JStartupFramework
    Sep 29, 2006 7:49:02 AM  Info: enabled SDM Process with JStartupFramework
    Sep 29, 2006 7:49:02 AM  Info: Successfully enabled SDM Process in JStartupFramework.
    Sep 29, 2006 7:59:07 AM  Error: SDM server startup not finished after 600 seconds. Giving up.
    Sep 29, 2006 7:59:07 AM  Error: Could not start SDM. Processing error. Return code: 4
    Thanks and regards,
    Sanjib Kumar Brahma

  • Starting J2EE server in console mode

    Hello Everyone,
    I have just installed WAS 640 SP3 J2EE only on AIX5.2 unix server. J2ee server starts and stops without any problem. I can even see the J2EE engine through the web.
    Administrator user is locked because of the wrong password entries. I am trying to follow OSS note : 669848, it explains how to unlock Administrator user for SP3 systems which requires to stop the Java instance and start it console mode by jlaunch. when I run the following command after setting the LIBPATH to /usr/sap/NWS/JC00/j2ee/os_libs, but it never put me the console mode.
    "jlaunch -file=/usr/sap/NWS/JC00/j2ee/cluster/instance.properties -nodeName=ID1693850 pf=/usr/sap/NWS/SYS/profile/NWS_JC00_cgunx130 -traceFile=tracefile3.log -startMode=console".
    tracefile3.log shows the following error message at the end.
    Fri Dec 17 17:44:25 2004
    ERROR => DlLoadLib: dlopen()= No such file or directory -> DLENOACCESS (2,No
    such file or directory) [dlux_mt.c    310]
    ERROR => Can't load VM shared library (libjvm.a) (rc=-2) [jhvmxx_mt.c  1380]
    ERROR => Cannot load DLL for Java VM [jlnchxxi_mt. 527]
    I use java 1.4.1
    cgunx130:nwsadm 22> java -version
    java version "1.4.1"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1)
    Classic VM (build 1.4.1, J2RE 1.4.1 IBM AIX 5L for PowerPC (64 bit JVM) build caix641411-20040301 (JIT enabled: jitc))
    Could you please help me to UNLOCK the Administrator user.
    Thanks,
    Tuncay

    Please, can u put how do you resolve the problem, i've the same situation.
    eulerss

  • How to start the server in debug mode

    HI
    Im working on weblogic server 8.1 sp. My requirement is to run the application in hosted on weblogic server with out restaring the server i.e dynamiically turn to debug mode with out stopping. IM using Log4j method for logging. please let me know how to do it... if any one have sample java code
    Thanks & regards
    shiva

    I am not sure, how can you do it on the fly, but if you want to restart the server here are the parameters you need to add to the java arguments
    -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=$Port
    (where Port will be any port you want to connect to).
    Thanks
    Togotutor
    <b><a class="jive-link-external" href="http://www.togotutor.com">http://www.togotutor.com</a> (Learn Programming and Administration for Free)</b>
    Edited by: togotutor on Aug 12, 2010 3:44 PM

  • SQL Server Reporting Services won't start - SQL Server 2008 R2 SP1 on Windows 2008 SP2

    All has been fine for some time, this server runs SQL and SSRS.  
    Recently reporting service says it starts, then stops.  No changes of which I am aware.
    This is in the application log:
    Service cannot be started. System.Exception: Default appdomain failed to initialize.
       at Microsoft.ReportingServices.Library.ServiceAppDomainController.Start()
       at Microsoft.ReportingServices.Library.ReportService.OnStart(String[] args)
       at System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object state)
    I've tried changing the account to a domain admin, just to see - but it doesn't help.
    Thoughts?  Help?

    Hi BlakeDuffey,
    Generally, we may see the error messge "Default appdomain failed to initialize" in the application log when try to start Reporting Services if the RSreportserver.config file has been modified unexpectedly. At this time, I suggest that you back up your
    current RSreportserver.config file, and then check the config file referring to the following article:
    RSReportServer Configuration File
    Note: The RSReportServer.config is located in the <drive>:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer folder.
    If you cannot find the exceptions in the RSreportserver.config file, please post the config file so that we can help you to check it.
    Meanwhile, please also check the Reporting Services Log file to see if there are any error messages related to the issue. If there are, please post the error messges as well. The Reporting Services Log file is located in the <drive>:\Program Files\Microsoft
    SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\LogFiles folder.
    Hope this helps.
    Regards,
    Mike Yin
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Mike Yin
    TechNet Community Support

Maybe you are looking for

  • Bapi to update VF02

    Hi,      Need to update the billing document,Kindly let me know the BAPI for update the transaction.

  • UNIT_CONVERSION_SIMPLE

    Hello All, I'm using the SAP FM UNIT_CONVERSION_SIMPLE to convert from QP to CS.  The function module returns with sy-subrc code = 1 which means that the conversion was not found.  I've looked in the master table of 0mat_unit and 0material and both Q

  • Event deyection in ODI package

    Hi, I have a number of routines in a package and I want to restrict the execution of the interface if at any instance, one of my oracle table gets populated with records. My requirement is if my Oracle table is populated with records then the executi

  • How to use internet sharing and airtunes?

    Question? how to use internet sharing and airtunes? OK I have following working separate situations. 1. I can share my internet connection : is a router to ethernet cable into mac. Then over airport built in to my iMac ....... to other wireless compu

  • ServletContextListener implementation

    I'm having difficulties maintaining information about session activity between server restarts. I've written some code which works the way I'd like it to on my development machine. But when I upload the application to the production server it doesn't