Getting error in a soap proxy from an applet

Hi, I'm getting error in Applet window while it trying to get the SOAP PROXY from Applet. Does any one came cross this type of the problem? Please help!!!
<b>Description:</b>
I am using BEA workshop 8.1.4, I have created JSP which contain the Applet. Applet has following two and more tags.
codebase="/bea_wls_internal/classes/aanDemoTest@DemoWeb"
code="ConnectionApplet"
Where "ConnectionApplet" is simple java class extended from JApplet. Which try to get Java Proxy.
<b>Code Section:</b>
weblogic.jws.proxies.RmGetApi_Impl proxy =
new weblogic.jws.proxies.RmGetApi_Impl(RMurl);
RMClientProxy = proxy.getrmGetApiSoap();
FYI: I have created client jar and webserviceclient jar a describe in one of the BEA Doc. Everything builds fine. But I am getting Error when I try to access from web(IE).
<b>Error in JAVA-Plug-IN window:</b>
unable to find the type mapping resource file for:weblogic.jws.proxies.rmGetApi
I turn on the debug option in PLUG-IN and it show me that it trying to access the - rmGetApi.xml which is part of the clientjar file and it is not finding.I also test from my browser I can access the RmGetApi.class but I can't access the XML which is in same jar.

Which window handle your talking about? Browser window?
If so use the netscape.javascript pacakage
import netscape.javascript.*;
JP

