How to determine the Message Server ipaddress and Port Num

Hi All,
I installed SAPR/3 4.7EE on windows with Local Installtion on windows and the SystemNumber is 00.
I am developing one SAP Load Balancing System Object in the Netweaver Portals,at the time of creating it is asking the values of Message Server IP addess and the Port number.
Can i give the same ipaddress of SAP R/3 server as Message Server Ip or its different? If it is different, How can we determine the Message Server IP addess and the Port number?
Regds
Phanikumar

Hi Pahani,
Message server ip is nothing but your server IP if it is stand alone and port is 3600.
if you want to check the info got to tcode SMMS>GOTO tab select PARAMETERS>display.it will show the info.
cheers
Shyam.

Similar Messages

  • How to read the J2EE server hostname and port programmatically

    Is there any API to read the J2EE server host and port programmatically? I am looking for the hostname where the components are deployed so that I can append the wsdl path to the server and create an URL.

    Hi Larry,
    there is a standard J2EE Servlet API  for your case.
    In a servlet or jsp file you can get the host and prot from the request object.
    For example in a JSP file :
    request.getScheme();
      request.getServerName()
        request.getServerPort()
    You can check the whole API here :
    http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/ServletRequest.html#getServerName()
    Bets Regards
    Bojidar

  • Determining Message Server Host and Port information

    Hi,
    I am working on the NWDS creating a Java WD application and I was told which Netweaver system I should work on but I was not told the Message Server Host  information neither the Port information. I ran transaction SM51 (right click->details)in the Netweaver system but the information it is not working. Even though I can telnet this server port if I go to the J2EE Engine window within the NWDS I do not see the green light. I just see "N/A". I also tried to deploy my application but I keep getting this message: "Cannot determine sdm host (is empty). Please configure your engine/sdm correctly".
    Please advice,
    Diego.

    Hi Diego,
    in order to see Message Server Host information and Port information go to SAP J2EE Engine start page: e.g. http://system-name:57100/index.html (use administrator pws).
    Then click on System Information, here on the top you can read the Message Server Host and Port.
    Hope this help you.
    Bye,
    Vito

  • How to start the Message Server?

    Hi,
    I wish to start the J2EE engine and for the same it is mandatory to start the Message Server first.
    In order to start the message server, I run the following command:
    <i><b>D:\usr\sap\J2E\SYS\exe\uc\NTI386>msg_server start
    msg_server=>sapparam(1c): No Profile used.
    msg_server=>sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    [Thr 7972] Wed Jul 25 23:39:18 2007
    [Thr 7972] *** ERROR => MsSetWorkDir: chdir D:\usr\sap
    D00\work [msntserv.c   170]
    [Thr 7972] *** ERROR => MsSPrvInit: MsSetWorkDir [msntserv.c   87]
    [Thr 7972] *** ERROR => mainU: MsSPrvInit [msxxserv.c   1634]</b></i>
    I gave my best time to search for Profile configuration details. But I could not do that.
    <b>Can  somebody tell me how to start the Message Server?</b>
    regards,
    Anand

    Hi Anand,
    Will be good to know what OS are you using...
    If you're tryng to start an instance use <prompt>: startsap pf=<profile of the system you want to start>
    If you logon as <sid>adm just type startsap
    If for some reason you need to start only the message server try  <prompt>: msg_server start pf=<profile of the system you want to start>
    Regards
    Juan
    Please reward with points if helpful

  • How to return the message in MTI and bitmap?

    Here we receive xml message from client but the problem is this coding is for the first time it receive MTI message, so how can i do if i receive from client in xml type then convert to MTI then response it as xml again to client.
    Is it too hard to understand?????
         * Waits and receive an ISOMsg over the TCP/IP session
         * @return the Message received
         * @exception IOException
         * @exception ISOException
        public ISOMsg receive() throws IOException, ISOException {
            byte[] b=null;
            byte[] header=null;
            LogEvent evt = new LogEvent (this, "receive");
            ISOMsg m = createMsg ();
            Socket socket = getSocket();
            m.setSource (this);
            try {
                if (!isConnected())
                    throw new ISOException ("unconnected ISOChannel");
                synchronized (serverIn) {//read byte/array of byte
                    int len  = getMessageLength();
                    int hLen = getHeaderLength();
                    if (len == -1) {
                        if (hLen > 0) {
                            header = readHeader(hLen);//read in message header
                        b = streamReceive();
                    else if (len > 0 && len <= 10000) {
                        if (hLen > 0) {
                            // ignore message header (TPDU)
                            // Note header length is not necessarily equal to hLen (see VAPChannel)
                            header = readHeader(hLen);//header lenght read the message header
                            len -= header.length;
                        b = new byte[len];
                        serverIn.readFully(b, 0, len);//get the input from user with byte type,0 length into lenght,read the byte to server in.
                        getMessageTrailler();  
                    else
                        throw new ISOException(
                            "receive length " +len + " seems strange");
                *// TODO:*
    *         // prefix with standard ISO MTI and bitmap*
                *// using ISOMsg setters*
                m.setPackager (getDynamicPackager(b));//msg receive
                m.setHeader (getDynamicHeader(header));
                if (b.length > 0 && !shouldIgnore (header))  // Ignore NULL messages
                    m.unpack (b);//raw message
                m.setDirection(ISOMsg.INCOMING);//set the direction for incoming msg into isoMsg
                m = applyIncomingFilters (m, header, b, evt);//remove the incoming filter to isoMsg
                m.setDirection(ISOMsg.INCOMING);
                evt.addMessage (m);
                cnt[RX]++;
                setChanged();
                notifyObservers(m);
           catch {
            return m;
        }

    check this link, and use as per you requirement
    XI: How-to on JDBC receiver response
    JDBC Receiver Adapter -- Synchronous Select – Step by Step
    Regards
    Chilla

  • How application know the Principal server down and connect to mirror server ?

    I have setup the database mirroring for disaster recovery solution where we don't need the witness server for fail over.
    But under high-availability mode, If the principal server fails, the mirror server automatically becomes the new principal server and recovers the principal database using a witness server. Now my question is how application server or client application knows
    to connect the mirror server which is now the new principle server.
    Do we need to handle any condition in connection string which is using in client application or any other way ?
    If you think my suggestion is useful, please rate it as helpful.
    If it has helped you to resolve the problem, please Mark it as Answer.
    Varinder Sandhu www.varindersandhu.in

    Check these articles. You basically set the failover partner .
    http://msdn.microsoft.com/en-us/library/5h52hef8(v=vs.110).aspx
    http://blogs.msdn.com/b/spike/archive/2010/12/08/clarification-on-the-failover-partner-in-the-connectionstring-in-database-mirror-setup.aspx
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • How to disable the message from setUser and setPassword

    When I call OracleConnectionCacheImpl.setUser and setPassword,
    I get some message like this:
    Setting the user name and passwwdd xxxx xxxxx
    How can I disable this message?

    You are correct.  The only way to stop it, is to turn off iMessage.  Your frustration is actually the reason they made iMessage.  It was designed so you could be working on your Mac, and if you recieved a text message, you could reply with out having to locate your phone.  I understand it can be frustrating because in my expeirence, when I'm away from my desk, anyone with access to my computer can then sit there and enjoy my conversation with out me knowing about it... I have since started logging out of Messages on my Mac when I walk away.  then no one can see it, and when I log back in, the messages are synced back up again.  Good luck!!  Cheers!

  • STUN server ipaddress and ports

    Hi This is Ramesh i have downloaded the STUN server source code.
    while running iam getting the following exception.how i can use the stun server for streaming server.
    the stun server taking two ips and two ports any one knows which ips and ports i need to use.
    iam developing a video conferencing application so that iam trying to use stun as a streaming server bez it will under NAT and Firewall also.
    D:\project\jstun\src>java de.javawi.jstun.test.demo.StunServer 42050 192.168.0.11 42052 192.168.0.33
    java.net.BindException: Cannot assign requested address: Cannot bind
    at java.net.PlainDatagramSocketImpl.bind0(Native Method)
    at java.net.PlainDatagramSocketImpl.bind(Unknown Source)
    at java.net.DatagramSocket.bind(Unknown Source)
    at java.net.DatagramSocket.<init>(Unknown Source)
    at java.net.DatagramSocket.<init>(Unknown Source)
    at de.javawi.jstun.test.demo.StunServer.<init>(StunServer.java:46)
    at de.javawi.jstun.test.demo.StunServer.main(StunServer.java:241)
    i have tried with public ip also like 121.246.235.202 with this my server is running.
    please give me a valid solution how to use stun server as a streaming server.
    or
    in order to transmit video over internet what should i do.
    if u have any code please send me.

    mmm it's a port mistake... try to check if the port number you wanna use is free on your system.
    the bind operation is when an application try to put a socket in listening on the port u specified. this means that if the port is busy or dedicated to another process a bind exception is gonna ti be rise.
    try to change the port number.
    do few tests disabling system firewall or giving enough right to the application.
    have fun ^^

  • How to catch the message in RWB and send back to sender system

    hi
    I've proxy->xi-->jdbc scenario, when ever there is  some error and the data can't be intered in the data base, we can find error message thrown by the data base in the RWB , i want  this error message of the RWB to send back  to the sending system
    pl let me know if its possible  and how ???
    points shall be rewarded
    Thanks & Rgds ,
    mojib

    check this link, and use as per you requirement
    XI: How-to on JDBC receiver response
    JDBC Receiver Adapter -- Synchronous Select – Step by Step
    Regards
    Chilla

  • A very simple question: how to obtain the mail server name?

    In our JSP application, at one point an email will be sent to notify one event. Currently, that is done by using the html tag: mailto. To have more control on the email in tems of context format (a bad layout right now) and others. I would like to have it processed at servlet by using the JavaMail API, so that it have a nice format and have the sender's email address right in case email client is not installed in the machine where the browser in. The JavaMail API is straight forward. The question is how to obtain the mail server name, and the sender's email address if there is one?
    Thanks.
    v.

    How to obtain the mail server's name? It's your server, you should know its name. Or if it isn't your server, you should ask the administrator for its name. Point is, you need to decide in advance what server you are going to use and hard-code its name into the program or into a properties file.
    And how to obtain the client's e-mail address? You have to ask the client, probably by putting a box in the HTML and asking them to type it.

  • J2ee connection error, "The Message Server did not respond within 60 sec"

    Hi,
    I am facing the error "The Message Server did not respond within 60 sec. Please check if the message server is running.." when connecting to J2ee through NWDS.
    I am able to reach the index page via http://<ip address>:53500/index.html but yet unable to reach through NWDS.
    I have tried various combinations of host and port names like:
    Message Server Host : <ip address>, <host name>
    Message Server Port : 3636, 3936
    but still no luck.
    I've also cross checked the value of message server port by navigating to http://<IP address>:53500/monitoring/SystemInfo too, it is 3636.
    The telnet test (telnet <ip address> <port Number>) draws a blank window.
    I know this problem has been posted again and again, but then I am unable to understand what is the solution to this.
    Can someone please help me in resolving this issue?
    Note: [link 1|Unable to Connect to the J2EE Server from Netweaver Developer Studio; & [link 2|Developer Studio:Exception:The message server did not respond within 60 sec; are already checked.

    Hi Robin,
    Although I still haven't received any info from my colleagues regarding the central instance..
    Just a quick query, if we have NW04 we use 36** and if it is NW04S then we use 39** , is this the only difference for message server port?
    If that is the case, as I mentioned earlier, I have tried both, and one gave me N/A(3936) while the other gave me 'message server did not respond' error(3636).
    I have the message server host name & port , Enqueue Server Host name & Port and SDM PID and Port details with me..
    Can this be anyway useful in establishing a connection?
    Waiting for your inputs...
    Best Regards,
    Vinay

  • Exception: The message server did not respond within 60 sec.

    Folks,
    I am getting this error in Developer Studio ( J2EE Engine Preference) , Can anyone please tell me what is the issue.
    <i><b>Exception: The message server did not respond within 60 sec.Please check if the message server is running and if the socket connection has been established</b></i>
    Thanks,
    Manish

    Hi,
    I think the connection data is somehow not right.
    What is your message server host and port  being configured?
    I think the default message server port is 3601
    Regards,
    Vincent

  • How to Determine the Oracle Identity Manager Server Version?

    Friends,
    I have two questions about the Identity Manager...?
    How to Determine the OIM 11g Server Version?
    How to Determine the OIM 9 Server Version?
    Thanks

    The bundle patches are found by build number. If you go to metalink and check the bundle patches, there is a build number associated with them, usually also contained in the xellerate/config/Version.props file. This is written to the XSD table during patching. Once installed, there is no identifier that says "BPXXX applied".
    -Kevin

  • TS3899 my iphone does not connect to my email provider and fetch my email.  I have set up a new account but get the message "server is unavailable"..I have been getting emall ok previously, this occurred when I changed my password on my email account

    My iphone does not connect to my email provider and fetch my email.  I have been getting emall ok previously, this occurred when I changed my password on my email account. I have "set up a new account" but get the message "server is unavailable". I have tried several things but to no avail. Does anyone have the solution?
    Thanks

    Did you ever fix this problem? The same thing happened when I just changed my kids passwords and now can't access their mail on their iPods or my iPad but I use the same email provider and mine is fine however I did not change my password.  If you fixed it how did you?

  • How can I make the web server work on port 80 and not 443. I can only access my website using https.

    On a Mac Mini server with OS X Lion 10.7.2, I am unalbe to get the web server working on port 80. It switches automatically to port 443 (https).
    This situation complicates the access to FileMaker Web publishing, as I don't want my clients having to use https.
    How can I change that? Does anyone know?
    Thanks for any reply

    in the server: I checked the SSL certificate. Tried several configuration.
    Well, that's a problem for a start.
    Your port 80 connection should NOT use SSL. Port 80 is the standard HTTP port, not HTTPS and most applications that connect to port 80 will not expect to use SSL
    If you want to run a site under both HTTP and HTTPS then you create two sites, one on port 80 without SSL and one on port 443 with SSL

Maybe you are looking for