EIC enable HTTPS

Hi,
We have a ERP 604 HR system and we are configuring the EIC to use HTTPS. When we use the txn HREIC it jumps to HTTPS and ask me to accept a certificate and log in. The HTTPS only works when HTTP is activated in SMICM but HTTP is deactivated it will not work and displays: (Note: HTTPS service is activated in SMICM )
Does it require HTTP service to be active or are we missing extra config?
The URL https://xxxxx.com:443xx/sap/bc/bsp/sap/ic_base/main.htm was not called due to an error.
Note
The following error text was processed in the system HD3 : Exception condition "PLUGIN_NOT_ACTIVE" raised.
The error occurred on the application server sc1domb_HD3_30 and in the work process 1 .
The termination type was: RABAX_STATE
The ABAP call stack was:
Method: CREATE_BY_DESTINATION of program CL_HTTP_CLIENT================CP
Method: CREATE_SESSION of program CL_SAM_BSP_SESSION_LAUNCHER===CP
Method: START_WORKER_SESSION of program CL_ICWC_SESSION_REGISTRY======CP
Method: ONCREATE of program CLO23UTXK1DHIM8WX0QZD2TBW2KZ9CP
Method: %_ONCREATE of program CL_O23UTXK1DHIM8WX0QZD2TBW2KZ9CP
Method: DO_INIT of program CL_BSP_PAGE===================CP
Method: GET_PAGE_CONTEXT_CURRENT of program CL_BSP_CONTEXT================CP
Method: ON_REQUEST_ENTER of program CL_BSP_RUNTIME================CP
Method: ON_REQUEST of program CL_BSP_RUNTIME================CP
Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_HTTP_EXT_BSP===============CP

check this note 1176990
also check trans code CRMM_IC_GFS
also  you need to ha activate the extension EA-HR in our ERP-system.
Edited by: Siddharth Rajora on Jun 2, 2011 5:42 PM