Similar Messages

  • Getting error message on ungrade install from itunes 10 to itunes 11

    getting error message on ungrade install from itunes 10 to itunes 11

    What does the error message say? (Precise text, please.)

  • Getting error in consuming google webservices from JspDynPage

    Hi All,
    Getting following error while consuming google webservices from JspDynPage
    An exception occurred while processing a request for :
    iView : GoogleSer.google
    Component Name : GoogleSer.google
    Could not find portal application com.company.global.enterprise.portal.wsdl.webservices.service.
    Code :
    MyGoogle googleService =
    (MyGoogle) PortalRuntime.getRuntimeResources().getService("com.company.global.enterprise.portal.wsdl.webservices.service.MyGoogle");
    GoogleSearchResult result = googleService.doGoogleSearch("google", "SAP", 0, 10, false, "", false, "", "", "");
    ResultElement[] results = result.getResultElements();          
    if(results != null) {
    response.write("<br> Search Result Size " +results.length );
    for (int i = 0; i < results.length; i++) {
    response.write((i + 1) + ": " + results);
    Thanks
    Rudra

    Hi,
    I am still having the same problem, however the scenario in which I am getting varies.
    I am getting this exception:
    "com.sap.engine.services.webservices.jaxm.soap.accessor.NestedSOAPException: IOError while working with the message."
    Some users when trying to login into the portal are getting blank screen and for some the portal launcher page is loading fine and could go to the Home Page.
    When I view the logs I am seeing the Nested Soap Exception.
    Any Ideas??? Starting the J2EE engine also did'nt help.
    Thanks in advance.
    Madhavi

  • Error when parsing SOAP message from JSP

    i write a class to call SOAP message from a servlet on jdev 1013
    when i run the class alone it works fine
    soapMessage = this.buildSOAPMessagee();
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    soapMessage.writeTo(output);
    SOAPConnectionFactory connf = SOAPConnectionFactory.newInstance();
    SOAPConnection conn = connf.createConnection();
    SOAPMessage smsg= conn.callsoapMessage, "http://190.0.0.16:8988/mmsc/httpReceiver");
    smsg.writeTo(out);
    but when running same class same method from jsp page...i have Exception
    javax.xml.soap.SOAPException: Unable to get header stream in saveChanges     at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChangesMimeEncoded(MessageImpl.java:576)     at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:622)     at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:686)     at oracle.j2ee.ws.saaj.soap.MessageImpl.writeTo(MessageImpl.java:702)     at test.test2.ret(test2.java:341)     at untitled1.jspService(_untitled1.java:45)     [untitled1.jsp]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)     at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)     at java.lang.Thread.run(Thread.java:595)Caused by: java.io.IOException: SOAP exception while trying to externalize: Error parsing envelope: (1, 1) Start of root element expected.     at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getContentAsStream(SOAPPartImpl.java:220)     at oracle.j2ee.ws.saaj.soap.MessageImpl.getHeaderBytes(MessageImpl.java:522)     at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChangesMimeEncoded(MessageImpl.java:574)     ... 23 moreCaused by: javax.xml.soap.SOAPException: Error parsing envelope: (1, 1) Start of root element expected.     at oracle.j2ee.ws.saaj.soap.soap11.SOAPImplementation11.createEnvelope(SOAPImplementation11.java:104)     at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:76)     at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getContentAsStream(SOAPPartImpl.java:215)     ... 25 moreCaused by: oracle.xml.parser.v2.XMLParseException: Start of root element expected.     at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:320)     at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:333)     at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:295)     at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)     at oracle.j2ee.ws.saaj.soap.soap11.SOAPImplementation11.createEnvelope(SOAPImplementation11.java:78)     ... 27 more
    dose anybody can help why that happend when running the code from JSP

    i write a class to call SOAP message from a servlet on jdev 1013
    when i run the class alone it works fine
    soapMessage = this.buildSOAPMessagee();
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    soapMessage.writeTo(output);
    SOAPConnectionFactory connf = SOAPConnectionFactory.newInstance();
    SOAPConnection conn = connf.createConnection();
    SOAPMessage smsg= conn.callsoapMessage, "http://190.0.0.16:8988/mmsc/httpReceiver");
    smsg.writeTo(out);
    but when running same class same method from jsp page...i have Exception
    javax.xml.soap.SOAPException: Unable to get header stream in saveChanges     at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChangesMimeEncoded(MessageImpl.java:576)     at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:622)     at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:686)     at oracle.j2ee.ws.saaj.soap.MessageImpl.writeTo(MessageImpl.java:702)     at test.test2.ret(test2.java:341)     at untitled1.jspService(_untitled1.java:45)     [untitled1.jsp]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)     at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)     at java.lang.Thread.run(Thread.java:595)Caused by: java.io.IOException: SOAP exception while trying to externalize: Error parsing envelope: (1, 1) Start of root element expected.     at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getContentAsStream(SOAPPartImpl.java:220)     at oracle.j2ee.ws.saaj.soap.MessageImpl.getHeaderBytes(MessageImpl.java:522)     at oracle.j2ee.ws.saaj.soap.MessageImpl.saveChangesMimeEncoded(MessageImpl.java:574)     ... 23 moreCaused by: javax.xml.soap.SOAPException: Error parsing envelope: (1, 1) Start of root element expected.     at oracle.j2ee.ws.saaj.soap.soap11.SOAPImplementation11.createEnvelope(SOAPImplementation11.java:104)     at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:76)     at oracle.j2ee.ws.saaj.soap.SOAPPartImpl.getContentAsStream(SOAPPartImpl.java:215)     ... 25 moreCaused by: oracle.xml.parser.v2.XMLParseException: Start of root element expected.     at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:320)     at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:333)     at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:295)     at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)     at oracle.j2ee.ws.saaj.soap.soap11.SOAPImplementation11.createEnvelope(SOAPImplementation11.java:78)     ... 27 more
    dose anybody can help why that happend when running the code from JSP

  • Getting error while opening Excel document from SharePoint site

    Hello All,
    I am getting following error while opening Excel document from SharePoint site.
    This issue appears when we open Excel document from Windows>> Run using below mentioned command:
    Excel.exe "{File Name}"
    If once I go to Excel back stage and browse for the SharePoint location, then this problem disappears.
    I have a work around for this issue but main problem is that i do not have any work around when i need to open Exel document using Excel COM interop in C#.
    Thanks,
    Amit Bansal
    Amit Bansal http://www.oops4you.blogspot.com/

    Hi Amit Bansal,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing developing issues involve Excel application.
    According to the description, you got an error when you open the document form SharePoint site.
    Based on my understanding, this issue maybe relative to the SharePoint, I would like move it to
    SharePoint 2013 - General Discussions and Questions forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Very urgent...Getting errors in web server proxy

    Hi,
    We have 5 Glassfish server to fullfil the Http requests and one sun web server proxy for load balancing.
    But we are getting the following errors in web server proxy logs:
    +1. service-http reports: HTTP7766: error reading response header (IO timeout error)+
    +2. service-http reports: HTTP7766: error reading response header (Connection reset by peer)+
    +3. set-origin-server reports: HTTP7751: server <ip-address>:<port> offline+
    +4. set-origin-server reports: HTTP7751: server 10.76.177.88:8083 offline+
    Please do let us know reason of the above errors and if we need to change any configuration settings.
    We are working on a very critical project. Please reply ASAP.
    Thanks and Regards,
    Project Team

    Hey is that u r using connection pool.
    Check for number of connection in the Oracle Server opened.
    Check up number of connection persist both in oracle/java.
    Is driver not crashed or jvm right.
    Shyam

  • Getting error "Cannot create a BACPAC from a file that does not contain exported data." from SqlManagementClient.Dac.ImportAsync

    We're trying to import a dacpac to azure via the new SqlManagementClient DacOperations ImportAsync api I get an exception with the error: "Cannot create a BACPAC from a file that does not contain exported data."
    This same dacpac imports fine using an alternate but less friendly API from sql server's tooling. We'd like to use the new management SDK instead for various reasons.

    Hi Kyle A Wilt,
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.
    Thank you for your understanding and support.
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Canon MX860 get error 300 when printing wirelessly from MacBook Pro

    I've been printing wirelessly for several years and most recently after an upgrade to OS X 10.10.1 Yosemite it was printing fine until this morning. Something changed and I get error 300 when I try to print. If I connect my MacBook to the Canon MX860 printer using the USB cord it prints fine so I'm assuming it's some sort of wireless connection issue. I powered down and up both the printer and the Macbook and still get the error. I tried the "Reset Printer System" from the System Preferences and now I can't add the printer back in. I tried using the CD that came with the printer to reinstall the wireless connection and the set-up program says it's incompatible with my operating system and refuses to run. Any assistance to help me print wirelessly again would be very much appreciated. Thank you.

    After further investigation, we believe this is due to an intermittent  modem problem and is not the fault of the printer or MacBook.

  • Getting Error while Execute SSIS Package from Console Application

    Dear All,
    SSIS package working fine directly.
    I got following error while execute SSIS package from C# console application.
    The connection "{79D920D4-9229-46CA-9018-235B711F04D9}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
    Cannot find the connection manager with ID "{79D920D4-9229-46CA-9018-235B711F04D9}" in the connection manager collection due to error code 0xC0010009. That connection manager is needed by "OLE DB Destination.Connections[OleDbConnection]"
    in the connection manager collection of "OLE DB Destination". Verify that a connection manager in the connection manager collection, Connections, has been created with that ID.
    OLE DB Destination failed validation and returned error code 0xC004800B.
    One or more component failed validation.
    There were errors during task validation.
    Code : 
       public static string RunDTSPackage()
                Package pkg;
                Application app;
                DTSExecResult pkgResults;
                Variables vars;
                app = new Application();
                pkg = app.LoadPackage(@"D:\WORK\Package.dtsx", null);
         Microsoft.SqlServer.Dts.Runtime.DTSExecResult results = pkg.Execute();
    I have recreate the application with again new connection in SSIS.
    Still not working, Please provide solution if any one have.
    DB : SQL Server 2008 R2
    Thanks and regards,
    Hardik Ramwani

    The connection "{79D920D4-9229-46CA-9018-235B711F04D9}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
    Cannot find the connection manager with ID "{79D920D4-9229-46CA-9018-235B711F04D9}" in the connection manager collection due to error code 0xC0010009. That connection manager is needed by "OLE DB Destination.Connections[OleDbConnection]"
    in the connection manager collection of "OLE DB Destination". Verify that a connection manager in the connection manager collection, Connections, has been created with that ID.
    Are you sure that you are running the same package via .NET which works fine from Visual Studio?
    By reading error message, I can say that you have copied OLEDB task from another package OR you have deleted one OLEDB connection manager. Now when package is run this task tries to use the connection manager and not found thus throws error message.
    Open all OLEDB destination tasks and you find connection manager missing. Connection Manager name should be provided there
    Cheers,
    Vaibhav Chaudhari
    MCSA - SQL Server 2012

  • How to get errors and/or air.trace() from installed air app?

    I'm trying to debug an installed air app that behaves
    differently once installed than when run with adl. However, i can't
    figure out any way to get errors or air.trace() information. I am
    on OS X (10.5.6). Any tips?
    I imagine this should be easy since debugging an installed
    app is pretty much a necessity for development.

    You can enable logging to a text file using settings in the
    mm.cfg file. See
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19323
    Note that ALL trace output will go to the log.
    Other things you can do are:
    1. Run the installed app with adl -- just pass the installed
    app descriptor to adl on the command line
    2. Supply a publisher id to adl. This removes one difference
    between installed/ not installed apps and may be enough if the
    behavior issue has to do with local connections or other matters
    involving the publisher id.
    3. Use the adl -nodebug flag. This removes another difference
    between installed/uninstalled apps. You won't see uncaught
    exceptions, but trace statements are still reported.

  • Getting error message when purchasing app from store.

    hi people, whenever i try to download any paid app after filling all the required details of my card im getting error message saying "payment method declined", why so?? can anyone help??

    aayushp wrote:
    I've been having the same issue. It was all fine until yesterday when I was searching for updates.
    Since when have you been seeing this error message?
    Last time I checked for an update was about 2 weeks ago and there were no errors reported. However, today I wanted to update iTunes to version 10.7 and decided to use the standalone installer rather than the SU version. Still, I decided to run the MAS Software Update function in order to ensure that my computer had all its software up-to-date and then I get this message. I don't think that me installing iTunes is to blame. Probably, it could be an internet connection problem on Apple's end I am still submitting a bug report to Apple.
    Now one question, who is your ISP (internet service provider)? In my case I have Comcast and I am in Florida.
    Thanks for your reply!

  • Getting Error Logs Every Minit's From 5k

    Hi,
    Am getting every minit's this below logs.........
    Can i know why it's happening....
    Please advice me....
    Logs:
    =====
    2012 Sep  3 17:17:42 5k %ETHPORT-5-IF_UP: Interface Ethernet106/1/3 is up in mode access
    2012 Sep  3 17:17:55 5k %ETHPORT-5-IF_DOWN_LINK_FAILURE: Interface Ethernet106/1/2 is down (Link failure)
    2012 Sep  3 17:17:56 5k %ETHPORT-5-IF_DOWN_LINK_FAILURE: Interface Ethernet106/1/3 is down (Link failure)
    2012 Sep  3 17:17:58 5k %ETHPORT-5-SPEED: Interface Ethernet106/1/2, operational speed changed to 1 Gbps
    2012 Sep  3 17:17:58 5k %ETHPORT-5-IF_DUPLEX: Interface Ethernet106/1/2, operational duplex mode changed to Full
    2012 Sep  3 17:17:58 5k %ETHPORT-5-IF_RX_FLOW_CONTROL: Interface Ethernet106/1/2, operational Receive Flow Contr
    ol state changed to off
    2012 Sep  3 17:17:58 5k %ETHPORT-5-IF_TX_FLOW_CONTROL: Interface Ethernet106/1/2, operational Transmit Flow Cont
    rol state changed to on
    2012 Sep  3 17:17:59 5k %ETHPORT-5-IF_UP: Interface Ethernet106/1/2 is up in mode access
    2012 Sep  3 17:17:59 5k  %ETHPORT-5-SPEED: Interface Ethernet106/1/3, operational speed changed to 1 Gbps
    2012 Sep  3 17:17:59 5k %ETHPORT-5-IF_DUPLEX: Interface Ethernet106/1/3, operational duplex mode changed to Full
    2012 Sep  3 17:17:59 5k %ETHPORT-5-IF_RX_FLOW_CONTROL: Interface Ethernet106/1/3, operational Receive Flow Contr
    ol state changed to off
    2012 Sep  3 17:17:59 5k %ETHPORT-5-IF_TX_FLOW_CONTROL: Interface Ethernet106/1/3, operational Transmit Flow Cont
    rol state changed to on
    2012 Sep  3 17:17:59 5k %ETHPORT-5-IF_UP: Interface Ethernet106/1/3 is up in mode access
    NX5K005#
    =====================================================
    NX5K005# sh running-config | b Ethernet106/1/2
    interface Ethernet106/1/2
    interface Ethernet106/1/3
    interface Ethernet106/1/4
      description MSSQL01
      switchport access vlan 3838
      spanning-tree port type edge
    interface Ethernet106/1/5
      description BCKUP01
      switchport access vlan 3200
      spanning-tree port type edge
    =======================================================
    show vpc brief
    vPC Peer-link status
    id   Port   Status Active vlans
    1    Po130  up     1,700-701,798,920-923,1100-1103,1105-1108,1110-111
                       3,1115-1118,1120-1123,1125-1128,1130-1133,1135-113
                       8,1140,1145,1150,1155,1160,1165,1300-1303,1305-130
                       8,1310-1313,1315-1318,1320-1323,1325-1328,1330-133
                       3,1335-1338,1340,1345,1350,1355,1360,1365,1500-150   ....
    vPC status
    id     Port        Status Consistency Reason                     Active vlans
    13     Po13        up     success     success                    1,700-701,7
                                                                     98,920-923,
                                                                     1100-1103,1
                                                                     105-1108,11
                                                                     10-1113....
    105    Po105       up     success     success                    -
    106    Po106       up     success     success                    -
    106496 Eth105/1/1  up     success     success                    3830
    106497 Eth105/1/2  up     success     success                    1
    106498 Eth105/1/3  up     success     success                    1
    106499 Eth105/1/4  up     success     success                    3838
    107520 Eth106/1/1  up     success     success                    3830
    107521 Eth106/1/2  up     success     success                    1
    107522 Eth106/1/3  up     success     success                    1
    107523 Eth106/1/4  up     success     success                    3838

    Thanks i will check and let you know....
    The one more switch also am getting Error Logs please check and let me know this link fluctuating when i see the "Shoe VPC" some time showing link down please see below logs.
    advice me ASAP.
    Error Logs:
    ===========
    2012 Sep  4 10:22:42 NX5K %ETHPORT-5-IF_UP: Interface Ethernet107/1/2 is up in mode access
    2012 Sep  4 10:23:52 NX5K %ETHPORT-5-IF_DOWN_LINK_FAILURE: Interface Ethernet107/1/2 is down (Link failure)
    2012 Sep  4 10:23:55 NX5K %ETHPORT-5-SPEED: Interface Ethernet107/1/2, operational speed changed to 1 Gbps
    2012 Sep  4 10:23:55 NX5K %ETHPORT-5-IF_DUPLEX: Interface Ethernet107/1/2, operational duplex mode changed to Full
    2012 Sep  4 10:23:55 NX5K %ETHPORT-5-IF_RX_FLOW_CONTROL: Interface Ethernet107/1/2, operational Receive Flow Contro
    l state changed to off
    2012 Sep  4 10:23:55 NX5K %ETHPORT-5-IF_TX_FLOW_CONTROL: Interface Ethernet107/1/2, operational Transmit Flow Contr
    ol state changed to on
    2012 Sep  4 10:23:55 NX5K %ETHPORT-5-IF_UP: Interface Ethernet107/1/2 is up in mode access
    2012 Sep  4 10:24:09 NX5K %ETHPORT-5-IF_DOWN_LINK_FAILURE: Interface Ethernet107/1/2 is down (Link failure)
    2012 Sep  4 10:24:12 NX5K %ETHPORT-5-SPEED: Interface Ethernet107/1/2, operational speed changed to 1 Gbps
    2012 Sep  4 10:24:12 NX5K %ETHPORT-5-IF_DUPLEX: Interface Ethernet107/1/2, operational duplex mode changed to Full
    2012 Sep  4 10:24:12 NX5K %ETHPORT-5-IF_RX_FLOW_CONTROL: Interface Ethernet107/1/2, operational Receive Flow Contro
    l state changed to off
    2012 Sep  4 10:24:12 NX5K %ETHPORT-5-IF_TX_FLOW_CONTROL: Interface Ethernet107/1/2, operational Transmit Flow Contr
    ol state changed to on
    2012 Sep  4 10:24:13 NX5K %ETHPORT-5-IF_UP: Interface Ethernet107/1/2 is up in m
    Show VPC:
    ===========
    108544 Eth107/1/1  up     success     success                    3830
    108545 Eth107/1/2  down*  failed      Consistency Check Not      -
                                          Performed
    108546 Eth107/1/3  up     success     success                    1
    108547 Eth107/1/4  up     success     success                    3838
    Within One Minit same link fluctuating:
    =======================================
    Show VPC:
    ========
    108544 Eth107/1/1  up     success     success                    3830
    108545 Eth107/1/2  up     success     success                    1
    108546 Eth107/1/3  up     success     success                    1
    108547 Eth107/1/4  up     success     success                    3838
    Regards,
    Senthil

  • Getting hold of browsers document object, from an applet

    Well, at least that's how i think the problem will be solved.
    The purpose is to insert some text into a hidden field on a form in the html where the applet is embedded.
    so that this can be submitted along with the rest of the information that is entered through that page.
    i've been looking at the AppletContext but i don't think this will provide what's necessary.
    an alternate way of solving this would be to make an http-post with the information, since i prefer using our webserver to perform this.if this is the only way, is there a http-post object i can use for this, from an applet?

    One way is to move the entire form into your applet so that it can do a post and send all the data itself (or vice-versa; avoid using the applet).
    Another option might be to do it in two steps, have your form on one page then post all the details to the next page which contains the applet.
    The only other option I can think of is to use JSObject to call a javascript function. Look at this link http://java.sun.com/products/plugin/1.2/docs/jsobject.html
    Rob.

  • Getting error in target SOAP communication channel

    Hi all,
    I am trying to send data from Http client to Webservice.In moni i got a message processed successfully means getting black flag.But i got an error in SOAP Communication channel as "error in response".
    I got this message from that error 
    <b>"SOAP: response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied.  )"</b>
    Source side i dont configure Http adapter.Target side i configured SOAP adapter.In that SOAP adapter i configured these fields.1)Target URL 2)Configure Proxy 3)Configure proxy user authentication.
    I want get response from webservice.Please help me.
    Thanks,
    Gopi.

    Hi,
    Make sure that you have specified the proper host and port values, in the text box that appears when you check the configure proxy check box(in receiver soap adapter).
    Looks like the webservice requires a proxy authentication.
    Select the check box "configure proxy user authentication"(in receiver soap adapter) and provide the correct username and password.
    Regards,
    Smitha.
    Message was edited by: Smitha Rao

  • Getting Error while creating the proxy generator in Dot Net Connector 2003

    Hi,
    While creating the proxy generator in Dot Net Connector 2003 i am getting following error: I am successfully able to login into the SAP system and able to select the SAP tables but during the final step of proxy generator wizard i am getting following error:
    <b>----
    Error in Proxy-Generator
    To create a proxy directly from a SAP system, you must install a Java VM from JavaSoft
    Inner error was:
    Object reference not set to an instance of an object.
    OK  
    </b>
    I have already installed the Java JVM on my machine its version is as follows:
    <b>java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)</b>
    Regards,
    Ravi Shah

    Hi Amit,
    I doing good!!!! Thanks for the response.
    I uninstalled the earlier version of JVM and installed the latest version of JVM i.e. jre-1_5_0_09-windows-i586-p.
    I got the proper entries under registry mentioned below:
    <b>Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.5.0_09]
    "JavaHome"="C:
    Program Files
    Java
    jre1.5.0_09"
    "UseJava2IExplorer"=dword:00000001
    "HideSystemTrayIcon"=dword:00000000
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment]
    "CurrentVersion"="1.5"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment\1.5]
    "JavaHome"="C:
    Program Files
    Java
    jre1.5.0_09"
    "RuntimeLib"="C:
    Program Files
    Java
    jre1.5.0_09
    bin
    client
    jvm.dll"
    "MicroVersion"="0"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment\1.5.0_09]
    "JavaHome"="C:
    Program Files
    Java
    jre1.5.0_09"
    "MicroVersion"="0"
    "RuntimeLib"="C:
    Program Files
    Java
    jre1.5.0_09
    bin
    client
    jvm.dll"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update]
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy]
    "Country"="IN"
    "PostStatusUrl"="https://sjremetrics.java.com/b/ss//6"
    "EnableJavaUpdate"=dword:00000001
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start]
    "CurrentVersion"="1.5.0_09"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1]
    "Home"="C:
    Program Files
    Java
    jre1.5.0_09
    bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1_02]
    "Home"="C:
    Program Files
    Java
    jre1.5.0_09
    bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1_03]
    "Home"="C:
    Program Files
    Java
    jre1.5.0_09
    bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1_04]
    "Home"="C:
    Program Files
    Java
    jre1.5.0_09
    bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.0.1_05]
    "Home"="C:
    Program Files
    Java Web Start"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.2]
    "Home"="C:
    Program Files
    Java
    jre1.5.0_09
    bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.2.0_01]
    "Home"="C:
    Program Files
    Java
    jre1.5.0_09
    bin"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.2.0_02]
    "Home"="C:
    Program Files
    Java Web Start"
    [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Web Start\1.5.0_09]
    "Home"="C:
    Program Files
    Java
    jre1.5.0_09
    bin"</b>
    After installation I opened the Dot Net connector proxy client wizard . I followed the series of step during Dot Net connector configuration:
    1. selected the SAP connector.
    2. The next screen 'Enter Logon Information' comes where i entered the following information System as 'custom', host='IP address', Id='00' but by default it turns to '0' , client='800', user='user id' and password ='password'.
    3. After clicking on Next button i am successfully logon into the SAP system.
    4. The next screen in the wizard is 'selectall the remote function modules that you want to be part of your proxy object'. After selecting the SAP tables and clicked on Next button I am getting following error
    <b>
    Error in Proxy-Generator
    To create a proxy directly from a SAP system, you must install a Java VM from JavaSoft
    Inner error was:
    INFO: using logging implementation "AII Logging"
    Exception in thread "main" com.sap.aii.upload.api.LoginException$WrongPassword: Invalid user/password combination
         at com.sap.aii.upload.sap.SAPConnection.connect(SAPConnection.java:94)
         at com.sap.aii.upload.sap.SAPConnection.<init>(SAPConnection.java:38)
         at com.sap.aii.upload.tool.RFC2WSDLTool.getWSDLforRFCs(RFC2WSDLTool.java:81)
         at com.sap.aii.upload.tool.RFC2WSDLTool.main(RFC2WSDLTool.java:196)
    OK  
    </b>
    Thanks and Regards,
    Ravi Shah

Maybe you are looking for

  • Putting a .pdf file into a column in an oracle table

    I have created a table with one column as a blob so I can put 4800 .pdf files into that column of a table. Can anyone correct the ways I am trying to do this or let me know of a better way. I have tried several ways and have not been successful. Than

  • How may I use business catalyst with a reel name of domain ?  ..

    I don't want to have mydomain.businesscatalyst.com  but mydomain.com  but I want to use the business catalyst solution because my clients will have to admin their site I think it's not possible if I put that site on another server thank you for your

  • Path app was closed every time i opened the camera

    Hi .. I has one issue in my new Z2. in Path application, every time i want to open the camera to post a picture, the application was closed. it was not alway like that, but often. i don't know if this because of the app or because of the camera. than

  • How do I import a ringtone?

    Apple store no longer has ringtones, outside providers will not be accepted by Apple.

  • Where has the Airplay feature vanished to in iTunes 12 ?

    To whom it may concern..... I just updated to iTunes 12 and I don't seem to be able to find where he Airplay feature vanished to in iTunes 12 ? I have a Wireless Zepplin and Rotel Hi-Fi (controlled by Airport Express and Arcam IR DAC) and I don't see