Applet Rendezvous port error

When I try to execute a client/server applet , unable to connect to the server (server is external, not in my subnet).
Client applet throws the following error,
Error message: Server port: 30000
MPStudent.ERROR: Can't open socket on rendezvous port 30000
Telnet to the particular port is not working from my machine. Not sure why the problem is .
Please help.

I was able to get it to work with the following HTML tag. The html file must be in the same directory as the class files.
      <OBJECT id="letter" name="letter" classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" WIDTH = "500" HEIGHT = "500"  codebase="http://java.sun.com/products/plugin/1.1.2/jinstall-112-win32.cab#Version=1,1,2,0"><NOEMBED><XMP>
      <APPLET CODE = "WriteWordsApplet" CODEBASE = "."  WIDTH = "500" HEIGHT = "500" ></XMP>
      <PARAM NAME="name" VALUE="letter">
      <PARAM NAME=CODEBASE VALUE=".">
      <PARAM NAME =CODE VALUE = "WriteWordsApplet">
      <PARAM NAME="type" VALUE="application/x-java-applet;version=1.1.2">
      </APPLET>
      </NOEMBED></OBJECT>

Similar Messages

  • Admin Console Applet Login Connection Error

    Hello,
    I have done some Corba programming before and now I want to do more
    serious work on Tuxedo. So I wish you will bear with my simple questions.
    - I have brought up Tuxwsvr and wlisten (no errors) and listner is
    running on port 3050 (windows platform)
    - Now I open the web admin page and insert my login/pass (I have
    controled it in the "tlisten.pw" file and its correct.
    - The applet issues the error : "Connection Failed"
    I appreciate if someone can help or forward me to an FAQ if this is a
    frequently asked question.
    Regards,
    Mac

    Mac,
    This error usually indicates tuxwsvr can not connect to the wlisten. So you
    need to make sure wlisten started correctly.
    The default port for "tlisten" is 3050, if you specify it to wlisten in the
    %TUXDIR%\udataobj\webgui\webgui.ini, then wlisten can not bind to the same
    port.
    So I would suggest configure another port and have a try.
    Regards,
    Wayne
    "news.bea.com" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    I have done some Corba programming before and now I want to do more
    serious work on Tuxedo. So I wish you will bear with my simple questions.
    - I have brought up Tuxwsvr and wlisten (no errors) and listner is
    running on port 3050 (windows platform)
    w
    - Now I open the web admin page and insert my login/pass (I have
    controled it in the "tlisten.pw" file and its correct.
    - The applet issues the error : "Connection Failed"
    I appreciate if someone can help or forward me to an FAQ if this is a
    frequently asked question.
    Regards,
    Mac

  • Logical port error (WS_LOGICAL_PORT) when consuming WS in PI

    Hi All,
    I am trying to integrate simple Currency Conversion Web Service witm my ECC program.
    Program displays two fields in the selection screen (Currency From and Currency To)
    WS is: http://www.webservicex.com/ws/WSDetails.aspx?WSID=10&CATID=2
    The scenario is as below:
    Proxy (Z-PROGRAM ) <-sync-> PI <-sync-> WS (Currency Convertor)
    Looks like ABAP Proxy is done ok.
    PI configuration also looks ok as I am trying it in IB's Test Configuration tool - all steps are 'Green / Passed'
    Based on WSDL 3 interfaces were generated:
    CurrencyConvertorHttpPost
    CurrencyConvertorHttpGet
    CurrencyConvertorSoap
    I am using Soap one... along with WS Communication Channel
    CC has configuren itself based on WSDL likn provided,
    Technical Transport Settings were set to:
    Target Host:               www.webservicex.net
    Service Name / Port:     -1
    URL Access Path:          /CurrencyConvertor.asmx
    Transport Binding:          SOAP 1.1 Using HTTP
    Why am I getting logical port error?
    Error while determining logical port Cannot find logical port for agreement EAC1E5CF03FD3B2C827ADDECA2EA6B26 and interface urn:webservicex:com:test:currencyrates.CurrencyConvertorSoap
    I searched the web for error message and I found obsolete logical port configuration using LPCONFIG, and also some 'new' approach with SOAMANAGER LogPort configuraton
    (When I try to do this as suggested in [document |http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b04408cc-f10e-2c10-b5b7-af11026b2393?QuickLink=index&overridelayout=true]
    then I cannot see my newly created services on the list)
    ... but is this the right track to follow?
    Should I run Logical Port configuration in PI?
    I would appreciate your comments on this.
    Regards,
    bob.

    Hello,
    Why am I getting logical port error?
    Error while determining logical port Cannot find logical port for agreement EAC1E5CF03FD3B2C827ADDECA2EA6B26 and interface urn:webservicex:com:test:currencyrates.CurrencyConvertorSoap
    WS Adapter is used for those that are using WS-RM (Webservice-Reliable Messaging)...See this blog
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b00bbb77-75bc-2a10-6b9a-a6f8161515a6, but I think for now this is limited to SAP-to-SAP connections. That is why in your error it is searching for a logical port (ABAP Proxy).
    You should be using the SOAP Receiver Adapter instead.
    Hope this helps,
    Mark

  • Start:applet not initilaized error

    Hi friends,
    I'm getting Start:applet not initilaized error when i'm running a program...
    saved a notepad file as Testloan.java used javac Testloan.java and appletviewer Testloan.java to execute the applet here is my code...
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    <html>
    <applet code="Testloan.class" width=300 height=100>
    </applet>
    </html>
    public class Testloan extends Applet implements ActionListener
    TextField t1,t2,t3;
    Label lp,lr,lmp;
    Button b1,b2;
         public void init()
         lp=new Label("Principal");
         lr=new Label("Rate");
         lmp=new Label("Payment");
         add(lp);
         add(lr);
         add(lmp);
         t1=new TextField();
         add(t1);
         t2=new TextField();
         add(t2);
         t3=new TextField();
         add(t3);
         b1=new Button("submit");
         add(b1);
         b1=new Button("Exit");
         add(b2);
         b1.addActionListener(this);
    b2.addActionListener(this);
    public void start() {
    //win.setVisible(true);
    public void stop() {
    //win.setVisible(false);
    public static int months(int principal,double rate,int payment)
              Testloan tl=new Testloan();
              principal=Integer.parseInt(tl.t1.getText());
              rate=Double.parseDouble(tl.t2.getText());
              payment=Integer.parseInt(tl.t3.getText());
              int p=principal;
              double eRate = rate / 1200.0;
              int month =0,np=1;
                   while(np>0)
                   month = month + 1;
                   np= (int) (p*(1+eRate)-payment );
                   System.out.println(np+"/n");
                   p = np;
              return month;
    public void actionPerformed(ActionEvent e)
    String cmd = e.getActionCommand();
    }

    First, the code you posted was mangled by the forum formatting software. When you post code, select it and click the CODE button above the typing area, which will prevent that, and maintain your formatting.
    When you ran the appletviewer program from the cmd window, error information was posted to it by the java command. Did you look at it? It says that you have a NullPointerException at this line
    add(b2);because there's a typo in this line
    b1 = new Button("Exit");which should have assigned a value to b2, not b1
    Read and understand the error messages that java creates, they almost always point exactly at the problem and allow you to debug the cause.

  • Unable to print to network printer // sometimes with port error

    I upgraded to Leopard and am now _*unable to print to my network attached*_ *_Lexmark x9350_*. In prefs it shows the printer and driver installed. Once a print job is submitted, it reads printing, but there is no action on the printer. Other times it gives a port error. I tested the printer under OSX 4 and it printed with no problem. I also have a similar problem on the XP partition of this system. Please advise.

    I don't think Lexmark has a Leopard driver for this printer yet. This problem was discussed earlier here
    http://discussions.apple.com/thread.jspa?messageID=5702119&#5702119

  • Ask for help :( "%ILPOWER-3-CONTROLLER_PORT_ERR: Controller port error, Interface Gi1/0/17: Power given, but Power Controller does not report Power Good"

    This question is used a translator.... 
    Current conditions 
     - SW1 ----- Power injector ------ AP(cisco is not another model)
     - Port, AP, Power injector, Switch <-> Injector UTP cable  Problems occur even after replacement
     - Power injector <->AP UTP canle No exchange
     - Poe was OFF the function. This is because it is being used for Power Injector. -> Do not generate failure logs
     - But even if another AP is turned ON POE function, no error messages.
    SW1#show logging (5 mins cycle persists)
    May  4 10:37:32.527: %ILPOWER-3-CONTROLLER_PORT_ERR: Controller port error, Interface Gi1/0/17: Power given, but Power Controller does not report Power Good
    May  4 10:37:42.556: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/17, changed state to down
    May  4 10:37:43.562: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/17, changed state to down
    May  4 10:37:50.032: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/17, changed state to up
    May  4 10:37:52.046: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/17, changed state to up
    May  4 10:38:03.238: %ILPOWER-7-DETECT: Interface Gi1/0/17: Power Device detected: IEEE PD
    SW1#show cable-diagnostics tdr interface gi 1/0/17    <----- Issues AP         
    TDR test last run on: May 04 10:49:14
    Interface Speed Local pair Pair length        Remote pair Pair status
    Gi1/0/17  1000M Pair A     84   +/- 10 meters Pair B      Normal              
                                Pair B     84   +/- 10 meters Pair A      Normal              
                                Pair C     84   +/- 10 meters Pair D      Normal              
                                Pair D     84   +/- 10 meters Pair C      Normal              
    SW1#show cable-diagnostics tdr interface gigabitEthernet 1/0/18    <--------- Normal AP
    TDR test last run on: May 04 11:01:04
    Interface Speed Local pair Pair length        Remote pair Pair status
    Gi1/0/18  1000M Pair A     92   +/- 10 meters Pair B      Normal              
                               Pair B     92   +/- 10 meters Pair A      Normal              
                               Pair C     92   +/- 10 meters Pair D      Normal              
                               Pair D     92   +/- 10 meters Pair C      Normal  
    SW1#show cable-diagnostics tdr interface gigabitEthernet 1/0/1   <--------- Normal AP
    TDR test last run on: May 04 11:01:56
    Interface Speed Local pair Pair length        Remote pair Pair status
    Gi1/0/1   1000M Pair A     79   +/- 10 meters Pair B      Normal              
                               Pair B     79   +/- 10 meters Pair A      Normal              
                               Pair C     79   +/- 10 meters Pair D      Normal              
                               Pair D     79   +/- 10 meters Pair C      Normal              
    SW1#show power inline    <-------- (Check every 5 seconds)
    Module   Available     Used     Remaining
                   (Watts)     (Watts)    (Watts) 
    1              370.0      200.2       169.8
    Interface Admin  Oper       Power     Device                           Class   Max
                                                (Watts)                            
    SW1#show power inline | in 17
    Gi1/0/17  auto     off        0.0                 n/a                               n/a   30.0 
    SW1#show power inline | in 17
    Gi1/0/17  auto     on         15.4             Ieee PD                         0     30.0 
    SW1#show power inline | in 17
    Gi1/0/17  auto     on         15.4             Xirrus XR2426, 1.0G     0     30.0 
    SW1#show power inline | in 17
    Gi1/0/17  auto     faulty     0.0              n/a                                 n/a   30.0 
    SW1#show power inline | in 17
    Gi1/0/17  auto     off        0.0                n/a                                  n/a   30.0

    Plug the Xirrus AP directly to the switch port and see if the logs go away or not.

  • Equium M50 will not recognise the LAN port - error: Network Cable unplugged

    I own a Toshiba Equium M50 and have problems with the Marvell Yukon 88E8036 PCI-E Fast Ethernet Controller.
    I used to connect via an 'ADDON' Modem/ADSL Switch and had no problems. I then replaced the ADDON with a 'NETGEAR' DG834G ADSL Modem/Router to gain the wireless port, and since then my machine will not recognise the LAN port. <error: Network Cable unplugged>.
    I know that the cables are OK as I used them with other laptops and had no trouble. I can also plug in a PCI card to connect without any problems. It looks to me as if the Marvell Yukon 88E8036 PCI-E Fast Ethernet Controller has a problem with the netgear Modem/Router.
    Anyone out there with a similar experience and some advice/suggestions?
    PLEASE

    Hi
    For me it doesnt show like a LAN card problem but your router is a problem.
    Check the device manager if the LAN card was properly recognized. If there are no yellow exclamation marks so everything is ok!
    You can try to delete the LAN card from the device manager and after new reboot install the LAN driver again.
    The issue has stared after installing or connecting the new Netgear modem router.
    Therefore I would recommend to checking firstly the settings or to update the firmware on this router.
    I have found additionally these useful websites
    http://compnetworking.about.com/od/windowsnetworking/f/cableunplugged.htm
    http://www.experts-exchange.com/Networking/Broadband/DSL_Cable/Q_20381405.html

  • Port error while deploying a dictonary project to j2ee server

    Hello,
    I created a dictonary project in sap netweaver developer studio 7.1.The j2ee server and the database (both on a remote server) are running and configured.
    When i try to deploy it i get the following errors
    [#3]: DC API is trying to connect to '<server name>:50004' [INFO: Jan 31, 2008 9:28:26 PM /userOut/daView_category (eclipse.UserOutLocation) [Thread[main,6,main]] ]
    om.sap.ide.eclipse.deployer.api.APIException: ConnectionException,cause=[ERROR CODE DPL.DCAPI.1144] NamingException.Cannot get initial context.
    Reason: Exception during getInitialContext operation. Cannot establish connection to the remote server.
    The error is guess is the port number.My server is configured on port 50000 and here it is showing 50004.If i am correct then how do i configure my applications port number?
    I searched  and saw some messages like open \usr\SAP\<SID>\SYS\profile ,edit the port and similar solutions.Where is this "\usr\SAP\<SID>\SYS\profile " location?My server is on a remote machine.How do i configure my client to pick up the correct port ?
    Thank you in advance.
    Thanks and Regards
    Siri

    the issue got solved..the error was not about the port..on restarting the server i was able to deploy my project..

  • "Bad Applet class name" error while recording on Oracle Forms 11g through OpenScript (JRE 1.7.0_17)

    Hi,
    I am trying to record automation functional test script on Oracle Forms 11g using OpenScript.
    Able to open the browser, but after accessing application URL, getting application error as "Bad Applet class name"
    Java Plug-in 10.17.2.02
    Using JRE version 1.7.0_17-b02 Java HotSpot(TM) Client VM
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    SSV dialog is suppressed........
    cracked oracle.forms.engine.Main
    Loading cached Forms Jars ...
    Is this version (Oracle forms 11g, JRE 1.7.0_17) supported by OATS-OpenScript ?
    Please advise if there is any work around here.
    Thanks.

    From the last OATS release notes available in the C:\OracleATS\docs directory:
    4.1 Oracle Functional Testing/OpenScript
    Oracle Functional Testing’s OpenScript scripting platform has the following system
    requirements:
    ■ Operating System (32-bit and 64-bit versions): Windows XP, Windows Vista,
    Windows 2003, Windows 7, Windows 2008, Windows 2008 R2.
    ■ Memory: Minimum 1 GB
    ■ System: x86, 32-bit or 64-bit processor, 2.6 GHz or faster
    ■ Disk Space: 4 GB minimum
    ■ Browser: Internet Explorer 7.x, 8.x., 9.x; Firefox 3.5/3.6, 6.x, 10; Chrome 27+
    (playback only).
    ■ Java Runtime Environment: JRE 1.6 minimum (up to build 38), JRE 1.7 (up to build
    11) .
    So basically, it's not supported... Can you try with another JRE version?
    As always don't forget to run OpenScript as administrator on W7/8 or equivalent
    JB

  • Install port error.

    Howdy all. I just installed 10g and during the install got an error about not being able to use the assigned port because it was set to NULL. It also said I would be able to go back and fix in Enterprise Manager after the install was complete. But then at the end of the install there is no link displayed for EM the way there is for iSQLPlus. Can someone pelase assist?
    TIA, ChrisR

    Hi,
    http://dbataj.blogspot.com/2007/01/oc4j-configuration-issue.html
    go through above link and create if not configure OEM for your database or CONFIGURE your database for OEM.
    regards
    Taj

  • I'm crazy!Applet and JNA Error:Library 'jnidispatch' was not found!

    Hi all,
    sorry to bother you, I really have no idea how to do JNA and Applet. I'm hardly mazy, man.
    Every time it will throw an error to me :
    Exception in thread "thread applet-JNAApplet-1" java.lang.UnsatisfiedLinkError: Library 'jnidispatch' was not found by class loader sun.plugin2.applet.JNLP2ClassLoader@291aff
         at com.sun.jna.Native.getWebStartLibraryPath(Native.java:858)
         at com.sun.jna.NativeLibrary.<clinit>(NativeLibrary.java:576)
         at com.sun.jna.Library$Handler.<init>(Library.java:140)
         at com.sun.jna.Native.loadLibrary(Native.java:372)
         at com.sun.jna.Native.loadLibrary(Native.java:357)
         at JNAApplet.init(JNAApplet.java:15)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)My program is so easy, I just want use Applet to revoke JNA and use the JNA to load a native lib.
    here is the structure of my program:
    Applet code :
    import javax.swing.JApplet;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import com.sun.jna.Native;
    public class JNAApplet extends JApplet {
         public static Kernel32 kernel32 = null;
         @Override
         public void init() {
              createGUI();
              kernel32 = (Kernel32)Native.loadLibrary("Kernel32", Kernel32.class);
              if (kernel32 == null) {
                   System.out.println("load kernel32 fail!");
              } else {
                   System.out.println("load kernel32 success!");
         private void createGUI() {
              JPanel panelCenter = new JPanel();
              JButton butTest = new JButton("Test");
              panelCenter.add(butTest);
              setContentPane(panelCenter);
    }When I run it on debug mode, it is ok! but when I deploy it , it will throw above error message to me.
    My Applet html:
    <html>
         <head>
              <title>JNA Applet</title>
         </head>
         <body>
         <script src="deployJava.js"></script>
        <script>
            var attributes = { code:'JNAApplet',  width:300, height:300} ;
            var parameters = {jnlp_href: 'JNAApplet.jnlp'} ;
            deployJava.runApplet(attributes, parameters, '1.5');
        </script>
         </body>
    </html>File 'JNAApplet.jnlp':
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="" href="">
        <information>
            <title>JNA Applet</title>
            <vendor>Steven</vendor>
        </information>
        <resources>
            <j2se version="1.5+"
                  href="http://java.sun.com/products/autodl/j2se" />
            <jar href="JNAApplet.jar" main="true" />
        </resources>
        <applet-desc
             name="JNA Applet"
             main-class="JNAApplet"
             width="300"
             height="300">
         </applet-desc>
         <update check="background"/>
    </jnlp>     I really have no idea. and I can't search any usefull infomation from Google and officer site.
    Can any one help me? Thank you very much!!!!

    Hi AndrewThompson64:
    Did you mean the JNA project? Or are you refering to JNI, or ..something else?Yes, I mean is that I wanna jna.jar to replace JNI to code with Applet. I want Applet can run native library(.dll files).
    That reads like so much nonsense to me.Sorry fo that.
    Was there any 'caused by' part that you trimmed? I expected to see something to do with 'Security' or 'AccessControl'.Sorry, I can't saw any 'cause by' subsentence there. This message is just gain from Applet Console.(Is there any method to gain more message?)
    About 'Security' and 'AccessControl' I just modify my java.policy file to allpermission. Subsequently, I signed all jar files.
    For now I have 3 jar files(all have been signed ):
    --example.jar :  for this little program.(code include applet and application entry)
    --jna.jar
    --win32-x86.jar : include kernel32.dll and jnidispatch.dll for win32 and x86.
    and 2 JNLP files:
    --JNAApplet.jnlp the entry is JNAApplet.class (this jnlp does not work)
    --JNAApp.jnlp     the entry is JNAApp.class  (this jnlp works)
    And for now new error message show like this:
    Exception in thread "thread applet-JNAApplet-1" java.lang.UnsatisfiedLinkError: Library 'Kernel32' was not found by class loader sun.plugin2.applet.JNLP2ClassLoader@4aeb52
         at com.sun.jna.Native.getWebStartLibraryPath(Native.java:858)
         at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:97)
         at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:228)
         at com.sun.jna.Library$Handler.<init>(Library.java:140)
         at com.sun.jna.Native.loadLibrary(Native.java:372)
         at com.sun.jna.Native.loadLibrary(Native.java:357)
         at JNAApplet.init(JNAApplet.java:12)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Did you mean invoke?
    Revoke: To annul by withdrawing.
    Invoke: To call on.Yes, you got it. Thank you.
    The JNLP file is invalid. ..I was about to put my 'standard' text here, but I'm sick of saying it. Search the forum for my posts - 50% of them, at least, mention validation and how to go about it.
    Also, the applet-desc requires a documentbase.Thank you, I really think I have some invalid section. But I can't find it, and you said 'Search the forum for my posts - 50% of them...' , I can read the JNLP structure on site of sun and I can to read you post too(I'm doing like this).*I only want to know about how to load "native lib like *.dll" properly*.
    What 'officer site'?I mean jna project site. Sorry for ambiguity.
    Please fix that sticky '!' key. One '!' indicates astonishment, while two or more typically indicates a bozo. Thanks for your advice. Because I tried to find solution do my best lasting two days. I got nothing. I'm sadness.
    here post my new files:
    import javax.swing.JFrame;
    import com.sun.jna.Native;
    public class JNAApp {
         public static Kernel32 kernel32 = null;
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              kernel32 = (Kernel32)Native.loadLibrary("Kernel32", Kernel32.class);
              JFrame frame = new JFrame();
              frame.setSize(500, 500);
              frame.setVisible(true);
    import javax.swing.JApplet;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    import com.sun.jna.Native;
    public class JNAApplet extends JApplet {
         public static Kernel32 kernel32 = null;
         public void init() {
              createGUI();
                   kernel32 = (Kernel32)Native.loadLibrary("Kernel32", Kernel32.class);
         private void createGUI() {
              JPanel panelCenter = new JPanel();
              JButton butTest = new JButton("Test");
              panelCenter.add(butTest);
              setContentPane(panelCenter);
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="" href="">
        <information>
            <title>JNA Applet</title>
            <vendor>Steven</vendor>
        </information>
        <resources>
            <j2se version="1.5+"
                  href="http://java.sun.com/products/autodl/j2se" />
             <jar href="JNAApplet.jar" main="true"/>
             <jar href="jna.jar"/>
        </resources>
           <resources os="Windows" arch="x86">
             <nativelib href="win32-x86.jar"/>
             <nativelib href="kernel32.jar"/>
           </resources>
        <applet-desc
             documentBase=""
                name = "success"
             main-class="JNAApplet" width = "200" height = "200">
         </applet-desc>
         <update check="background"/>
           <security>
             <all-permissions/>
           </security>
    </jnlp>     
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="" href="">
        <information>
            <title>JNA Applet</title>
            <vendor>Steven</vendor>
        </information>
        <resources>
            <j2se version="1.5+"
                  href="http://java.sun.com/products/autodl/j2se" />
             <jar href="JNAApplet.jar" main="true"/>
             <jar href="jna.jar"/>
        </resources>
           <resources os="Windows" arch="x86">
             <nativelib href="win32-x86.jar"/>
             <nativelib href="kernel32.jar"/>
           </resources>
        <application-desc
             main-class="JNAApp">
         </application-desc>
         <update check="background"/>
           <security>
             <all-permissions/>
           </security>
    </jnlp>     Thanks & Best Regards,
    Su Heng

  • SMD Error in managed system type PI 7.1 EHP1 Step Logical Ports error

    Hi people,
    Solution Manager Ehp1 7.0 SPS24
    I am currently runnig the wizard setup for managed System, everything is fine but when I run for PI 7.1 I get the following error:
    Fri Sep 10 20:29:48 2010 Logical Ports A failure occured while creating the logical port for JAVA XI : PORT_NOT_CREATED
    Step Logical Ports Details
    A failure occured while creating the logical port for JAVA XI : PORT_NOT_CREATED
    !! Exception : PORT_NOT_CREATED
    Exceptions
    com.sap.mw.jco.JCO$AbapException: (126) PORT_NOT_CREATED: PORT_NOT_CREATED
    at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1511)
    at com.sap.mw.jco.JCO$Client.execute(JCO.java:3980)
    at com.sap.mw.jco.JCO$Client.execute(JCO.java:3514)
    at com.sap.sup.admin.setup.SolManRfcAdapter.createXIlogicalPort(SolManRfcAdapter.java:185)
    at com.sap.sup.admin.setup.SetupStep.runExec(SetupStep.java:427)
    at com.sap.sup.admin.setup.SetupStep.execute(SetupStep.java:335)
    at com.sap.smd.agent.plugins.remotesetup.SapInstance.setup(SapInstance.java:549)
    at com.sap.sup.admin.setup.SapCluster.setup(SapCluster.java:1695)
    at com.sap.sup.admin.setup.SapCluster.access$000(SapCluster.java:35)
    at com.sap.sup.admin.setup.SapCluster$SetupRunner.run(SapCluster.java:1965)
    at java.lang.Thread.run(Thread.java:534)
    Any ideas?
    Thanks in advance

    Hi everyone,
    Thanks everyone.
    Guilherme, finally I understand what really happens.  "Refresh" is not working properly in the Setup Wizard.
    First I have done what I can:
    System    Type      Managed Products                    Product Instances
    DPI           ABAP     SAP Netweaver PI 7.1               Application Server ABAP  (I could not select PI at the same time)
    DPI           JAVA     SAP Netweaver PI 7.1               Application Server Java + Process Integration
    But, when I refresh the browser Internet Explorer appears the following:
    System    Type      Managed Products                    Product Instances
    DPI           ABAP     SAP Netweaver PI 7.1               Application Server ABAP + Process Integration
    DPI           JAVA     SAP Netweaver PI 7.1               Application Server Java + Process Integration
    And then I do not get the error anymore. (I have to repeat step 2 in the wizard "Check Prerequisites for Diagnostics)
    And If I run transaction SMSY, I can see how PI is mantained since the wizard refresh SMSY.
    Product Instance Selection tab:
    Application Server ABAP (Flag selected: relevant)
    Process Integration (Flag selected: Also Installed, Technical System[ DPI, Java])
    Application Server Java (Flag selected: relevant, Technical System[ DPI, Java])
    So, if I use this configuration in the SMSY, when I run "solman_setup",  configuring DPI (My PI7.1), when I run "Configure Diagnostics", the wizard shows ABAP + PI as expected.
    Thanks a lot Guilherme!!

  • PI 7.1 EHP1 Step Logical Ports error

    Hello,
    I got the below error when in ran the managed system configuration for PI 7.1 EHP1 system.
    Our solman is on SP22
    Step Logical Ports Details
    A failure occured while creating the logical port for JAVA XI : An exception occurred that was not caught.
    !! Exception : An exception occurred that was not caught.
    Exceptions
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: An exception occurred that was not caught.
    at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:516)
    at com.sap.mw.jco.MiddlewareJRfc$Client.execute(MiddlewareJRfc.java:1514)
    at com.sap.mw.jco.JCO$Client.execute(JCO.java:3980)
    at com.sap.mw.jco.JCO$Client.execute(JCO.java:3514)
    at com.sap.sup.admin.setup.SolManRfcAdapter.createXIlogicalPort(SolManRfcAdapter.java:185)
    at com.sap.sup.admin.setup.SetupStep.runExec(SetupStep.java:427)
    at com.sap.sup.admin.setup.SetupStep.execute(SetupStep.java:335)
    at com.sap.smd.agent.plugins.remotesetup.SapInstance.setup(SapInstance.java:549)
    at com.sap.sup.admin.setup.SapCluster.setup(SapCluster.java:1695)
    at com.sap.sup.admin.setup.SapCluster.access$000(SapCluster.java:35)
    at com.sap.sup.admin.setup.SapCluster$SetupRunner.run(SapCluster.java:1965)
    at java.lang.Thread.run(Thread.java:534)
    EW Report for PI system is only 9 pages ,may be the above error is causing it.
    Please help us to solve it
    Thanks,
    Srini

    Hi Balbinot,
    Thanks for your reply.
    1. SMD_RFC user is not locked (in Solman).
    2. According to note 1008474 in Visual Administrator of Solman CTC System Properties ,I found that the BACKEND_CLIENT property is having "001" as value (001 is our BW client) but the regular client is 201 .Should the value be 201 or 001 ????
    And TTJAVA_HOME is having /usr/j2sdk1.4.2_13 but our java home is /usr/jdk/instances/j2sdk1.4.2_18 should i go ahead and change this one as well?
    3.E2E_WS_CONN_LOG_PORT_CREATION does not exist in PI 7.1 system ,should this be run in Solution manager ?
    Please help me to solve this issue?
    Thanks,
    Srini K

  • Sender Port Error in SAP ECC for IDoc

    Hi,
    I am creating scenario IDOC -> XI -> JDBC with Customer Master IDoc.
    After sending it with we19 he said "IDoc sent to SAP system or external program".
    In we02 and we05 the IDOC it says "Data passed to port OK".
    But in SM58, the IDoc ends in error saying
    Transaction IDX1: Port SAPIDST100, client 600, RFC destination contains error.
    What I identified that the port SAPIDST100 is the sender port in the IDoc being send. However, for PI we do not need to maintain sender port.
    Business Systems:
    Sender : SAP ECC
    Receiver: SAPPID
    Kindly provide your inputs.
    Thanks
    Rahul

    Hi Rahul,
    thanks for the information that your scenario is working fine.
    But i want to clarify some points:
       - If you send out an IDoc from an ECC system, the senderport is filled with SAP+<system-id> by the SAP IDOC API,
         i.e.  if your system id is "ABC", the senderport is "SAPABC"
          => your senderport SAPIDST does not match this template, so i assume you entered the value for the senderport
         manually in the idoc test utility WE19
       - if you send out an idoc, only the receiver port must be created in transaction WE21, it is not necessary to create
         the senderport in WE21, this is not necessary and did not solve your problem
      - the idoc was send from ECC (application system with application IDoc metadata) to an XI/PI system (basis system      
        without application idoc metadata
       The IDoc adapter on the pi system must analyze the IDoc segments and must know the idoc application metadata,
       but this is not known. So the idoc adapter on PI side looks at the senderport to identify the sender.
       In transaction IDX1 an rfc-destination can be configured to point to the sendersystem with that senderport
       With this rfc-destination  the IDoc adapter tries to read the idoc aplication metadata from the ECC system and stores it on PI side.
       If there is no rfc-destination configured in transaction IDX1 on PI side you get the error mentioned in your request.
       I assume that in transaction IDX1 somebody configured the correct RFC-Destination.
    I hope this clarification helps you to understand the error and the solution.
    Kind regards,
    Andreas Dahl

  • AS Java 7.01 Install - Port Error

    Experts, I'm in the process of installing NetweaverAS Java (only no ABAP) 7.01 instance on Lunix Redhat 5. I am getting the following error after starting sapinst:
    Logon Error:
    Connection to SAPisnt could not be established, see following message
    Could not connect to host localhost on port 21200
    java.net.ConnectException: Connection timed out
    java.net.ConnectException: Connection timed out
    I have confirmed with the unix/server group that the ports are not in use
    This obviously looks like an issue with the port, but I've been assured that the port is open/available. Does anyone have any insight?

    Hello Michael,
    Check for the all variable before s tarting the sapgui like java_home, LD_LIBRARY and DISPLAY  try again.
    Also try  to use below commands
    ./startInstGui.sh -server -host <Linux Server IP Address> -p 21200
    or
    ./startinstgui.sh -host <your_linuxserver_host_name>
    or
    ./sapinst GUISERVER_DIALOG_PORT=21215
    and let us know if you are still facing issues.
    Thanks and Regards,
    Ram

Maybe you are looking for

  • Integration Endeca and CRS - ATG 10.1.2 (Page Not Found)

    Dear Colleagues, Need your help. 1. I installed the following components: - MDEX 6.4.0 - CAS 3.1.1 - PlatformService 6.1.3 - TaF 3.1.1 - ATG 10.1.2 - Platform + CRS 2. Add the flowing config to prod server ApplicationConfiguration.properties: #Proper

  • Adding Rows to HTML Web Gallery

    I am satisfied with Lightroom over all, but there is one item, I could not use at moment -> the web-gallery. I would like to use the standard HTML Gallery, but I need to add more rows. Wish: 3 columns, 8-9 rows (at moment I use Fotostation to built u

  • Can't install Flash CS3!

    Hey! I've got a MacBook (about a year old), and when i'm trying to install adobe flash cs3 i get 2 errors, the installation completes but "Adobe Flash CS3 and Adobe Asset Services CS3" failed to install.. I've tried with the free trial and the full v

  • PT880 POST problem

    Okay, complete newbie, here. This is my first do-it-yourself PC, ever. The problem is that I can't get the computer to finish POST. It reaches "Testing Base and Extended Memory" (LEDs 1 and 3 red, 2 and 4 green) and then hangs. The only screen displa

  • Acrobat XI not loading in Access 2010 Ribbon

    I just downloaded Acrobat XI and now it doesnt show up in my Ribbon. Help!