Similar Messages

  • What are the required settings to enable HTTP Compression?

    I am running into download speed issues with some of my clients.  I am looking for ways to improve download response without having to rewrite my system(s).
    On the server side, I am using CF 8.01 on a W2003 system.  I have enable HTTP Compression for the web site in IIS 6.0 for both static and dynamic files.
    On the client side where I am doing my testing, I am using IE 8.0 on a W7 professional system.  In I.E., I have enabled HTTP 1.1 under advanced options and am using Automatic mode as the download methodology for Temporary Files.
    It is my understanding that there is nothing that I have to do to CF to enable HTTP Compression.
    It does not appear to work because the downloaded cfm files (5717 and 694389) are the same size regardless of these setting.  In addition, I am using HttpWatch to determine all of the time and size parameters for each request. HttpWatch tells me in the summary that there are no HTTP Compression savings; i.e., HTTP Compression saving: 0 bytes.  Based upon some of the info I've read on the web, I would have expected 50% to 75% savings since the two files being downloaded are both dynamic text files.  All of the graphics, javascript, css files are cached so they do not figure into the equation.
    Is there something else beyond the IIS and IE settings that needs to be done to implement HTTP Compresssion???
    Thanks in advance for your suggestions/help.
    Len 

    Adam,
    I have read the references and may now be confused, but it seems to me that just doing the standard IIS Manager setup, which is what I've done, will not compress CFM files since the only things that are compressed under dynamic files are exe, dll and asp.
    One would think that CF should have added CFM to the list of compressed dynamic files when it was installed as it does with default.cfm, but maybe I'm expecting too much.
    If I am correct about this, then it would seem that I'm going to have to customize the compression setup as described in this quote from the reference,
    "Specify additional file types to compress. Edit the ... HcScriptFileExtensions metabase property (for dynamic files) to apply compression to additional file types."
    Am I misunderstanding this document???
    Len

  • Enabling HTTPS level authentication in SOAP adapter (PI 7.1)

    Hi,
    I am using SOAP to SOAP scenario using HTTPS level authentication in PI 7.11
    As per the SAP Note https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=891877
    We have enabled HTTPS level authentication in sender communication channel using SOAP adapter (version 7.0).
    But We are not able to have the HTTPS level authentication option in sender communication channel using SOAP adapter (version 7.1) while selecting the adapter type.
    Please suggest on this

    Hello Gabriel,
    You are right,  that option is still available in PI 7.1
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/fc/5ad93f130f9215e10000000a155106/frameset.htm
    But disappeared in PI 7.11
    http://help.sap.com/saphelp_nwpi711/helpdata/en/48/3555240bea31c3e10000000a42189d/frameset.htm
    The closest seems to be under Security Profile S/MIME. And when you use the sender cc in sender agreement, you are given the choice for validation/decryption/decryption and validation/validation and decryption.
    Hope this helps,
    Mark

  • WebService Client - how to enable HTTP Compression

    Hi
    I have written a simple WebService Client. The WebService expects that the WebService clients enable HTTP compression. This is the exact text from the docs:-
    ""1. Client should be HTTP Compression enabled
    HTTP Compression had been made mandatory for API�s. Thus API�s client should
    include �Accept-Encoding: zip� header as part of request and should be able to
    handle compressed data. Please note that system will send an error message if client
    are not http compression enabled saying client should be compression enabled."
    I do not know how to enable HTTP compression in the WebService Client. The method called is "GetInstantaneousFlowData". It accepts no arguments and returns xsd:datetime.
    The wsdl can be found at:-
    http://energywatch.natgrid.co.uk/EDP-PublicUI/PublicPI/InstantaneousFlowWebService.asmx?WSDL
    Can someone please help :-
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.Call;
    import javax.xml.rpc.ParameterMode;
    import javax.xml.namespace.QName;
    import java.util.Calendar;
    public class TestNGPubTime4 {
    public static void main(String[] args) throws Exception {
         // Setup the global JAX-RPC service factory
         System.setProperty( "javax.xml.rpc.ServiceFactory", "weblogic.webservice.core.rpc.ServiceFactoryImpl");
    // create service factory
    ServiceFactory factory = ServiceFactory.newInstance();
    // define qnames
    String targetNamespace = "http://www.NationalGrid.com/EDP/BusinessEntities/Public/";
    QName serviceName = new QName(targetNamespace, "InstantaneousFlowWebService");
    QName portName = new QName(targetNamespace, "InstantaneousFlowWebServiceSoap");
    QName operationName = new QName("http://www.NationalGrid.com/EDP/UI/GetInstantaneousFlowData",
         "GetLatestPublicationTime");
    // create service
    Service service = factory.createService(serviceName);
    // create call
    Call call = service.createCall();
    // set port and operation name
    call.setPortTypeName(portName);
    call.setOperationName(operationName); // add parameters
         call.setProperty(Call.SOAPACTION_USE_PROPERTY, Boolean.TRUE);
         call.setProperty(Call.SOAPACTION_URI_PROPERTY, "http://www.NationalGrid.com/EDP/UI/GetInstantaneousFlowData");
    //     call.setProperty(Call.ENCODINGSTYLE_URI_PROPERTY, "http://schemas.xmlsoap.org/soap/encoding/");
    call.setReturnType(new QName( "http://www.w3.org/2001/XMLSchema","datetime") );
    // set end point address : soap address location
    call.setTargetEndpointAddress("http://energywatch.natgrid.co.uk/EDP-PublicUI/PublicPI/InstantaneousFlowWebService.asmx");
    // invoke the remote web service
    Calendar result = (Calendar) call.invoke(new Object[] {});
    System.out.println("result=" + result);
    }

    Rishika,
    Thanks for your reply.
    Could I get clariffication on some more thing?
    I am using Axis 1.4 version. And I am able to implement the gzip while doing the following steps.
    1) Change the pivote value to CommonsHTTpSender.
    <transport name="http" pivot="java:org.apache.axis.transport.http.CommonsHTTPSender"/>
    2) public class RetreiveReservationsSOAPBindingStubLocal extends RetreiveReservationsSOAPBindingStub.
    I Override the method to support GZIP.
    org.apache.axis.client.Call _call = super.createCall();
    call.setOperation(operations[0]);
    _call.setUseSOAPAction(true);
    _call.setSOAPActionURI("retreiveReservations");
    _call.setEncodingStyle(null);
    call.setProperty(org.apache.axis.client.Call.SENDTYPE_ATTR, Boolean.FALSE);
    call.setProperty(org.apache.axis.AxisEngine.PROPDOMULTIREFS, Boolean.FALSE);
    call.setProperty(HTTPConstants.MCACCEPT_GZIP, Boolean.TRUE);
    call.setProperty(HTTPConstants.MCGZIP_REQUEST, Boolean.TRUE);
    call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11CONSTANTS);
    _call.setOperationName(new javax.xml.namespace.QName("", "retreiveReservations"));
    super.setRequestHeaders(_call);
    super.setAttachments(_call);
    Object resp = call.invoke(new Object[] {retreiveReservationsRequest});
    I am able to send and receive the request and response in gzip encoded format.
    Now my clarrification is,
    Is it possible to set the piote value to CommonsHTTPSender for the transport http through my code?
    How could I set the values from code?
    Reason is, I don't want to manually edit the axis 1.4's client-config.wsdd
    Since this is very critical thing, please please help me.
    Thanks in advance.
    Regards,
    Nishad Ponery

  • Weblogic 10.3: web service client enable HTTP/HTTPS connection reuse?

    hi all,
    i am writing an client app to call a web service, through a client proxy generated by jdeveloper/weblogic.
    My question is:
    for the weblogic web service client proxy, is it possible to enable HTTP/HTTPS connection reuse/pooling?
    i see there is many connection created when calling the web service (by command netstat)?
    thank you.
    lsp

    anybody can help?
    thanks

  • Enabling https for SOAP adapter

    Hello all,
    Can anyone suggest how to  enable https for SOAP adapter in PI system?
    Thank You,
    Regards,
    Hasan

    Hi Hasan,
    CHeck the blog :/people/rahul.nawale2/blog/2006/05/31/how-to-use-client-authentication-with-soap-adapter which guides you clearly
    Also check SAP Note#891877 for reference.
    Thanks and Regards,
    Naveen

  • How to enable HTTPS Port in abap system

    Hello All,
    Hope all are doing great,can any one please tell me the procedure step by step how can i enable https port in my only abap system,is it required to enable ssl also for this?..
    Regards,
    Syed

    Hi,
    For enabling the HTTPS port you need to do alot many things
    At first change the para meters in Rz10
    icm/server_port_0 - PROT=HTTPS, PORT=1443, TIMEOUT=900
    icm/HTTPS/verify_client - 1
    ms/server_port_0 - PROT=HTTPS, PORT=1443
    SE80 - Utilities > Settings > Internet Transaction Sevrer = HTTPS
    and also check SMICM under Services HTTPS is not showing as Active
    and still if you are facing any issue with the port check with the network team/firewall team whether any port is being blocked on the network/firewall.
    Regards
    Mohammed nizam

  • How to enable https for a single webapp in tomcat 5.5 ?

    Hi ,
    I want to enable https for my web app in Tomcat 5.5(with JDK 1.5, in WinXP) without affecting other webapps running in the same server . Any idea how to do it ? Pl. note , I dont want to make the entire tomcat as SSL enabled.
    Regards
    Diana

    You specify SSL in web.xml of your application. So, in that case other web applications in same server would not be affected.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>myresources</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>Following link will help you to setup SSL in tomcat:
    [http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/|http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/]
    Thanks,
    Mrityunjoy

  • JAX-RS and Weblogic 10.3 - How to enable HTTP PUT?

    I'm playing around with JAX-RS and Weblogic 10.3.
    I just sent a HTTP PUT request, and got back
    HTTP/1.1 405 Method Not Allowed
    Is this because HTTP PUT is disabled?
    If so, how do I enable it? I can't find the answer on Google or the forums here, so maybe I'm on the wrong track...

    In my case, WebLogic 10.3.1 returns this messege every time a Send a HTTP PUT request:
    Error 400--Bad Request
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.1 400 Bad Request
    The request could not be understood by the server due to malformed syntax. The client SHOULD NOT repeat the request without modifications.
    Is there any way to enable HTTP PUT and HTTP DELETE in WebLogic?
    I can´t believe it's not possible to deploy RESTful Web Applications in WebLogic. That's terrible...

  • Enable http header logging on glassfish 3.1

    Hi,
    On GF 3.1, to enable http header logging to server.log, I've tried setting the following JVM options:
    -Dcom.sun.grizzly.enableSnoop=true
    -Dcom.sun.enterprise.web.connector.grizzly.enableSnoop=true
    I have also tried modifying the domain.xml by adding snoop-enable=true attribute to the element:
    <network-config><transports><transport name="tcp" enable-snoop="true"
    But neither worked. Any help would be appreciated

    oops, wrong version, try this instead:
    asadmin set configs.config.server-config.network-config.transports.transport.tcp.enable-snoop=true
    asadmin set configs.config.server-config.http-service.access-logging-enabled=true

  • How do i enable HTTPS for website.

    Hello colleagues,
    I want to enable HTTPS for website.for
    CRM 7.0 Image server.
    Please tell me the way of doing this.
    thanks in advance
    Atul

    Read,
    http://help.sap.com/saphelp_nw04/helpdata/en/65/6a563cef658a06e10000000a11405a/frameset.htm
    Regards
    Juan

  • Enable HTTP Over SSL: New documentation

    Hi,
    Fyi, a new article has been published in the CQ5.5 documentation:
    Enabling HTTP Over SSL
    hope that helps 
    scott

    Enable ssl for HTTP
    In the administration guide, you shoud find this
    you have to modify ssl.conf to enable ssl, as well in th eopmn.xml there is an option for enable ssl. but more accurant check the guide.
    http://download.oracle.com/docs/cd/B14099_19/core.1012/b13995/sslmid.htm#CHDDGBGF

  • CNA question: enabled http is a must?

    Hi,
    I have a simple question: Enabled HTTP is a must for connect Cisco Network Assistant to a switch (for example Cat3560v2) or https access is enough?
    thx in advance!

    Hi Tivadar,
    IP HTTP server or HTTPS server needs to be enabled in order to allow the CNA to access the device. There are some more options you can configure.
    Have a look here (it is for the 4500 series):
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_network_assistant/version5_0/quick/guide/English/C4K_GSG.html
    I hope that helps :-)

  • Enabling HTTPS for gatewayed requests

    Hi,
    We wanted to find out if there is a way we can enable HTTPS for ALUI portal based on the URL pattern for the gatewayed requests. For example, the two links below have a different ending URL pattern "ABC" vs "DEF". Can we enable HTTPS for only the requests that end with "DEF"?
    http://<HOST_NAME>/portal/server.pt/gateway/PTARGS_0_3159_12576_1962_0_43/<HOST_NAME>/<APP1_NAME>/a.htm?action=onLoadABC
    http://<HOST_NAME>/portal/server.pt/gateway/PTARGS_0_3159_12576_1962_0_43/<HOST_NAME>/<APP2_NAME>/a.htm?action=onLoadDEF
    Thanks.

    This is a kind of workaround.
    You can try to add your https url (or better some pattern) under "HTTP Configuration", this mean that only url's matched to this pattern will be protected. Then in your source code using transformURL function point to protected resource, this should solve your question.

  • Enabling https on already running apache server

    How to enable https already running apache server.
    Regards

    Saurabh,
    > How to enable https already running apache server.
    >
    It should be on by default. It is controlled by the secure listen
    directive in httpd.conf
    - Anders Gustafsson, Engineer, CNE6, ASE
    NSC Volunteer Sysop
    Pedago, The Aaland Islands (N60 E20)
    Novell does not monitor these forums officially.
    Enhancement requests for all Novell products may be made at
    http://support.novell.com/enhancement
    Using VA 5.51 build 315 on Windows 2000 build 2600

