CProjects Roles, HTTP Connection, RABAX_STATE error

Hi All,
1. Which are the standard cProjects Roles to be maintained ? Where we can have that list ?
2. How to maintain or say configure the HTTP connection for cProjects (steps for doing it)?
3. Getting the termination type error : RABAX_STATE, how to resolve it ?
Points for userful information.
Thanks and regards,
Nishit

Hi
Answer to your 1 question is given below
The following single roles are delivered with cProjects:
SAP_CPR_PROJECT_ADMINISTRATOR     :Create projects (project definitions).
SAP_CPR_TEMPLATE_ADMINISTRATOR     :Create, change, read, and delete all templates in cProjects.
SAP_CPR_USER     :Use cProjects, but no authorization to perform any activities in a particular project. To do this users need project-specific authorizations, which can be distributed either directly or through their assignment to a role.
The following composite roles are delivered with cProjects:     
SAP_CPR_DECISON_MAKER     :cProjects decision maker. Contains the role SAP_CPR_USER.
SAP_CPR_INTERESTED     :cProjects interested party. Contains the role SAP_CPR_USER.
SAP_CPR_MEMBER     :cProjects team member. Contains the role SAP_CPR_USER.
SAP_CPR_PROJECT_LEAD     :cProjects project manager. Contains the role SAP_CPR_PROJECT_ADMINISTRATOR and SAP_CPR_USER
SAP_CPR_TEMPLATE_RESPONSIBLE     :cProjects template responsible. Contains the roles SAP_CPR_TEMPLATE_ADMINISTRATOR and SAP_CPR_USER
Edited by: Yogesh  Pande on Dec 18, 2008 5:38 AM
Edited by: Yogesh  Pande on Dec 18, 2008 5:41 AM
Edited by: Yogesh  Pande on Dec 18, 2008 5:43 AM

