Could Calendar services not available after reboot be LDAP problem?

I followed this installation guide:
https://wikis.oracle.com/display/CommSuite7U2/Communications+Suite+on+a+Single+Host+%28Linux%29#CommunicationsSuiteonaSingleHost%28Linux%29-InstallingCommunicationsSuite7Update2Software
I have successfully installed and set up the Oracle UCS Sun7 update 2 server. Calendar works ( if I don't reboot the server ).
However, when I reboot the server, Calendar service is unavailable.
Important information for when I installed Oracle UCS sun 7 update 2 by following the installation guide:
I have noticed when browsing through the folders, that there was already a 'dsee6' folder for the Oracle Linux I started from. Following the example installation for the Oracle Linux 5 with GlassFish install, I was instructed to download a new Directory Server. Following the instructions on page 7 of the install guide listed above, I made another folder 'dsee7'. I am wondering if I should never have downloaded this new Directory Server as instructed on page 6 "Get the Software". The install guide actually does not mention where to get the Directory Server from, so I just went to the edelivery site and figured it out myself. Anyways, under the "Installing and Configuring Directory Server" section, #3, I was instructed to "mv dsee7 /opt/sun/directory". In this folder, /opt/sun/directory/bin, there will be "./dsadmin" utility that can be ran. This is used to do many things with the Directory Server including starting it. Here is how I started it:
cd /opt/sun/directory/bin
./dsadm create /var/opt/sun/directory/dsins1
./dsconf create-suffix "0=isp"
Also, I downloaded the Directory Server from edelivery - Oracle Directory Server Enterprise Edition 11gR1 Patch Set 1 for Linux x86-64
Then, I ended up running to get it set up:
./dsccsetup ads-create
./dsccsetup war-file-create
$ ./dsccsetup cacao-reg
./dsccsetup status
Then, it looked like the dcss agent is registered in cacao.
So, if we forward ahead to page 9 of the install guide, "Preparing the Directory", I ran this and prepared the directory. After I finished installation, I could restart the Directory Server with no problems, as long as I did not reboot the machine. I would restart the Directory Server like so:
cd /opt/sun/directory/bin
./dsadmin stop-domain domain1
./dsadmin start-domain domain1
However, if I rebooted the machine, I could still start and stop the Directory Server as noted. But, the Calendar Services were not available.
The only reason I wonder about this LDAP Server possibly being the cause of this is because I had at one point configured the services to start on boot. I followed these instructions:
https://wikis.oracle.com/display/CommSuite7U2/Start+and+Stop+Scripts+for+Communications+Suite+%28Linux%29
I am using a VMSphere client to host this set up. So, since that point of configuring the services to start up, I have rolled the snap shot back so that the services are no longer set up to start on boot. But, when they were, and I rebooted the machine, I could see ldap 389 errors all over the place. So, that lead me to roll my snap shot back in effort to try and fix the ldap errors. I no longer get LDAP errors since I rolled my snap shot back. But, like I said, I no longer have any of the services, including the LDAP, to start on boot as noted in the above link that instructs us how to do this.
After reboot, I run these commands to get the server up and running:
Start GlassFish server:
cd /opt/sun/SUNWappserver/bin
./startserv
Start web ( Messaging Server I think ):
cd /opt/sun/comms/messaging64/bin
./start-msg
Start LDAP ( Directory Server )
cd /opt/sun/directory/bin
./dsadm start /var/opt/sun/directory/dsins1
Start Mysql
cd/etc/init.d
./mysqld start
All of those commands complete without problem. I can log into the convergence web, I can hit the delegated administrator, I can log into the GlassFish admin console, and I can see my calendar folder when I hit it in the web ( http://myServer.com/davserver/dav/home/userName/calendar/ ).
So, in summary, I am wondering if anyone knows if this supposed second Directory Server is causing my problems since I started with Oracle Linux 5 and Oracle Linux 5 appeared to have the folder dsee6 already installed with it. Could this be why my calendar services are not starting after reboot but are working before reboot?
( Also, all of my posts keep getting deleted. Can someone please email me if someone from Oracle is deleting my posts and tell me why they are getting deleted? )
Edited by: ntfytim16 on Mar 5, 2012 7:41 AM
Some of my steps were out of order. Cleaned them up so it is easier to understand.

Here is my error0.log which is in the /var/opt/sun/comms/davserver/logs folder:
=========================
Last packet sent to the server was 0 ms ago.
SEVERE [2012-03-01T05:10:26.033-0500] <...DavServer.loadBackend> failed to instantiate or create backend com.sun.comms.davserver.backends.BackendException: Cannot get Initial Database Information: java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be allocated because: Communications link failure
Last packet sent to the server was 0 ms ago.(OPERATION_NOT_SUPPORTED)
INFO [2012-03-01T05:10:26.033-0500] <...DavServer.loadBackend> Loading backend ischedulebackend with backendid ischedulebackend
INFO [2012-03-01T05:10:26.034-0500] <...DavServer.loadBackend>      JDBC JNDI Name = jdbc/ischedulebackend
SEVERE [2012-03-01T05:10:26.177-0500] <...JdbcBackend.queryDatabaseType> Cannot get Initial Database Information: java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be allocated because: Communications link failure
Last packet sent to the server was 0 ms ago.
SEVERE [2012-03-01T05:10:26.177-0500] <...DavServer.loadBackend> failed to instantiate or create backend com.sun.comms.davserver.backends.BackendException: Cannot get Initial Database Information: java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be allocated because: Communications link failure
Last packet sent to the server was 0 ms ago.(OPERATION_NOT_SUPPORTED)
INFO [2012-03-01T05:10:26.209-0500] <...DavServer.loadBackends> iSchedule enabled
WARNING [2012-03-01T05:10:26.209-0500] <...DavServer.loadBackends> iSchedule URI is configured but can't find ischedule backend.
SEVERE [2012-03-01T05:10:29.567-0500] <...LDAPSingleHostPool.buildConnection> buildConnection: got LDAPException while connecting to Pool number:0. Host=myServer.com :netscape.ldap.LDAPException: failed to connect to server ldap://myServer.com:389 (91)
SEVERE [2012-03-01T05:10:29.568-0500] <...LDAPSingleHostPool.buildConnection> buildConnection: got LDAPException while connecting to Pool number:0. Host=myServer.com :netscape.ldap.LDAPException: failed to connect to server ldap://myServer.com:389 (91)
WARNING [2012-03-01T05:10:29.568-0500] <...LDAPFailoverPool.getConnection> Fatal Error: All LDAP servers are down.
======================
Does that look like an LDAP issue to you?
"Fatal Error: All LDAP servers are down."
Edited by: ntfytim16 on Mar 5, 2012 10:13 AM
Changed one server address

Similar Messages

  • Runtime Service not Available after Copy

    Hi
    OWB 10g,
    Oracle DB 8.1.7.4.12
    I'm trying to copy the whole database, including all OWB and Runtime Repository and reload to another server.
    After that, OWB client works fine but when I try to connect Deployment Manager, the error massage shows: Runtime Service not Availabe. ( the Runtime connection properties are changed to match the new server). I then tried to manually start the runtime service, the error massage shows: Not available. And I then run Service_Doctor, it shows "Platform Service Not Available".
    For what I searched from metalink and here, the solution is always saying 'Reinstall the Runtime Service'.
    Is there any idea that I can make it work without reinstall because I don't want to start from scratch to redeploy and reload all of my data?
    I'm waiting on line.
    Thank you,
    Daming

    Hi Igor,
    I manually change table wb_rt_servuce_nodes with the proper hostname, service name, OWB home name. Also check the value in OWBRT_SYS.OWBRTPS, no problem. But Runtime service still not started. So I give up and then try to do it from scratch.
    I tried to reinstall all the repositories (OWB and runtime ) on the new server and still got the same problem.
    What I've done is drop all the repositories via Runtime Assistant and then done 'drop user rtr cascade' from sqlplus for all the target schemas and rtr/rtu. Then create new reopositories again. After that I restart the database , runtime service not started. Then I tried manually start it, failed.
    Anyidea? Should I reinstall the software?
    Thanks,
    Daming

  • TC not found after reboot (and other problems)

    Hi there,
    After I have gone through the Airport utility to setup my new TimeCapsule (TC) as router (connected with a DSL-modem), Airport utility rebooted TC, but then an error occurred, saying TC could not be found after reboot. This is the last in a series of strange behaviours and occurred directly after I reset TC to factory settings.
    I also had tried adding TC to an existing network. This appeared to work (no error message, green LED). However, I could not select TC as TimeMachine's backup drive. TimeMachine did find TC, asked me for the password and verified the password, however immediately switched back to the status "not configured".
    Any ideas? Thanks in advance
    -mat

    Dear fellow sufferers,
    it is solved! I decided to wait with a return and meanwhile the solution in another thread. All problems went away after I turned all security off from my network (do do this, I had to temporarily connect my TC by wire). This may be related to the fact that I am using a slightly aged PowerBook (latest Titanium model). Using fixed channel instead of automatic further accelerated the connection.
    Well, it is not really solved since I want to use some security in my network, but I suppose that will come with the next Leopard update (Cupertino, do you hear me!!!????).
    ...Cupertino, do you hear me!!???

  • 503 Service not available

    Hi.
    Could you help me ....
    I modified a bsp to display a PDF file into a new popup window, and I tested into my quality server using SE80 transaction and with my portal application after and evething was OK but when a released the new BSP into production server the BSP crashed.
    This is the error message that throws:
    503 Service not Available
    Erro 6
    Version 6040
    MOdule http_j2ee_mt.c
    Line  795
    Server EMKIOAIX103_CRP_00
    Details Cannot reach external application server on localhost:50000
    I explain you my program does it:
    1.-  the user chooses the a record into a Inbox
    2.-  IC display its data with BSP IRecReason
    3.- the user chooses a Action link
    4.- IC display a action PRINT PDF
    5.- the user selects a print pdf
    This is my code to EH_ONGO than create the PDF spool
    METHOD EH_ONGO .
      DATA: function_name TYPE rs38l_fnam,
            dummy(254)        TYPE c,
            ls_archive_index  TYPE toa_dara,
            ls_orderadm_h     TYPE crmt_output_orderadm_h_com,
            ls_activity_h     TYPE crmt_output_activity_h_com,
            ls_lead_h         TYPE crmt_output_lead_h_com,
            ls_opport_h       TYPE crmt_output_opport_h_com,
            ls_orgman_h       TYPE crmt_output_orgman_h_com,
            lt_partner_h      TYPE crmt_output_partner_h_comt,
            ls_pricingdata_h  TYPE crmt_output_pricingdata_h_com,
            ls_sales_h        TYPE crmt_output_sales_h_com,
            ls_shipping_h     TYPE crmt_output_shipping_h_com,
            lt_payplan_d_h    TYPE crmt_output_payplan_d_h_comt,
            ls_customer_h     TYPE crmt_output_customer_h_com,
            ls_cumulat_h     TYPE crmt_output_cumulat_h_com,
            lt_billing_h     TYPE   crmt_output_billing_h_comt,
            lt_cancel_h      TYPE   crmt_output_cancel_h_comt,
            lt_appointment_h TYPE   crmt_output_appointment_h_comt,
            lt_billplan_d_h  TYPE   crmt_output_billplan_d_h_comt,
            lt_billplan_h    TYPE   crmt_output_billplan_h_comt,
            lt_status_d_h    TYPE   crmt_output_status_d_h_comt,
            lt_status_h      TYPE   crmt_output_status_h_comt,
            lt_srv_subject_h TYPE   crmt_output_srv_subject_h_comt,
            lt_srv_reason_h  TYPE   crmt_output_srv_reason_h_comt,
            lt_srv_result_h  TYPE   crmt_output_srv_result_h_comt,
            ls_acs_h         TYPE   crmt_acs_h_com,
            lt_orderadm_i    TYPE   crmt_output_orderadm_i_comt,
            lt_orgman_i      TYPE   crmt_output_orgman_i_comt,
            lt_pricingdata_i TYPE   crmt_output_pricingdata_i_comt,
            lt_pricing_i     TYPE   crmt_output_pricing_i_comt,
            lt_product_i     TYPE   crmt_output_product_i_comt,
            lt_sales_i       TYPE   crmt_output_sales_i_comt,
            lt_shipping_i    TYPE   crmt_output_shipping_i_comt,
            lt_schedlin_i    TYPE   crmt_output_schedlin_i_comt,
            lt_customer_i    TYPE   crmt_output_customer_i_comt,
            lt_partner_i     TYPE   crmt_output_partner_i_comt,
            lt_item_cstics_i TYPE   crmt_item_cstics_tab,
            lt_billing_i     TYPE   crmt_output_billing_i_comt,
            lt_cancel_i      TYPE   crmt_output_cancel_i_comt,
            lt_finprod_i     TYPE   crmt_output_finprod_i_comt,
            lt_ordprp_i      TYPE   crmt_output_ordprp_i_comt,
            lt_appointment_i TYPE   crmt_output_appointment_i_comt,
            lt_billplan_d_i  TYPE   crmt_output_billplan_d_i_comt,
            lt_billplan_i    TYPE   crmt_output_billplan_i_comt,
            lt_orderadm_i_qt TYPE   crmt_output_orderadm_i_qt_comt,
            lt_orderadm_i_in TYPE   crmt_output_orderadm_i_in_comt,
            lt_schedlin_i_cf TYPE   crmt_output_schedlin_i_cf_comt,
            lt_status_i      TYPE   crmt_output_status_i_comt,
            lt_working_set_e_s_bbp TYPE /1cn/working_set_e_s_bbp_t,
            lv_language LIKE  sy-langu,
            lo_order TYPE REF TO cl_doc_crm_order,
            lv_object_guid TYPE crmt_object_guid,
            lv_object_kind TYPE crmt_object_kind,
            lv_status TYPE jstat,
            lt_status TYPE TABLE OF jstat,
            lv_error_tab_wrk TYPE ssferror,
            ls_output_options TYPE ssfcompop.
    DATA: IP_SMART_FORM  Type     TDSFNAME,
          IO_APPL_OBJECT Type Ref To OBJECT,
         IO_APPL_OBJECT Type Ref to CL_DOC_CRM_ORDER_H,
          IO_PARTNER Type Ref to CL_PARTNER_PPF,
          IS_ARCHIVE_INDEX  Type TOA_DARA,
          CT_ARCHIVE_INDEX_TAB Type TSFDARA,
          IS_ARCHIVE_PARAMETERS  Type ARC_PARAMS,
          control_parameters TYPE ssfctrlop,
          IS_MAIL_APPL_OBJ  Type SWOTOBJID,
          IS_MAIL_RECIPIENT  Type SWOTOBJID,
          IS_MAIL_SENDER  Type SWOTOBJID,
          IP_USER_SETTINGS type TDBOOL,
          ES_DOCUMENT_OUTPUT_INFO type SSFCRESPD,
          ES_JOB_OUTPUT_INFO type SSFCRESCL,
          ES_JOB_OUTPUT_OPTIONS type SSFCRESOP.
    Resultado generado: Formato PDF
    data: l_pdf_xstring  type xstring,
          lt_lines       type table of tline,
          ls_line        type tline,
          l_pdf_len      type i,
          lv_exist       type n,
          output_data    type ssfcrescl,
          lp_proc_stat TYPE ppfdtstat.
    Explanation: this method executes the action,
    gets the medium, gets the log, reads the messages from
    the log and gets the spool id from the messages.     JLARIN 27/DIC/06
    DATA: lv_event TYPE REF TO cl_htmlb_event_tableview,
          lv_index TYPE int4,
          wa_action TYPE LINE OF crmt_action_table_tab,
          ls_action_obj TYPE REF TO if_action_ppf,
          lr_action TYPE REF TO cl_trigger_ppf,
          lr_medium type Ref to     if_medium_ppf,
         ls_action TYPE zcrmt_action,
          lv_spoolid TYPE symsgv.
    DATA:
         grid   type ref to cl_crm_ic_gridlayout,
         GLOBAL_EVENT     type string.
    data: lo_trigger type ref to CL_TRIGGER_PPF,
          lo_sfprint type ref to CL_SF_PRINT_PPF,
          lo_typed_context type ref to CL_CRM_IC_IRECACTIONPLAN_CTXT,
          lt_all_data type PPFSINPRRU.
    data: lo_rp_rc type i.
    DATA: lv_head_guid      TYPE crmt_object_guid.
      DATA: adminh     TYPE REF TO cl_crm_ic_irecactionplan_cn02,
            guidstring TYPE string,
            guid       TYPE crmt_object_guid,
            action_obj   TYPE crmt_action_obj_tab,
            lv_object_id TYPE crmt_object_id.
       DATA: request_event TYPE REF TO cl_htmlb_event.
       DATA: event_data    TYPE REF TO if_htmlb_data.
       DATA: event_value  type string.
        event_data = cl_htmlb_manager=>get_event_ex( request ).
        if event_data is bound.
          try.
              request_event ?= event_data.
            catch cx_sy_move_cast_error.
              clear request_event.
          endtry.
          event_value = event_data->event_id.
          translate event_value to lower case.             "#EC TRANSLANG
       endif.
       if event_value <> 'x1_x3_x17_x21_actionitems'.
          return.
       endif.
    TRY.
    create object lo_sfprint.
    create object lo_trigger.
        lv_exist = 1.
      Get the header GUID
        adminh = typed_context->btadminh.
        guidstring = adminh->get_actionitem( 'GUID' ).
        If guidstring is initial.
           return.
        endif.
        lv_head_guid = guidstring.
        CALL FUNCTION 'CRM_ORDERADM_H_READ_OW'
          EXPORTING
            iv_orderadm_h_guid     = lv_head_guid
          IMPORTING
            ev_object_id           = lv_object_id
          EXCEPTIONS
            admin_header_not_found = 1
            OTHERS                 = 2.
           CALL FUNCTION 'CRM_ACTION_GET_TOOLBAR_IL'
          EXPORTING
            iv_ref_guid     = lv_head_guid
            iv_ref_kind     = 'A'
          IMPORTING
            et_action_obj   = action_obj
            et_action_fld   = action_fld
          EXCEPTIONS
            parameter_error = 1
            error_occurred  = 2
            error_message   = 3
            OTHERS          = 4.
        IF sy-subrc EQ 0.
          LOOP AT action_fld INTO wa_action where applkey = lv_object_id.
          ENDLOOP.
          IF sy-subrc EQ 0.
             ls_action_obj = wa_action-action.
             lv_exist = 0.
          ENDIF.
        ENDIF.
        if lv_exist is initial.
        CALL METHOD ls_action_obj->get_processing
         IMPORTING
           ei_processing = lr_medium.
        CALL METHOD lo_trigger->get_appl
          RECEIVING
            result = io_appl_object.
          call function 'CRM_ACTION_GET_APPL_OBJECT'
            exporting
              iv_ref_guid          = lv_head_guid
              iv_ref_kind          = 'A'
            IMPORTING
              EV_APPL_OBJECT       = io_appl_object.
        CALL METHOD lr_medium->execute
          EXPORTING
            io_appl_ref       = io_appl_object   "lo_appl_ref
          RECEIVING
            rp_status         = lp_proc_stat
          EXCEPTIONS
            missing_arguments = 1
            OTHERS            = 2.
      ip_smart_form =  lr_medium->get_smartform( ).
        ip_smart_form = 'ZIMPR_ORDEN_RASTREO'.
      get the function name for this smart form
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            formname           = ip_smart_form
          IMPORTING
            fm_name            = function_name
          EXCEPTIONS
            no_form            = 1
            no_function_module = 2
            OTHERS             = 3.
    determine the tables of the application
      CALL FUNCTION 'CRM_OUTPUT_SINGLE_READ'
        EXPORTING
          iv_object                 = io_appl_object
          iv_smart_form             = ip_smart_form
          ir_partner                = io_partner
        IMPORTING
          es_output_orderadm_h      = ls_orderadm_h
          es_output_activity_h      = ls_activity_h
          es_output_lead_h          = ls_lead_h
          es_output_opport_h        = ls_opport_h
          es_output_orgman_h        = ls_orgman_h
          es_output_pricingdata_h   = ls_pricingdata_h
          es_output_sales_h         = ls_sales_h
          es_output_shipping_h      = ls_shipping_h
          et_output_partner_h       = lt_partner_h
          et_output_payplan_d_h     = lt_payplan_d_h
          es_output_customer_h      = ls_customer_h
          es_output_cumulat_h       = ls_cumulat_h
          et_output_billing_h       = lt_billing_h
          et_output_cancel_h        = lt_cancel_h
          et_output_appointment_h   = lt_appointment_h
          et_output_billplan_d_h    = lt_billplan_d_h
          et_output_billplan_h      = lt_billplan_h
          et_output_status_d_h      = lt_status_d_h
          et_output_status_h        = lt_status_h
          et_output_srv_subject_h   = lt_srv_subject_h
          et_output_srv_reason_h    = lt_srv_reason_h
          et_output_srv_result_h    = lt_srv_result_h
          es_output_acs_h           = ls_acs_h
          et_output_orderadm_i      = lt_orderadm_i
          et_output_orgman_i        = lt_orgman_i
          et_output_pricingdata_i   = lt_pricingdata_i
          et_output_pricing_i       = lt_pricing_i
          et_output_product_i       = lt_product_i
          et_output_sales_i         = lt_sales_i
          et_output_shipping_i      = lt_shipping_i
          et_output_schedlin_i      = lt_schedlin_i
          et_output_partner_i       = lt_partner_i
          et_item_cstics_i          = lt_item_cstics_i
          et_output_customer_i      = lt_customer_i
          et_output_billing_i       = lt_billing_i
          et_output_cancel_i        = lt_cancel_i
          et_output_finprod_i       = lt_finprod_i
          et_output_ordprp_i        = lt_ordprp_i
          et_output_appointment_i   = lt_appointment_i
          et_output_billplan_d_i    = lt_billplan_d_i
          et_output_billplan_i      = lt_billplan_i
          et_output_orderadm_i_qt   = lt_orderadm_i_qt
          et_output_orderadm_i_in   = lt_orderadm_i_in
          et_output_schedlin_i_cf   = lt_schedlin_i_cf
          et_output_status_i        = lt_status_i
          et_output_wrk_set_e_s_bbp = lt_working_set_e_s_bbp
          ev_language               = lv_language.
      control_parameters-langu = sy-langu.
      control_parameters-no_dialog = 'X'.
      control_parameters-getotf    = 'X'.
    call function to process smart form
      CALL FUNCTION function_name
        EXPORTING
          archive_index        = is_archive_index
          archive_index_tab    = ct_archive_index_tab
          archive_parameters   = is_archive_parameters
          control_parameters   = control_parameters
          mail_appl_obj        = is_mail_appl_obj
          mail_recipient       = is_mail_recipient
          mail_sender          = is_mail_sender
          output_options       = ls_output_options
          user_settings        = ip_user_settings
          orderadm_h           = ls_orderadm_h
          activity_h           = ls_activity_h
          lead_h               = ls_lead_h
          opport_h             = ls_opport_h
          orgman_h             = ls_orgman_h
          partner_h            = lt_partner_h
          pricingdata_h        = ls_pricingdata_h
          sales_h              = ls_sales_h
          shipping_h           = ls_shipping_h
          payplan_d_h          = lt_payplan_d_h
          cumulat_h            = ls_cumulat_h
          customer_h           = ls_customer_h
          acs_h                = ls_acs_h
          billing_h            = lt_billing_h
          cancel_h             = lt_cancel_h
          appointment_h        = lt_appointment_h
          billplan_d_h         = lt_billplan_d_h
          billplan_h           = lt_billplan_h
          status_d_h           = lt_status_d_h
          status_h             = lt_status_h
          srv_subject_h        = lt_srv_subject_h
          srv_reason_h         = lt_srv_reason_h
          srv_result_h         = lt_srv_result_h
          orderadm_i           = lt_orderadm_i
          orderadm_i_qt        = lt_orderadm_i_qt
          orderadm_i_in        = lt_orderadm_i_in
          orgman_i             = lt_orgman_i
          pricingdata_i        = lt_pricingdata_i
          pricing_i            = lt_pricing_i
          product_i            = lt_product_i
          sales_i              = lt_sales_i
          schedlin_i           = lt_schedlin_i
          schedlin_i_cf        = lt_schedlin_i_cf
          shipping_i           = lt_shipping_i
          partner_i            = lt_partner_i
          item_cstics_i        = lt_item_cstics_i
          customer_i           = lt_customer_i
          billing_i            = lt_billing_i
          cancel_i             = lt_cancel_i
          finprod_i            = lt_finprod_i
          ordprp_i             = lt_ordprp_i
          appointment_i        = lt_appointment_i
          billplan_d_i         = lt_billplan_d_i
          billplan_i           = lt_billplan_i
          status_i             = lt_status_i
          working_set_e_s_bbp  = lt_working_set_e_s_bbp
          language             = lv_language
        IMPORTING
          document_output_info = es_document_output_info
          job_output_info      = output_data
          job_output_options   = es_job_output_options
        EXCEPTIONS
          output_canceled      = 1
          parameter_error      = 2
          OTHERS               = 3.
        call function 'CONVERT_OTF'
          EXPORTING
            format                = 'PDF'
          IMPORTING
            bin_filesize          = l_pdf_len
            bin_file              = l_pdf_xstring
          TABLES
            OTF                   = OUTPUT_DATA-OTFDATA
            LINES                 = LT_LINES
          EXCEPTIONS
            err_max_linewidth     = 1
            err_format            = 2
            err_conv_not_possible = 3
            err_bad_otf           = 4
            others                = 5.
          IF SY-SUBRC = 0.
            DATA: lv_string TYPE string,
                  lv_numguid(10) TYPE N.
            lv_string = lv_spoolid.
            lv_numguid = lv_object_id.
           CALL METHOD op_previewspool( iv_spoolid = lv_string ).
            me->op_previewspool( iv_spoolid     = lv_string
                                 lv_pdf_xstring = l_pdf_xstring
                                 lv_guid        = lv_numguid ).
          ENDIF.
        endif.
        CATCH cx_sy_move_cast_error.
      ENDTRY.
    ENDMETHOD.
    <b>This part send the result to a new windows and refresh a main page, but thow a error 503 ...</b>
    method OP_PREVIEWSPOOL .
    *{   INSERT         CRDK902447                                        1
      DATA: lv_url TYPE string.
    DATA: cached_response TYPE REF TO if_http_response,
          new_navegator   TYPE REF TO CL_WB_NAVIGATOR_NEW_WINDOW,
          new_navigation   TYPE REF TO CL_BSP_NAVIGATION.
    DATA: guid TYPE guid_32.
    Resultado generado: Formato PDF
      data: l_pdf_xstring  type xstring,
            display_url    type string,
            pagina_url    type string,
            display_pag    type string,
            V_TARGET_URL   TYPE STRING,
            W_APP_NAME     TYPE STRING,
            l_pdf_len      type i.
    DATA:  out TYPE REF TO IF_BSP_WRITER,
            lv_out TYPE REF TO cl_BSP_WRITER,
            lv_context Type Ref to IF_BSP_PAGE_CONTEXT,
            lv_body type string,
            lv_body2 type string,
            lv_guidmem(10) type n,
            lv_doscmd(200),
            lv_pag   type xstring,
            lv_back(2) type n.
    IF not lv_pdf_xstring is initial.
        CREATE OBJECT cached_response TYPE CL_HTTP_RESPONSE EXPORTING add_c_msg = 1.
        l_pdf_len = xstrlen( lv_pdf_xstring ).
        cached_response->set_data( data   = lv_pdf_xstring
                              length = l_pdf_len ).
        cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                           value = 'application/pdf' ).
         cached_response->set_header_field(
                            name  = 'content-disposition'
                            value = 'attachment; filename = test.pdf' ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        CALL FUNCTION 'GUID_CREATE'
          IMPORTING
            ev_guid_32 = guid.
    DATA:
        LV_HOST     TYPE STRING,     "Host name
        LV_PORT     TYPE STRING,     "Port Number
        LV_LOCAL_URL     TYPE STRING,     "URL (Relative to the Current Server)
        LV_ABS_URL     TYPE STRING,     "URL (Absolute, incl. Protocol, Host, Port)
        LV_PROTOCOL     TYPE STRING,     "Available Protocol
        LV_servidor     TYPE STRING.     "Available Protocol
    Construct the Target URL
          CALL METHOD RUNTIME->CONSTRUCT_BSP_URL
            EXPORTING
              IN_PROTOCOL       = 'http'
              IN_APPLICATION_NS = RUNTIME->APPLICATION_NAMESPACE
              IN_APPLICATION    = 'crm_ic'
              IN_PAGE           = '**/crm_ic'
            IMPORTING
              OUT_ABS_URL       = V_TARGET_URL
              OUT_HOST          = LV_HOST
              OUT_PORT          = LV_PORT
              OUT_LOCAL_URL     = LV_LOCAL_URL
              OUT_PROTOCOL      = LV_PROTOCOL.
            CONCATENATE 'crm_ic' '/**/' INTO W_APP_NAME.
          REPLACE W_APP_NAME IN V_TARGET_URL WITH SPACE.
        CONCATENATE V_TARGET_URL '/' guid '.pdf' INTO display_url.
        cl_http_server=>server_cache_upload( url      = display_url
                                             response = cached_response ).
        lv_url = adapter->if_bsp_page~get_page_url( ).
        if LV_PORT is initial.
           concatenate 'http://' LV_HOST lv_url+0(61) 'default.do' into lv_url.
        else.
           concatenate 'http://' LV_HOST ':' LV_PORT lv_url+0(61) 'default.do' into lv_url.
        endif.
          lv_body2 = '<html><head><script language=JavaScript>'.
          concatenate lv_body2 'window.open("' display_url '"); ' INTO lv_body2.
          concatenate lv_body2 ' location.href = "' lv_url '";  </script></head>' INTO lv_body2.
          concatenate lv_body2 '<body></body></html>' INTO lv_body2.
         concatenate lv_body2 ' function back(){ history.back( ); } </script></head>' INTO lv_body2.
         concatenate lv_body2 '<body><a href="javascript:back();">regresar</a></body></html>' INTO lv_body2.
          response->append_cdata( data = lv_body2 ) .
          response->set_header_field( name  = 'content-type'
                                      value = 'text/html' ). "#EC NOTEXT
          response->set_header_field( name = 'cache-control' value = 'max-age=0' ). "#EC NOTEXT
         response->set_header_field( name = 'Expires' value = '0' ). "#EC NOTEXT
          navigation->response_complete( ).
    return.
    ENDIF.
    endmethod.

    Using the search bar, it seems it's a proxy issue, but finding a simple solution did not seem apparent.  Have you tried a reboot?  To reboot, hold the power and home buttons at the same time for at least 10 seconds (hold past the swipe to shut down bar, should it appear) until the Apple Logo appears, then let go fo both buttons and your iPad will restart.  Hopefully, this will solve the problem......

  • CIMC on C210 server throws Error 2001: Service not available message

    I am trying to configure vmware on a brand new C210 server for the first time and the directions say to access the CIMC and load the vmware media. Sounds easy enough except every time I go to the CIMC webpage I recieve an " error 2001: Service not available"  message on every page I go to and none of the server info fields are populated. If I try to make any changes and save my settings the same message pops up and no changes are saved. Almost like the CIMC doesn't recognize the server or hardware. I ran the host update utility just now and upgraded the firmware for everything to the latest version but still no progress. Anyone have this happen or know how I can fix this?
    Thanks in advance!
    Jess

    I got it working on one of the servers, and havent tried the same solutions on any other server.
    What i did was manually adding an IP adress to the management IP, then save the config before rebooting. After rebooting i put it back to get IP from DHCP, and saved the config. After a secound reboot i was able to use the mangement interface without the 2001 error.
    I'm not sure if it will work on the rest of the servers, but it's worth a try
    Regards
    Alex

  • In App Purchase showing "Service Not available" Message box with error code 805a01f4

    Hi all ,
            I am developing a windows phone silverlight 8.1 application .When i trying to buy my public app product using credit card i am getting message Service not available ."The store isn't available at the moment.Please check back
    in a bit . This error code may be helpful : 805a01f4 ." 
    Please tell me how to resolve .
    Thank you

    Thanks for your response .
    I try it many times . reboot the device and try again . . but still showing the same message . . but when i buy using "IDEA" .downloaded it without showing any error message . After  few seconds got a message on my number that "Dear customer,
    thank you for downloading Awsome from MICROSOFT .You have been charged RS.55. Your balance is Rs.xxx " . Then, what is the problem with credit cards ? Why it showing the Service not available message ? 

  • VPN service not available or not responding - Please help!!

    For years, I was using VPN AnyConnect without much of a problem. I have an older Gateway 500XL Desktop PC that has functioned well for me since 2004. I have only had to replace the hard drive once. I did upgrade the memory from 512MB to 2 GB recently. I was using Verizon FIOS for my internet connection but recently moved and am now using Cox Communications High Speed service which is doing 5MB per second on the download side. Shortly after the move, I began to develop connection problems with my VPN. I would get the 'service not available' or 'VPN not responding' messages. If I tried to uninstall and then reinstall, the VPN would work again BUT once I disconnected, I would get the above referenced messages again if I tried to reconnect. So I would unistall and reinstall every time in order for it to work and then just leave it running all day rather than disconnect. This all started happeing in Oct. and then more recently, it would magically start reconnecting again without me having to reinstall it so I was happy the problem seemed to go away. However, now, within the past week, I could not get it to work at all, even after reinstalling! So, I am completely out of options. I need to have this up and running again very soon for work reasons.
    Since Oct., I have tried multiple things. Initially, the router that Cox gave me was bad after the guy installed it incorrectly (without me realizing it) and it became faulty. Got a new router, but that did not change the VPN problem. I have McAfree Anti-Virus. I tried uninstalling it to see if it was conflicting somewhere but that changed nothing for the VPN. I downloaded malwarebytes and ran scans with that and McAfree full scans but did not have any malware or problems on the PC. I tried to check the PC disk for errors and came up empty there. Cleaned out caches and all that with no change. When I look at the network connections panel on my PC, I can see the AnyConnect link is set up but it will say 'disabled'. When I try to 'enable' it, it will not allow it (a message window pops up but I forget what it says). WHY? I think this is the problem. Is there something corrupted with my PC's ability to establish network connections? Is this something that can be fixed? I know the PC is older and XP will not be supported any longer but none of this make sense. If I could previously connect after installing but ONLY the first time connecting, something is happening to break the network connection on my PC but I have no idea. I tried using the windows network connections troubleshooting tool but came up empty there.

    For years, I was using VPN AnyConnect without much of a problem. I have an older Gateway 500XL Desktop PC that has functioned well for me since 2004. I have only had to replace the hard drive once. I did upgrade the memory from 512MB to 2 GB recently. I was using Verizon FIOS for my internet connection but recently moved and am now using Cox Communications High Speed service which is doing 5MB per second on the download side. Shortly after the move, I began to develop connection problems with my VPN. I would get the 'service not available' or 'VPN not responding' messages. If I tried to uninstall and then reinstall, the VPN would work again BUT once I disconnected, I would get the above referenced messages again if I tried to reconnect. So I would unistall and reinstall every time in order for it to work and then just leave it running all day rather than disconnect. This all started happeing in Oct. and then more recently, it would magically start reconnecting again without me having to reinstall it so I was happy the problem seemed to go away. However, now, within the past week, I could not get it to work at all, even after reinstalling! So, I am completely out of options. I need to have this up and running again very soon for work reasons.
    Since Oct., I have tried multiple things. Initially, the router that Cox gave me was bad after the guy installed it incorrectly (without me realizing it) and it became faulty. Got a new router, but that did not change the VPN problem. I have McAfree Anti-Virus. I tried uninstalling it to see if it was conflicting somewhere but that changed nothing for the VPN. I downloaded malwarebytes and ran scans with that and McAfree full scans but did not have any malware or problems on the PC. I tried to check the PC disk for errors and came up empty there. Cleaned out caches and all that with no change. When I look at the network connections panel on my PC, I can see the AnyConnect link is set up but it will say 'disabled'. When I try to 'enable' it, it will not allow it (a message window pops up but I forget what it says). WHY? I think this is the problem. Is there something corrupted with my PC's ability to establish network connections? Is this something that can be fixed? I know the PC is older and XP will not be supported any longer but none of this make sense. If I could previously connect after installing but ONLY the first time connecting, something is happening to break the network connection on my PC but I have no idea. I tried using the windows network connections troubleshooting tool but came up empty there.

  • Service Not Available error with SSAS cube

    Hi,
    We imported Microsoft Analysis Services (SSAS) Cube into RPD using XMLA.  While using the drill down feature in BI answers using presentation hierarchies, OBIEE is generating the following error
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: URL: http://<server>/<app name>/msmdpump.dll. The http return status is 503.< html><head><title>Service Not Available</title></head><body>Service Not Available</body></html>
    However, drill down feature is working fine with attribute columns. Also the report is working fine up to certain level of drill down. In the log it is evident that OBIEE is generating multiple physical queries (with clause) to pull the data from the cube.
    Is there any limit on the size of the mdx or number of mdx queries that msmdpump.dll can process?  Is there any configuration that needs to be modified while working with SSAS cubes?
    OBIEE version: 11.1.1.6.2 BP1
    Much appreciate your time.

    Hi Dhar,
    Thanks for your reply.
    Yes, your observation is correct. Changing the type of the hierarchies has some effect on the issue. I'm able to drill down to few more levels as the MDX generated by OBIEE in this less complex. But ultimately I'm facing the same issue after certain stage. I can only think of, the number of physical queries generated by OBIEE, as one of the possible reason for this. What is your opinion?
    Interestingly, I tested the same RPD in 11.1.1.6.5 and I'm unable to reproduce in the issue so far in my testing . Is it a bug in 11.1.1.6.2?! However, upgrading to 11.1.1.6.5 is not an option for us at this stage.
    Were you able to resolve the issue completely by only changing the hierarchy type? What version you have used in you project?
    Thanks.

  • My phone says my cdma service not available what does this mean

    my phone says cdma service not available what does this mean

    This has just happened to me. My phone (Samsung Intensity) worked great on Sunday. Sent and received several texts while at home on Sun during Steeler football game. Monday night, while sitting outside of my home in my driveway, could not make a call. Message said CDMA SERVICE NOT AVAILABLE. On the front of my phone it says Searching SVC. No bars. Icon of a cell phone with a diagonal line through it. Tuesday night, same. Didn't think about trying it at my office. Tried the dialing *228 send option 2 but that doesn't exactly work when the phone doesn't work. My husband's phone (Casio GZOne) also not working at our house.

  • Content Server Explorer is not available after sucessful installation of Plumtree Portal

    Content Server Explorer is not available after sucessful installation of Plumtree Portal.
    Please reply us.

    To clarify, do you have the User Profile Service (including MySite Host) up and running on this environment? That's subtley different to the full MySite experience which is clearly not applicable...
    Interesting question - thanks for that. Until now I didn't realise there was a difference.
    The User Profile Service is up and running, but no MySite Host is set. (I don't believe MySite will be available anywhere here. I guess that means there's no valid MySite Host for me to use.)
    Many thanks,
        Geoff

  • I have one pc with service not available"sapdp00"

    In my 8 year career I never had problem using "services" file in "c:\windows\service32\drivers\etc".
    However there is an XP machine (with regular connection to network) with problem "service not available"sapdp00". It is like this settings come from somewhere else.  I tried with search for "services" butunsuccessfully
    The "service" file is copied from my XP machine where everything is functionning in same network. How could I trace where the problem is?

    there are known viruses or applications that changes the services file path. MS-Messenger 7.50 did that in the past.
    check if SAP not 882741 applied to you.
    if not, copy the services file from another PC and see if this helps.

  • Service not available"sapdp00".

    In my 8 year career I never had problem using "services" file in "c:\windows\service32\drivers\etc".
    However there is an XP machine (with regular connection to network) with problem "service not available"sapdp00". It is like this settings come from somewhere else. I tried with search for "services" butunsuccessfully
    The "service" file is copied from my XP machine where everything is functionning in same network. How could I trace where the problem is?

    Hello,
    Could you explain your problem once again ?
    Do you try to connect with sapgui from this XP machine to a SAP system which system number is 00 ?
    Is there really a "services" file on the XP machine ?
    If yes, is the line
    sapdp00          3200/tcp
    present in the file ?
    Regards,
    Olivier

  • PE8: Folder Monitoring Service not available?

    I've bought the german version of PE 8. It could be a nice program, but there are still some bugs/problems - despite it works *very* slow on my Lenovo W500, 8 GB RAM, 2,8GHZ Dual Core, Windows 7 64.
    If I go to "Organizer" and then use the menu "File" -> "Folder monitoring" there comes a message "Der Ordnerüberwachungsservice ist nicht verfügbar" which should mean translated "Folder monitoring service not available" (I hope that this translation is OK?).
    I even looked into Windows -> System Control -> Services and searched for a stopped service like that - but I couldn't find any.
    Do you have any similar problems or suggestions?
    Friendly
    Philipp
    Lenovo W500, 2,8 Ghz T9600, 8GB RAM, Windows 7 Pro 64-Bit
    http://ferienhausbretagne.tumblr.com

    I've bought the german version of PE 8. It could be a nice program, but there are still some bugs/problems - despite it works *very* slow on my Lenovo W500, 8 GB RAM, 2,8GHZ Dual Core, Windows 7 64.
    If I go to "Organizer" and then use the menu "File" -> "Folder monitoring" there comes a message "Der Ordnerüberwachungsservice ist nicht verfügbar" which should mean translated "Folder monitoring service not available" (I hope that this translation is OK?).
    I even looked into Windows -> System Control -> Services and searched for a stopped service like that - but I couldn't find any.
    Do you have any similar problems or suggestions?
    Friendly
    Philipp
    Lenovo W500, 2,8 Ghz T9600, 8GB RAM, Windows 7 Pro 64-Bit
    http://ferienhausbretagne.tumblr.com

  • How can I solve ORA-29278: SMTP transient error: 421 Service not available

    Hi
    I have two different Solaris Server (Server1 & server2).
    In both the server SMTP server is configured.
    In these two solaris server (Server1 & server2) we have installed Oracle 9i
    I am using client machine to execute the following procedure.
    When I connect to server1 (using SQL plus) and execute the following procedure, it works fine, and able to send emails properly.
    But when I connect to server2 (using SQL plus) and execute the following procedure, I get the follwoing error.
    Could you please help me to resolve this?
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    SQL> set define off
    SQL> set serveroutput on size 1000000
    SQL> BEGIN
    2 mail_files( 'localhost',
    3 'Frm',
    4 '[email protected]',
    5 'From production',
    6 'Test message from production',
    7 9999999999,
    8 NULL,
    9 NULL,
    10 NULL,
    11 0 );
    12 END;
    13 /
    BEGIN
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 327
    ORA-06512: at "PROD_L.MAIL_FILES", line 238
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at line 2
    SQL>

    Hi
    I have two different Solaris Server (Server1 & server2).
    In both the server SMTP server is configured.
    In these two solaris server (Server1 & server2) we have installed Oracle 9i
    I am using client machine to execute the following procedure.
    When I connect to server1 (using SQL plus) and execute the following procedure, it works fine, and able to send emails properly.
    But when I connect to server2 (using SQL plus) and execute the following procedure, I get the follwoing error.
    Could you please help me to resolve this?
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    SQL> set define off
    SQL> set serveroutput on size 1000000
    SQL> BEGIN
    2 mail_files( 'localhost',
    3 'Frm',
    4 '[email protected]',
    5 'From production',
    6 'Test message from production',
    7 9999999999,
    8 NULL,
    9 NULL,
    10 NULL,
    11 0 );
    12 END;
    13 /
    BEGIN
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 327
    ORA-06512: at "PROD_L.MAIL_FILES", line 238
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at line 2
    SQL>

  • Devise object push service not available or busy

    I did connect my ipad with my laptop but could not pair them as the error msg says "devise object push service not available or busy". Thing is, I could pair the same laptop with my android phone! Please any help?

    You cannot pair an iPad to a computer for anything other than Internet tethering.
    Android is not the same as iOS.

Maybe you are looking for