Maybe you are looking for

  • Error converting a read string to type Double.

    I'm trying to read data stored in a text file, a mixture of strings and data. Using MyReader As New FileIO.TextFieldParser(source) Do intSampleCnt = intSampleCnt + 1 strSample(intSampleCnt) = MyReader.ReadLine ' Reads a string like "filename.txt" dbl

  • Any problems with i5/i7 yet?

    All you lucky people that received their i5/i7 Quads.... anyone having the C2D problems like screen flickerings, black outs, slow flash.....??? I cancelled my order when I saw all those problems and is still hesitating to place my order again. Until

  • Process Multiple Files - Not Renaming RAW to JPG

    Im trying to process a few RAW files and convert them to JPG. The Process raw dialog is set up correct, but it seems after the first image is processed, I am prompted for a location to save the file, and its wanting to be saved as a .psd file and in

  • Lost loops of GB 5 when updating to 6

    I have just updated my 5 version of GB to the newer 6 through APPstore. I realized that the new version does not include thousand of AIF loops that were included in the former one, such as funky and motown drums and many others, and some of the exist

  • ACE migration

    Migrating from a single 4710 appliance to a pair of ACE30s in a VSS cluster.  The 4710 is running in bridged mode and I plan on utilizing the same VLANs and mode for the ACE30s.  They are currently configured as a redundant pair.  I have not yet turn