Similar Messages

  • How to solve Error in http connection. Error -1

    urlMidlet2===http://localhost:8080/testProj?userId=20&selMPBL=23&svMPBL=IPOD+Touch+Screen+e!1!Tue+Jan+06+00:00:00+UTC+2009!Tue+Jan+06+00:00:00+UTC+2009!Sat+Jan+31+00:00:00+UTC+2009!Mp3+Player!IPOD!Rejected!12
    [j2mepolish] Generic/DefaultColorPhone: !1!2!1222!13333
    [j2mepolish] Generic/DefaultColorPhone: Protocol for this connection is http
    [j2mepolish] Generic/DefaultColorPhone: This object is connected to localhost host
    [j2mepolish] Generic/DefaultColorPhone: HTTP Port in use is 8080
    [j2mepolish] Generic/DefaultColorPhone: respCode=====-1
    [j2mepolish] Generic/DefaultColorPhone: Error in opening HTTP Connection. Error#-1
    Why is this error coming? How to solve it?
    Thanks in advance.
    Edited by: J2me_Beginner on Jun 7, 2009 9:38 PM

    I am making a form using an interface. When Activate the Form, I got this error:
    Invalid HTTP connection: ADS
    Message no. FPRUN000
    But I do not know how to solve or config ADS. Any one know how to slove this error ?
    Thanks a lot.

  • HTTP connection failed error

    Hi experts,
          i am getting <b>http connection failed</b> error when i am trying to integrate backend system.
           I think i provided all the parameters correctly.
    we are using integrated ITS. Can any one suggest me any think . its very urgernt .
       Points will be awarded for helpful answers.
    thanks.....
    rao

    http://xxxx:8037/sap/bc/gui/sap/its/webgui?sap-....
    ITS Host Name : xxxx:8037
    ITS path: /sap/bc/gui/sap/its/webgui/
    ITS protocol : http
      I am getting only http test failed. And also i created one transaction iview its working fine. I am worying whether this failure may cause any problem in the future i mean for IAC iview.

  • Webutil - Open HTTP Connection failed error

    Hi all,
    I am trying to setup webutil on 9iDS. I have configured all the necessary files & the registry as per the manual & the read me.html.
    I have doubts on the \ (slash) used for the virtual path in orion_web.xml and forms90.conf. Is it supposed to be
    C:\webutil\lib or C:/webutil.lib ?
    Should WebUtilArchive be set to /forms90/webutil/webutil.jar or /webutil/webutil.jar?
    Can someone please help me with the foll. error.
    Console message
    WARNING: Unable to cache http://houwdisndgd01:8888/forms90/java/=/forms90/webutil/webutil.jar
    Loading http://houwdisndgd01:8888/forms90/webutil/jacob.jar from
    JAR cache
    Loading http://houwdisndgd01:8888/forms90/java/f90all_jinit.jar from JAR cache
    load: class oracle.forms.webutil.common.RegisterWebUtil not found.
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
    BTW I don't get this error on the apps. server but my call to CLIENT_WIN_API_ENVIRONMENT.READ_REGISTRY or WRITE_REGISTRY still raises the When Others exception on the apps server.
    Please help !
    Thanks
    Kalpana

    Check the entries pointing to webutil
    I see an '=' in your path.
    cache http://houwdisndgd01:8888/forms90/java/=/forms90/webutil/webutil.jar
    my entries for webutil.jar (on windohs) looks like this
    webUtilArchive=/forms90/webutil/webutil.jar,/forms90/webutil/jacob.jar

  • Java2Java HTTP-Connection - TCP error???

    Hello,
    I'm trying to do a stress-test on a java webserver...
    What do I do: I have a HttpServer with some nifty classes that generate some nifty site and make excessive use of the word "nifty"... but let's drop that :-)
    On the other hand, I have this simple code:
    URL url = new URL("http://localhost:10000/");
          HttpURLConnection huc = (HttpURLConnection)url.openConnection();
          DataInputStream dis = new DataInputStream(huc.getInputStream());
          while (dis.available() > 0) dis.readChar();
          dis.close();
          if (huc.getResponseCode() != 200) System.out.println(huc.getResponseCode());
          huc.disconnect();
          if (i % 100 == 0) System.out.println("Thread "+this+" "+i);Binding the webserver on port 10000 and running this piece of code results in this error:
    java.io.IOException: Premature EOF
         at sun.net.www.http.ChunkedInputStream.readAheadBlocking(ChunkedInputStream.java:538)
         at sun.net.www.http.ChunkedInputStream.readAhead(ChunkedInputStream.java:582)
         at sun.net.www.http.ChunkedInputStream.read(ChunkedInputStream.java:669)
         at java.io.FilterInputStream.read(FilterInputStream.java:116)
         at sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(HttpURLConnection.java:2370)
         at sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(HttpURLConnection.java:2365)
         at sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(HttpURLConnection.java:2354)
         at java.io.DataInputStream.readChar(DataInputStream.java:346)
         at testFrame.HTTPStressTestItem.run(HTTPStressTestItem.java:42)
         at java.lang.Thread.run(Thread.java:619)Well, I tried a bit of this and a bit of that and finally took wireshark to look at what actually is send.
    The captured packages start quite normal with som SYN, ACK and FIN packets.
    The first interesting packet is the HTTP request doesn't look too bad.
    GET / HTTP/1.1
    User-Agent: Java/1.6.0_02
    Host: localhost:10000
    Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    Connection: keep-alivebut was really stunned me was that Whireshark told me: Checksum: 0xfec2 [incorrect, should be 0xfde2 (maybe caused by "TCP checksum offload"?)]
    Ok, one ACK, than the first reply packet:
    HTTP/1.1 200 OK
    Transfer-encoding: chunkedLooks ok, but: Checksum: 0xfe57 [incorrect, should be 0x4f87 (maybe caused by "TCP checksum offload"?)]
    And after another ACK, the next reply packet contained the whole HTML-code the server was supposed to produce (It's not so big yet, so it fit's in one packet)
    but: Checksum: 0xff05 [incorrect, should be 0xc99e (maybe caused by "TCP checksum offload"?)]
    What the **** ?
    Has Wireshark gone insane or is java producing incorrect TCP packets?

    Hi,
    nafur wrote:
    Looks ok, but: Checksum: 0xfe57 [incorrect, should be 0x4f87 (maybe caused by "TCP checksum offload"?)]
    And after another ACK, the next reply packet contained the whole HTML-code the server was supposed to produce (It's not so big yet, so it fit's in one packet)
    but: Checksum: 0xff05 [incorrect, should be 0xc99e (maybe caused by "TCP checksum offload"?)]
    What the **** ?
    Has Wireshark gone insane or is java producing incorrect TCP packets?Wireshark gives you a hint about the incorrect checksum: "TCP checksum offload". This means, that the operating system is released from the task to compute a correct checksum, as the hardware (or firmware) on the ethernet chip will do it. However Wireshark is capturing the packets before they go to the chip. so it sees the wrong checksum. Anyway. the packets are sent with the correct checksum.
    Martin

  • HTTP Connection timeout setting

    Hi,
    I'm using ebXML protocol for B2B 10.1.2.3+MLR 5.
    I talk to multiple trading partners and when one of the TP is down, we see that there is a pileup of messages in the backend queues.
    This is because, there is constant message inflow into the JMS queues by the back-end application and each message is taking a long time to timeout (nearly 20 seconds). So what effectively happens is that a message was supposed to reach the TP in 1 sec will take 20 sec before it labels as a HTTP connection timeout error .
    Can we set the HTTP Connection timeout setting in B2B? (I saw a setting in B2BGurus for EDI though)
    If not, please can you suggest if it can be set in the Application Server level?
    Please help!
    Thanks in advance,
    Warm Regards,
    Suhas.

    All,
    At the application server level, there is a timeout setting in httpd.conf. The default value has been set to 300 seconds.
    Regards,
    Suhas.

  • Java.io.IOExcetion :open HTTP Connection Failed

    Hi Everybody,
    I'm getting the java.io.IOExcetion :open HTTP Connection Failed error when I'm trying run a html page with an embedded Applet in it.
    We are having a proxy server and all our network traffic have to be done through proxy.
    But in Browser we give exemption to local host.
    When I run the html file outside JDeveloper keeping it in the same directory in which the Applets class file is : I'm getting the Applet running.
    But If I run the html page From JDeveloper , I'm getting the above said error.
    My JRE is configured to use Browser settings and the browser is set to use the proxy.
    Why are applets not able to connnect to the sever?
    How to make Jdeveloper connect to proxy?
    Thanking you for the answer?
    Samba

    Oh ! I thought i could change in my pc control panel settings for rectify the error (java.io.IOException: open HTTP connection failed.)..
    Ok now my name is displayed in forum..
    Which trigger i have to call when a form is loaded? (Instead of When-New-Form-Instance ).
    I am running samples which i downloaded from your website only.(A java input dialog box)
    Input Dialog box is not displayed?
    and also java.io.IOException: open HTTP connection failed error is displayed...

  • HTTP connection to ABAP Error

    What is this error"HTTP connection to ABAP Runtime failed. Error: 403 Forbidden URL: http://dst01pi:8001/sap/xi/simulation?sap-client=100 User: PIDIRUSER" ?

    Make sure user PIDIRUSER has role SAP_XI_ID_SERV_USER.
    U may try changing your service user password using SAP Note 721548.
    Regards,
    Prateek

  • Error trying to create https connection from Web Dynpro

    Hi experts!!
    I am trying to create a WD view with an actionButton and a form template, when the user fills the data in the form and presses the button, i want to create an Https connect and post some parameters to the URL.
    HttpsURLConnection cannot be resolved,
    com.sun.net.ssl.internal.ssl.Provider() does't not exist in the package com.sun.net.ssl.internal.ssl.Provider()
    do i need to add any jars?? I've already added the jsse.jar
    The code i use is the following.
    private void sendHttp(){
          String response = "";
          HttpsURLConnection connection = null;
          try {
                      System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
                      java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
                      URL url = new URL(<your_url>);
                      connection = (HttpsURLConnection) url.openConnection();
                      connection.setDoInput(true);
                      connection.setDoOutput(true);
                      connection.setAllowUserInteraction(true);
                      connection.setUseCaches(false);
                }     catch(Exception e) {
                      response = response +  "Error in getting connection: " ;
                      response = response +  e ;
                if (connection != null){
                      try {
                            connection.setRequestMethod("POST");
                            connection.setFollowRedirects(true);
                            //build all the parameters into 1 string
                            String query = "parameter1name=" + URLEncoder.encode(parameter1value);
                                  query += "&";
                                  query += "parameter2name=" + URLEncoder.encode(parameter2value);
                            connection.setRequestProperty("Content-length",String.valueOf (query.length()));
                            connection.setRequestProperty("Content-Type","application/x-www- form-urlencoded");
                            connection.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)");
                            // open up the output stream of the connection
                            DataOutputStream output = new DataOutputStream( connection.getOutputStream() );
                            // write out the data
                            int queryLength = query.length();
                            output.writeBytes( query );
                            output.close();
                            //if responsecode <> 200 you should stop: should always be 200
                            String responsecode = connection.getResponseCode();
                            if (responsecode.equalsIgnoreCase("200")){
                                  String inputLine;
                                  StringBuffer input = new StringBuffer();
                                  BufferedReader in =     new BufferedReader(     new InputStreamReader(connection.getInputStream()));
                                                                                    //Get site response
                                  while ((inputLine = in.readLine()) != null) {
                                        input.append(inputLine);
                                  in.close();
                                  response = response + input.toString();
                      }     catch(Exception e) {
                          response = response +  "Error in using connection: " ;
                          response = response +  e ;
              wdContext.currentContextElement().setResponse(response);

    Hai ,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/526bd490-0201-0010-038e-d3ff7eb1d16e
    please check above link .
    application server u have take load balancing click on next  there u take click on radio button of Msg server .
    Regards ,
    venkat

  • HTTP connectivity error while using Blackberry MDS and JDE 5.0.0

    Hello,
    I am using BB MDS simulator 4.1.2 and BB JDE 5.0.0 for testing sample Oracle ADF Mobile client apps that I have developed.
    My app tries to access webservices via HTTP.
    Here is where I am encountering a HTTP connectivity issue.
    1. For instance, while trying to test HTTP using Blackberry browser, I see the error : "Unknown host mobile.blackberry.com:80"
    2. The sample I tried to run to test webservices - accepts a word from the user and gets it translated in to a desired language, using a webservice provided on the internet.
    Here, I have tried to translate the word 'madam' from English to French.
    I have encountered a HTTP/1.0 400 Bad Request.
    Kindly have a look at the MDS Trace as below (related entries in bold) and suggest if I am missing something from the configuration perspective.
    PS : I have tried various options from the blackberry forums but they were not very helpful.
    <2010-05-24 17:48:16.000 IST>:[215]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Device connections: AVG latency (msecs)0>
    <2010-05-24 17:48:16.000 IST>:[216]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = RemovedReceivingQueue, DEVICEPIN:CONNECT
    IONID = 2100000a:771975383, ReceivingQueueSize = 0>
    <2010-05-24 17:48:16.343 IST>:[217]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Notification, TAG = 36110347, STATE = DE
    LIVERED>
    <2010-05-24 17:48:19.046 IST>:[218]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = RemovedSendingQueue, DEVICEPIN = 2100000
    a>
    <2010-05-24 17:49:57.437 IST>:[219]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Receiving, TAG = 371769629, DEVICEPIN =
    2100000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 0, TYPE = CONNECTION-REQUEST, CONNECTIONHANDLER = httpc, PR
    OTOCOL = TCP, PARAMETERS = [www.webservicex.net:80], SIZE = 121>
    <2010-05-24 17:49:57.437 IST>:[220]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = CreatedReceivingQueue, DEVICEPIN:CONNECT
    IONID = 2100000a:771975384, ReceivingQueueSize = 1>
    <2010-05-24 17:49:57.437 IST>:[221]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = StartExecuting, TAG = 371769629, DEVICEP
    IN = 2100000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 0, TYPE = CONNECTION-REQUEST, CONNECTIONHANDLER = http
    c, PROTOCOL = TCP, PARAMETERS = [www.webservicex.net:80], SIZE = 121>
    <2010-05-24 17:49:57.437 IST>:[222]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = EndExecuting, TAG = 371769629, DEVICEPIN
    = 2100000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 0, TYPE = CONNECTION-REQUEST, CONNECTIONHANDLER = httpc,
    PROTOCOL = TCP, PARAMETERS = [www.webservicex.net:80], SIZE = 121>
    <2010-05-24 17:49:57.437 IST>:[223]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Available threads in DefaultJobPool = 9 r
    unning JobRunner: DefaultJobRunner-3>
    <2010-05-24 17:49:57.453 IST>:[224]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: DefaultJobRunner-3 started>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION =>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Transmission Line Section]:>
    *<2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI*
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = GET /TranslateService.asmx/Translate?LanguageMode=English
    TOFrench&Text=madam HTTP/1.1>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Headers Section]: 2 headers>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = x-rim-conttime:10000>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Host:www.webservicex.net>
    <2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Parameters Section]: 2 parameters>
    *<2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI*
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = LanguageMode=EnglishTOFrench>
    *<2010-05-24 17:49:57.453 IST>:[225]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = ReceivedFromDevice, DEVI*
    CEPIN = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Text=madam>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION =>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Transmission Line Section]:>
    *<2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN*
    *= 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = GET /TranslateService.asmx/Translate?LanguageMode=EnglishTOFren*
    ch&Text=madam HTTP/1.1>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Headers Section]: 6 headers>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Connection:close>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Via:MDS_4.1.2.17>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Accept:*/*>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = x-rim-original-accept:*/*>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = x-rim-conttime:10000>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Host:www.webservicex.net>
    <2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Parameters Section]: 2 parameters>
    *<2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN*
    *= 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = LanguageMode=EnglishTOFrench>*
    *<2010-05-24 17:49:57.453 IST>:[226]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToServer, DEVICEPIN*
    *= 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Text=madam>*
    <2010-05-24 17:49:57.515 IST>:[227]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Statistics save task started>
    <2010-05-24 17:49:57.625 IST>:[228]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Statistics save task finished -- number o
    f rows inserted:5>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION =>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Transmission Line Section]:>
    *<2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN*
    *= 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = HTTP/1.0 400 Bad Request>*
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Headers Section]: 2 headers>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Content-Type:text/plain>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = Content-Length:35>
    <2010-05-24 17:50:18.453 IST>:[229]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HANDLER = HTTP, EVENT = SentToDevice, DEVICEPIN
    = 2100000a, CONNECTIONID = 771975384, HTTPTRANSMISSION = [Parameters Section]: 0 parameters>
    <2010-05-24 17:50:18.468 IST>:[230]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = CreatedSendingQueue, DEVICEPIN = 2100000
    a>
    <2010-05-24 17:50:18.468 IST>:[231]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: DefaultJobRunner-3 stopping>
    <2010-05-24 17:50:18.468 IST>:[234]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Sending, TAG = 36110349, DEVICEPIN = 210
    0000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 0, TYPE = DATA, SIZE = 48>
    <2010-05-24 17:50:18.468 IST>:[235]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: DefaultJobRunner-3 stopped>
    <2010-05-24 17:50:18.484 IST>:[236]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Finished JobRunner: DefaultJobRunner-3, a
    vailable threads in DefaultJobPool = 10, time spent = 21047ms>
    <2010-05-24 17:50:18.500 IST>:[239]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Sending, TAG = 36110350, DEVICEPIN = 210
    0000a, VERSION = 16, CONNECTIONID = 771975384, SEQUENCE = 1, TYPE = DISCONNECT-ORDER, SIZE = 0>
    <2010-05-24 17:50:18.500 IST>:[240]:<MDS-CS_MDS>:<DEBUG>:<LAYER = SCM, EVENT = Device connections: AVG latency (msecs)32>
    <2010-05-24 17:50:18.500 IST>:[241]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: ConnectionsInputStreamesReader0-Def
    aultJobRunner-3 stopping>
    <2010-05-24 17:50:18.500 IST>:[242]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, HTTP Thread: ConnectionsInputStreamesReader0-Def
    aultJobRunner-3 stopped>
    <2010-05-24 17:50:18.500 IST>:[243]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = RemovedReceivingQueue, DEVICEPIN:CONNECT
    IONID = 2100000a:771975384, ReceivingQueueSize = 0>
    <2010-05-24 17:50:18.531 IST>:[244]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Notification, TAG = 36110349, STATE = DE
    LIVERED>
    <2010-05-24 17:50:18.562 IST>:[245]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = Notification, TAG = 36110350, STATE = DE
    LIVERED>
    <2010-05-24 17:50:19.046 IST>:[246]:<MDS-CS_MDS>:<DEBUG>:<LAYER = IPPP, EVENT = RemovedSendingQueue, DEVICEPIN = 2100000
    a>

    Hi, there:
    A couple of things to try and check:
    - Does your network connection goes through proxy server? If you are behind a proxy server, then you would need to set up proxy server in MDS by open the file <MDS simulator install>/config/rimpublic.property, go to the [HTTP Handler] section, and add the following line:
    application.handler.http.proxyEnabled = true
    application.handler.http.proxyHost=<your proxy server host name>
    application.handler.http.proxyPort=<your proxy server port>
    - Try BlackBerry MDS simulator that came with JDE 5.0. MDS 4.1.2 should still work with 5.0 device simulators, but it's worth a shot
    Can you hit the web service from the browser in your Blackberry simulator? Feel free to directly contact me at [email protected] - if necessary we can also pull in BlackBerry/RIM resources to help diagnose this.
    Thanks,
    Joe Huang

  • Error : HTTP Connection to ABAP Runtime failed

    Hi,
       i am working on xml to flatfile interface.when i am trying to test the scenario from ID - > Tools -> Test configuration option i am getting below error.
    Receiver Determination <Not found>
    Internal Error Http connection to ABAP runtime failed.
    Error : 403 for bidden.
    I have checked in Receiver determination its been configured properly.
    Is it any basis settings problem ?
    Thnx,
    Siva.

    Hi Siva,
    Check this links
    /people/krishna.moorthyp/blog/2006/07/23/http-errors-in-xi
    http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
    Regards
    Ramesh

  • SM59 Error in HTTP connections to ABAP Sytems

    Hi All,
      My scenario is to connect to XI systems... I need to create a RFC destination (HTTP connections to ABAP Systems) in SM 59 with below details.....
    Target host: xyz.abc.com
    Service No. : 0000
    Prefix path : /sap/xi/engine?type=entry
    But SAP GUI is not accepting the character "?" ...
    Can any one tell what can be done to avoid this error?

    Hi,
    it's only a warning -> just press 'Enter' key.
    Regards
    Patrick

  • HTTP connection to ABAP Runtime failed. Error: 403 Forbidden

    Hi ALL
    We where testing our scenario using the Test Configuration in Integration Engine.
    We have come across the following error in the second step of Determining the receiver.Here is the error message we received...
    HTTP connection to ABAP Runtime failed. Error: 403 Forbidden URL: _http://SAPXDV01.sap.client1.local:8000/sap/xi/simulation?sap-client=150 User: PIDIRUSER
    Please, do let us know ... if you have received similar error & what solution can be applied...
    Your help is greatly appreciated!
    Thank you,
    Patrick

    Hi,
    Go through this thread...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0f00c890-0201-0010-beb2-c96050edc426
    JCO_COMMUNICATION_FAILURE
    Error in XI server: JCO_COMMUNICATION_FAILURE in Message Mapping
    This might help you..
    Regards,
    Divya

  • File To Proxy Error ICM HTTP CONNECTION FAILED

    Dear All ,
    Iam Doing File to Proxy Scenario.
    XML File is picked by XI Adapter is Properly and if i go and Check in SXMB_MONI,
    It is Showing Status is Scheduled for outbound processing and if i see in  Que Status  is stop with red symbal .If I Click on QueueID it is opening the inbound qRFC Monitoring ,there if click on Queue Name it is showing Status :SYSFAIL,If I Click on SYSFAIL it is Showing the XI Error CLIENT_RECIVE_FAILED.INTERNAL:Que Stop, If I Click on QueueName it is showing while Executing the Functiomodule SXMS_ASYNC_EXE It is having prob i thik showin Error Text :CLIENT_RECIVE_FAILED.INTERNAL:Que Stop,If I Click on Quename it is showing a program RSXMB_SELECT_MESSSAGES is Similar to our SXMB_MONI ,here it is showing the Status Falg Red ,If I Click on that message it is opening the pipeline steps , here while calling Adapter Showing red symbal  giving the Error Message ICM_HTTP_CONNECTION_FAILED
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">CLIENT_RECEIVE_FAILED</SAP:Code>
      <SAP:P1>400</SAP:P1>
      <SAP:P2>ICM_HTTP_CONNECTION_FAILED</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:Stack>Error while receiving by HTTP (error code: 400, error text: ICM_HTTP_CONNECTION_FAILED)</SAP:Stack>
      <SAP:Retry>A</SAP:Retry>
      </SAP:Error>
    Please help me its urgent.
    Regards
    Kumar

    hi
    This is the problem relleated to the HTTP connections, since using the proxy theXML travels to the destination, on your receiveing system make sure HTTP service are active.
    in R/3 run this report :SPROX_CHECK_HTTP_COMMUNICATION  you will get the error then proceed with the below steps to fix it.
    YOur HTTP seriveces on the R/3 have some problem.....
    Goto SMICM>goto>servicess you should see the HTTP service running with the ABAP port entry, if this is up then check
    SICF--->press f2 you should not have any proxy check there.....
    if these are fine then problem is with the Sproxy configuration........

  • HTTP Connection to R/3 System error- HTTP/1.0 404 Not found

    Hi,
    I am using a HTTP connection to XI to extract data from R3 to XI. The HTTP connection I have created in R3 are getting an error - "HTTP/1.0 404 Not found" while testing the connection.
    Porperty maintained in the connection:
    Terget host = <XI server address>
    Service No = 8000
    Path Prefix = /sap/xi/engine/adapter_plain?
    The exchange profile in XI (PI 7.0) system is as follows:
    com.sap.aii.connect.integrationserver.r3.httpport = 8000
    HTTP port is set as 8000 in SMICM services.
    The same type of connection is working fine in the lower PI and R3 environment but failing on productive  system.
    Thanks for your help.
    Regards

    Hi,
    Well... you are trying to configure a HTTP RFC destination in SM59, aren't you?
    Dont worry about that. It is just a warning. Click on return or space bar after typing path prefix.
    Then save and test the connection.
    Carlos

Maybe you are looking for

  • How do I use two different apple IDs on one itunes?

    How do I use two different apple IDs on one itunes?

  • Can't access any songs after reinstallation of iTunes

    Not very good with computers or anything, so please be gentle. I got stuck with the whole Version 5 bug and had to re-install my iTunes software in order to be able to use it. I got through that okay, but now I have another huge problem. Every time I

  • Lightroom on a PC and Mac

    Does the licensing allow you to do one install on a PC and another install on a Mac? I thought it was supposed to be dual platform, but just got off the phone with Adobe and was told that while the disk will install on either platform, you have to ch

  • Global Application Parameters for EJB

    Hello all, I did a search for this on these forums and there are there a TON of threads of developers wanting to implement the classic Singleton pattern so that all EJB's of an application can access "Global Application Parameters". Most of these I'v

  • How to download and install SAP Net Weaver Gateway Plug-in for Eclipse?

    I have installed the SAP UI5 development tool kit for Eclipse. What else should I do? How can I download SAP Net Weaver Gateway Plug-in for Eclipse? After developing the application, should I run that with Apache Tomcat? How to get the access to data