Javamail 'NoSuchMethod' error during connect

Code JDC Tech Tip "RETRIEVING MAIL WITH THE JAVAMAIL API" (http://java.sun.com/developer/JDCTechTips/2002/tt0122.html#tip1):
import java.io.*;
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class Fetch {
public static void main (String args[])
throws Exception {
String host = args[0];
// Get system properties
Properties props = System.getProperties();
props.put("mail.pop3.host", host);
// Setup authentication, get session
Authenticator auth = new PopupAuthenticator();
Session session = Session.getDefaultInstance(props, auth);
// Get the store
Store store = session.getStore("pop3");
store.connect();
// Get folder
Folder folder = store.getFolder("INBOX");
folder.open(Folder.READ_ONLY);
// Get directory
Message message[] = folder.getMessages();
for (int i=0, n=message.length; i<n; i++) {
System.out.println(i + ": "
+ message.getFrom()[0]
+ "\t" + message[i].getSubject());
String content =
message[i].getContent().toString();
if (content.length() > 200) {
content = content.substring(0, 200);
System.out.print(content);
// Close connection
folder.close(false);
store.close();
System.exit(0);
The authenticator class is runs through fine, but when it tries to connect I get the following error:
java.lang.NoSuchMethodError: javax.mail.Session.getDebugOut()Ljava/io/PrintStream;
at com.sun.mail.pop3.POP3Store.getPort(POP3Store.java:160)
at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:102)
at javax.mail.Service.connect(Service.java:246)
at javax.mail.Service.connect(Service.java:131)
at javax.mail.Service.connect(Service.java:87)
at Fetch.main(Fetch.java:21)
The mail jars are in both my <Java home>\hre\lib\ext and <JRE home>\lib\ext directories, and I can see the getDebugOut() method described in the same javax.mail.Session class that was used to build the Fetch class. Using J2SE V1.4.2 and Javamail V1.3.1 / JAFafvaa.Any help you folks can offer with this problem would be greatly appreciated. Thanks in advance!

OK, SUE, I forgot to change the host name to my POP server. Did that and now I'm getting:
javax.mail.AuthenticationFailedException
at javax.mail.Service.connect(Service.java:252)
at javax.mail.Service.connect(Service.java:131)
at javax.mail.Service.connect(Service.java:87)
at Fetch.main(Fetch.java:21)
I've used two ID's that I have under Yahoo, both of which work w/Outlook Express and and the Yahoo web portal. Any ideas what's wrong here?

Similar Messages

  • Error during connect to the instance Content Server MAXDB-XSERVER Receive

    We rebooted this mornning a PROD Instance with SAPDB!
    Second Instance is a Content Server. Now, we got an error during connect via
    DBM Gui to Maxdb 7.6.06.04
    2011-08-19     10:06:32     577 ERR     11926     XSERVER Receive packet, Ref:8 - socket recv error (110:Connection timed out
    Environment variable : 1. Insctance PROD
                                         2. Instance  Prod Content Server
    We couldnt connect to the database Instnce via DBMgui and also DB50 all collected data are visible, but its possible to start
    DBACOCKPIT, analyse DB analyser : Message
    Info Size of data cache 260306 pages, 99.98% in use, size of converter cache 1762 pages
    Its seems so regarding to the Info of DB Analyser: Instance CSP (sap1) is up since 2011-06-10 12:20:10 that the Content server
    didnt recognize that there was a boot this morning!!
    In DBACOCKPIT it seems to be o.k. ! We could not boot the PROD Host asap again, because of the maintenance time window!
    Where we could check more featur. of the content server. The processes seems to be o.k.!

    > Near the same problem occurs on our backup content server MAXDB!
    > The backup runs during this situation a expanded longer time as normal. I get in DBM Gui today always the error code -4 socket recieve error, the Icon goes green, but there isnt any possibility to analyse the check area -> Diagnosis Files, to improof the status via gui! Via tc DBACOCKPIT i could connect to the instance and get some data! For example, If i try to stop the DB analsyser, its not possible.
    I would stop the full gui and also end all dbm*.exe processes in the task manager and start it new.
    Markus

  • Error during connection test in C4C

    Hi,
    during connection test in C4C i receive Service-Ping-Error: Internal Server Error (500).
    The following error shown in HCI.
    Inbound processing in endpoint at https://iflmapgbt104xxxxavtaio-xxxx.intaas.hana.ondemand.com/cxf/COD/ERP/SimpleConnect failed with message "Error reading XMLStreamReader.", caused by "WstxEOFException:Unexpected EOF in prolog
    at [row,col {unknown-source}]: [1,0]"
    Message Processing Log{
      IntermediateError   = true
      MessageGuid         = AFUUKFubmbS4sE_0LvLxGiXTI0v4
      Node                = xxxxxxxx.od.sap.biz
      OverallStatus       = FAILED
      StartTime           = Thu Mar 26 15:40:11 UTC 2015
      StopTime            = Thu Mar 26 15:40:11 UTC 2015
      Children [
        An error has occurred in CXF Inbound Request{
          Error               = Inbound processing in endpoint at https://iflmapgbt104xxxxxavtaio-xxxxx.intaas.hana.ondemand.com/cxf/COD/ERP/SimpleConnect failed with message "Error reading XMLStreamReader.", caused by "WstxEOFException:Unexpected EOF in prolog
    at [row,col {unknown-source}]: [1,0]"
          StartTime           = Thu Mar 26 15:40:11 UTC 2015
          Status              = FAILED
    Can anyone help me on this issue?
    Cheers
    Florian

    Hi Ginger,
    somehow, yes :-) I deployed the iFlow for customer master replication. After creating a customer the trace looked different and terminated at the reverse proxy. So the simple connect somehow is not able to do the same...
    Cheers
    Florian

  • Error During Connection Pool Reserve Test

    When using Oracle 9 XA Thin JDBC driver on WLS 6.1sp3, I receive the following
    error when a reserved connection is tested. Any ideas?
    Thanks,
    -jb
    <Jul 31, 2002 9:03:26 PM PDT> <Info> <JDBC Pool test> <A connection from pool
    dsn
    was tested during reserve with a select count(*) from TEST_SCHEMA.TEST_TABLE
    an
    d failed:
    >
    <Jul 31, 2002 9:03:26 PM PDT> <Info> <JDBC Pool test> <javax.transaction.xa.XAExc
    eption
    at oracle.jdbc.xa.OracleXAResource.disallowLocalTxnMode(OracleXAResource
    .java:1045)
    at oracle.jdbc.xa.client.OracleXAResource.start(OracleXAResource.java:15
    3)
    at weblogic.jdbc.jta.VendorXAResource.start(VendorXAResource.java:41)
    at weblogic.jdbc.common.internal.ConnectionEnv.test(ConnectionEnv.java:9
    61)
    at weblogic.common.internal.ResourceAllocator.reserve(ResourceAllocator.
    java:465)
    at weblogic.common.internal.ResourceAllocator.reserve(ResourceAllocator.
    java:400)
    at weblogic.common.internal.ResourceAllocator.reserveWaitSecs(ResourceAl
    locator.java:390)
    at weblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.j
    ava:163)
    at weblogic.jdbc.common.internal.ConnectionPool.reserveWaitSecs(Connecti
    onPool.java:117)
    at weblogic.jdbc.jta.DataSource.getXAConnectionFromPool(DataSource.java:
    1136)
    at weblogic.jdbc.jta.DataSource.prepare(DataSource.java:696)
    at weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResour
    ceInfo.java:1178)
    at weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResour
    ceInfo.java:422)
    at weblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.
    java:186)
    at weblogic.transaction.internal.ServerTransactionImpl.localPrepare(Serv
    erTransactionImpl.java:1832)
    at weblogic.transaction.internal.ServerTransactionImpl.globalPrepare(Ser
    verTransactionImpl.java:1606)
    at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(Se
    rverTransactionImpl.java:217)
    at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTran
    sactionImpl.java:189)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:278)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:214)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1865)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1819)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >

    Hi Jeff,
    Do you see any oracle XA trace files, they are normally created in the
    folder from where you start WLS and have a trc extension. Can you post that
    file here so we may see the real problem that is normally logged in that
    file.
    sree
    "Jeff Brown" <[email protected]> wrote in message
    news:[email protected]...
    >
    When using Oracle 9 XA Thin JDBC driver on WLS 6.1sp3, I receive thefollowing
    error when a reserved connection is tested. Any ideas?
    Thanks,
    -jb
    <Jul 31, 2002 9:03:26 PM PDT> <Info> <JDBC Pool test> <A connection frompool
    dsn
    was tested during reserve with a select count(*) fromTEST_SCHEMA.TEST_TABLE
    an
    d failed:
    >
    <Jul 31, 2002 9:03:26 PM PDT> <Info> <JDBC Pool test><javax.transaction.xa.XAExc
    eption
    atoracle.jdbc.xa.OracleXAResource.disallowLocalTxnMode(OracleXAResource
    java:1045)
    atoracle.jdbc.xa.client.OracleXAResource.start(OracleXAResource.java:15
    3)
    atweblogic.jdbc.jta.VendorXAResource.start(VendorXAResource.java:41)
    atweblogic.jdbc.common.internal.ConnectionEnv.test(ConnectionEnv.java:9
    61)
    atweblogic.common.internal.ResourceAllocator.reserve(ResourceAllocator.
    java:465)
    atweblogic.common.internal.ResourceAllocator.reserve(ResourceAllocator.
    java:400)
    atweblogic.common.internal.ResourceAllocator.reserveWaitSecs(ResourceAl
    locator.java:390)
    atweblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.j
    ava:163)
    atweblogic.jdbc.common.internal.ConnectionPool.reserveWaitSecs(Connecti
    onPool.java:117)
    atweblogic.jdbc.jta.DataSource.getXAConnectionFromPool(DataSource.java:
    1136)
    at weblogic.jdbc.jta.DataSource.prepare(DataSource.java:696)
    atweblogic.transaction.internal.ServerResourceInfo.prepare(ServerResour
    ceInfo.java:1178)
    atweblogic.transaction.internal.ServerResourceInfo.prepare(ServerResour
    ceInfo.java:422)
    atweblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.
    java:186)
    atweblogic.transaction.internal.ServerTransactionImpl.localPrepare(Serv
    erTransactionImpl.java:1832)
    atweblogic.transaction.internal.ServerTransactionImpl.globalPrepare(Ser
    verTransactionImpl.java:1606)
    atweblogic.transaction.internal.ServerTransactionImpl.internalCommit(Se
    rverTransactionImpl.java:217)
    atweblogic.transaction.internal.ServerTransactionImpl.commit(ServerTran
    sactionImpl.java:189)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:278)
    atweblogic.ejb20.internal.MDListener.onMessage(MDListener.java:214)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1865)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1819)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >

  • Error during connection with teradata

    Hi,
    We are facing problem during terada connection.
    1. Created an DSN for tearadata.
    2. Imported tables in rpd.
    3. Now when we are updating row in rpd we are getting the error.: Object does not exist.
    So where is the error.?
    thanks
    s

    after you import the tables into RPD, first check-in changes before updating row counts.
    not doing so results in error.
    J
    -bifacts
    http://www.obinotes.com

  • Error during connecting to BW reports

    Hi everybody!
    I have a problem with my EP. I need to execute a BW report in *Business Package component* for assets.
    When i try to use this report I have this error message: 
                         Unknown system 'Only SAP R/3 system are supported currently'.
    I've configured a connection to my BW system (I've defined a new system in --> system administration, System configuration).
    When i try to the connection test (SAP Web AS Connection, ITS Connection, Connection Test for Connectors) everythig works.
    In my BW system definition the object of my BW CONNECTION is defined as System Category: "Like R/3 System" and I can't change this value.
    System type is defined as "SAP_BW"
    Remote Host Type is defined as "E" (external system)
    Please help me to configure the correct access metod to my BW system.
    Thanks a lot!
    Alex

    Hi,
    without knowing this business package, could you try to change the system type to SAP_R3. The error could mean that the BP is expecting a R3 system and no BW system.
    So if it retrieves the information from the System type attribute changing this setting might help.
    Just a guess...
    Regards,
    Holger.

  • Error during connection test for Content Producers in FPN

    Hi,
    I have a question regarding connection test for content producers in FPN. Please let me explain the scenario,
    The portal server (PS1) is in the network domain say "XYZ.com" and we are accessing the portal from different domain say "ABC.com" via browser. We need to configure another portal (PS2) which is in the network domain say "mno.XYZ.com" with PS1 using FPN. We have imported the certificates of portal PS1 (consumer) in PS2 (producer) portal server and done the required trust configurations using VA in PS2 portal server.
    Then we created a new content producer object for the PS2 portal (producer) in PS1 portal. But when we did the "Connection Tests" it gets failed with the following error message,
    "Could not retrieve the WSDL file; the handshake URL may not exist or may be invalid".
    Can any one please tell me why this error message is coming. Is it due to any network connection issue?
    Thanks,
    Gokul.

    Hi Ginger,
    somehow, yes :-) I deployed the iFlow for customer master replication. After creating a customer the trace looked different and terminated at the reverse proxy. So the simple connect somehow is not able to do the same...
    Cheers
    Florian

  • Error during connection to https web-service via proxy-server

    Hello!
    I have created Web Service Proxy using wizard in JDeveloper. Then added some code for authorization on my corporate proxy server.
    Then I was trying to connect to two different web services
    - first one was HTTP web-service - successful
    - second one was HTTPS web-service - failed with error :
    <Error> <Net> <BEA-000903> <Failed to communicate with proxy: myproxy/myproxyport. Will try connection target_url/443 now.
    java.net.ProtocolException: Server redirected too many times (4)
         at weblogic.net.http.HttpsClient.makeConnectionUsingProxy(HttpsClient.java:433)
         at weblogic.net.http.HttpsClient.openServer(HttpsClient.java:358)
         at weblogic.net.http.HttpsClient.New(HttpsClient.java:527)
         at weblogic.net.http.HttpsURLConnection.connect(HttpsURLConnection.java:239)
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.getOutput(HttpClientTransport.java:136)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:187)
         at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:124)
         at com.sun.xml.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:121)
         at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:866)
         at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:815)
         at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:778)
         at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:680)
         at com.sun.xml.ws.client.Stub.process(Stub.java:272)
         at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:153)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:115)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:136)
         at $Proxy30.queryRange(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.jaxws.spi.ClientInstanceInvocationHandler.invoke(ClientInstanceInvocationHandler.java:84)
         at $Proxy31.queryRange(Unknown Source)
         at com.volga_dnepr.wsi.fusion.model.sched_mov.SchedMovSoap12Client.main(SchedMovSoap12Client.java:54)
    Although if i switch off proxy server everything works perfect (both HTTP and HTTPS web-services).
    What could be the problem with?

    Hi Kenneth,
    At the moment, SALT does not support the configuring of an outbound proxy server. I suspect you could use a transparent proxy server, i.e., a proxy server/router combination that proxies outgoing requests, although this isn't something we have tested. My suggestion would be to open a support case and ask for this enhancement. I think it is a reasonable thing for SALT to support.
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • Error during connecting to the odata service of Employee

    Hi Everyone,
    When I am calling the employee odata service the following message is coming,
    and below error messages are coming in the console,
    2014-04-01 17:19:53 Device API logging initialized - DEVICE 2014-04-01 17:19:53 registerResourcePath ('', 'resources/') -  sap.ui.ModuleSystem 2014-04-01 17:19:53 URL prefixes set to: -  sap.ui.ModuleSystem 2014-04-01 17:19:53  (default) : resources/ -  sap.ui.ModuleSystem 2014-04-01 17:19:54 registerResourcePath ('employee_test', './employee_test/') -  sap.ui.ModuleSystem 2014-04-01 17:19:56 The following problem occurred: HTTP request failed400,Bad Request,
    SY/530Atleast one filter parameter is mandatoryBA93B9E3C3CCF1039D3100155D116802 -  2014-04-01 17:19:56 message: HTTP request failed Response Text:
    SY/530Atleast one filter parameter is mandatoryBA93B9E3C3CCF1039D3100155D116802 Status Code: 400 Status Text: Bad Request -  2014-04-01 17:19:56 The following problem occurred: HTTP request failed400,Bad Request,
    SY/530Atleast one filter parameter is mandatoryBA93B9E3C3CCF10E9D3100155D116802 -  2014-04-01 17:19:56 message: HTTP request failed Response Text:
    SY/530Atleast one filter parameter is mandatoryBA93B9E3C3CCF10E9D3100155D116802 Status Code: 400 Status Text: Bad Request -  2014-04-01 17:19:57 The following problem occurred: HTTP request failed400,Bad Request,
    SY/530Atleast one filter parameter is mandatoryBA93B9E3C3CCF1199D3100155D116802 -  2014-04-01 17:19:57 message: HTTP request failed Response Text:
    SY/530Atleast one filter parameter is mandatoryBA93B9E3C3CCF1199D3100155D116802 Status Code: 400 Status Text: Bad Request -
    And also when I am calling the entity set 'EmployeeCollection' of the odata service it is giving the below error,
    Kindly tell me, which will help me to cal the data of the EmployeeCollection entity set of the odata service. How I can connect to that odata with the help of the NetWeaver Gateway? And why this errors are coming? Do I need any authorization from our HR team of our company to connect to this odata service to retrieve data or the data should come automatically?
    Regards,
    Soumya

    To understand the error,
    1.go to developer console in chrome by pressing F12.
    2. Next go to network tab and refresh the application by pressing F5.
    3.In the network tab you will see an OData service call being fired to fetch  Employee collection data. 4.Right click on the call and open it in a new tab. There you can see the actual error message.
    From the error you have posted it looks like, the Entity collection expects atleast one filter condition to be passed while calling the collection. Calling the Entity collection without any filter is equivalent to 'SELECT *' without any WHERE clause. However in this case the particular service enforces a where clause by specifying a $filter option. If no $filter is supplier it raises an exception which you get here.

  • ORA-07200 error during connect into system or sys

    I have installed ORACLE8i EE on redhat6.2.
    Installation was successfull. But when I try
    to connect to system or sys user it throws
    ORA-07200 Saying sls-sid not defined where as
    ORACLE_SID is set in oratab also the database
    is up and running.
    Can someone provide the solution.
    Thanks,
    Chandramohan

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Chandramohan MUmmachi:
    I have installed ORACLE8i EE on redhat6.2.
    Installation was successfull. But when I try
    to connect to system or sys user it throws
    ORA-07200 Saying sls-sid not defined where as
    ORACLE_SID is set in oratab also the database
    is up and running.
    Can someone provide the solution.
    Thanks,
    Chandramohan<HR></BLOCKQUOTE>
    Hi Chandramohan,
    I think u should run netasst from ur bin directory and configure ur listner and connect data properly
    Check ur tnsnames.ora and listner.ora in network/admin directory in $ORACLE_HOME , i thnk this should help u out.
    null

  • Solman_admin password changes results in errors during managed system setup

    Hello all,
    I am trying to get Solman 4.0 EHP 1 to work, but get numberous problems.
    Currently I have 6 messages at SAP, but no solution yet.
    Situation:
    Solman 4.0
    SAP_BASIS     701     0003
    SAP_ABA     701     0003
    ST-PI     2008_1_700     0000
    PI_BASIS     701     0003
    SAP_BW     701     0003
    CRMUIF     500     0001
    SAP_AP     700     0014
    BBPCRM     500     0013
    CPRXRPM     400     0014
    BI_CONT     704     0002
    ST     400     0019
    ST-A/PI     01L_CRM570     0000
    ST-ICO     150_700     0016
    ST-SER     701_2008_2     0002
    So, it is uptodate.
    The problem:
    Changing the solman_admin password results in errors during connecting a managed system.
    In the inital setup the solman_admin is created with a pasword.
    After the basic setup I setup some managed systems.
    In the meantime I had to change the password of solman_admin
    I am logged in with solman_admin and do solman_setup to setup the managed system.
    During the setup a process tries to logon back to the solman using solman_admin and the incorrect password.
    This is the logging:
    Step SSO Details
    Found SID for SSO ACL entry : MSD
    Found login.ticket_client for SSO ACL entry : 000
    The Read entry permission on TicketKeystore/SAPLogonTicketKeypair-cert was given to sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/SetupLib.jar
    The TicketKeystore/SAPLogonTicketKeypair-cert was succesfully read (823 bytes)
    A failure occured while connecting to ABAP stack on localhost sys=70 client=300 user=SOLMAN_ADMIN
    !! Exception : Password logon no longer possible - too many failed attempts
    A failure occured while importing ABAP SSO ticket certificate in ABAP stack
    !! Exception : java.lang.NullPointerException
    Java SSO ticket certificate of MSD was imported in ABAP PSE of kswv024.mob.local (client 300)
    The Java SSO ticket certificate was successfully imported in ABAP System PSE, and the ACL updated accordingly (SID=MSD LoginTicketClient=000)
    Anyone else has this problem?
    gr
    Sander

    Just for clarification it's Solman 7.0 EHP1 correct?
    Also you may want to unlock the following user:
    localhost sys=70 client=300 user=SOLMAN_ADMIN
    Then if you navigate (in solution manager) to TCode solman_workcenter -> "Root Cause Analysis" tab ->"Agent Administration" menu item on the left -> "Applications Configuration" tab -> under the Agent Applications - Configuration menu on the left select "com.sap.smd.agent.application.global.configuration" -> Change the "Scope" drop down in the frame to the right to the SMD agent that you are using for "localhost sys=70 client=300" -> Click the "edit" button to the right of the Scope drop down box -> now find the entry below that lists "SOLMAN_ADMIN" as the user and find the corresponding password entry and update it with the new password that you changed it to -> click save and try the managed setup again.
    Hope this helps, please let me know and we can go from there.

  • Error during database connection to the database : MS SQL Server 2008 R2

    Hi All,
    I am working with ABAP Proxy to Rec JDBC( Integrating XI with MS SQL Server 2008 R2). I am using SAP PI 7.0
    I am getting error in RWB at communication channel monitoring :
    Error during database connection to the database URL 'jdbc:microsoft:sqlserver://10.1.92.111:1433;database=XONTUSERVENTURA_ORG_TEST' using the JDBC driver 'com.microsoft.jdbc.sqlserver.SQLServerDriver': 'com.sap.aii.adapter.jdbc.sql.DriverManagerException: Cannot establish connection to URL 'jdbc:microsoft:sqlserver://10.1.92.111:1433;database=XONTUSERVENTURA_ORG_TEST': SAPClassNotFoundException: com.microsoft.jdbc.sqlserver.SQLServerDriver'
    I have given Connection details at Rec JDBC Communication channel as :
    JDBC Driver as : com.microsoft.jdbc.sqlserver.SQLServerDriver
    Connection : jdbc:sqlserver://10.1.92.111:1433;database=XONTUSERVENTURA_ORG_TEST.
    Please help me in this regard. I really appreciate your valuable information and time.
    Thanks and Regards,
    Ayub.
    Edited by: Ayubsajjid on Feb 15, 2012 8:49 AM

    Hi All,
    Thanks for all your valuable inputs on my question...
    As per all your inputs, we have to install/Deploy the below required jar files in the aii_af_jmsproviderlib.sda file
    ojdbc14.jar
    msbase.jar
    mssqlserver.jar
    msutil.jar
    Can you please tell me from where we will exact this .jar file, bcoz we have search lotzz but we helpless.
    We install from this link http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=21599--> we download sqljdbc_3.0.1301.101_enu  file >sqljdbc_3.0>enu-->in that I find sqljdbc.jar and sqljdbc4.jar files only . I cant above said .jar files.
    Please help me.
    Regards,
    Ayub.

  • Windows 8.1 and most recent version of Airport Utility.  Error message 6722 during connection.

    New computer with Windows 8.1.  I have downloaded most recent version of the Airport Utility.  The utility finds by airport express but during connection I get error message -6722.  I suspect Windows 8.1 is not compatible with my first generation Airport Express but before I buy a new one would like to know for sure.

    More compatible than v2 of the Express which you cannot configure from windows.. all the later airport routers need v6 utility to configure them.. and this is not available for windows.
    These issues arise due to all sorts of things.. the error message is very unclear in its meaning.
    Plug the Express into the computer by ethernet. Do a factory reset on the Express and see if you can set it up by ethernet.
    Wireless products can be a problem. Set the Express to fixed channel, 11, 6, 1 in that order.. with no security and a simply name, for both the express and wireless. No spaces and pure alphanumeric.
    If the computer cannot connect under the most ideal situation nothing else will fix it.
    If you have an ipad iphone with iOS v6 or later then you can use the apple version Airport utility which is much more likely to work than windows.

  • RemoteException: java.rmi.ConnectIOException: error during JRMP connection

    We have a Java application implementing a RMI server.
    The server uses with the jacob api in order to generate Word files in a windows system.
    My clients work in linux.
    The RMI method is synchronized in order not to have problems executing Word from multiple threads.
    The application and the RMI server work all right for some time, but after some hours (sometimes days) the client throws the following error:
    RemoteException: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
    java.net.SocketException: Connection reset

    Hi Varun,
    This is definitely required even if you are on WAS6.40.
    After copying this , you have to also follow the register dll using this command
    rgsvr32 "c:\Winnt\system32\librfc32.dll"
    check the OS your using wether it is windowsXP/2003 or 2000.
    there are seperate commands for them to register the dll.
    This is available in the installation guide.
    we also had the same problem and then we did this and it worked for us.
    f you have done this, then there are other possibilities also
    1. Install SOAP toolkit on the CRM server as this is required to establish the connectivity
    2. See whether the MAPBOX services are deployed on the SAP J2EE engine
    3. Create RFC through SM59 only for mapbox and register them.
    4. See if there are any old versions of Java on your machine then uninstall them and install the required java components.
    Let us know if it resolved the problem
    Thanks
    Yash
    reward points if it helps.

  • Error during RETR epilogue: FTPEx: 426 Data connection: Broken pipe

    Hi Experts,
    We have XI file to file transfer configured via the ftp...
    while im trying to upload the file from the source folder to target folder, im getting the following error: which i have tried to resolve but not able to...
    help in this regard will be greatly appreciated:
    "Could not process due to error: java.lang.IllegalStateException: Error during RETR epilogue: com.sap.aii.adapter.file.ftp.FTPEx: 426 Data connection: Broken pipe."
    Regards,
    nandan

    if I were you I would put the lines
    kkSocket.setSendBufferSize(1024);
    kkSocket.setSoTimeout (10000);
    kkSocket.setTcpNoDelay(true);
    before connecting to the server, not after the initial message was sent.

Maybe you are looking for

  • Is there a way to print a page of the same address.

    Using address book to print addresses, I would like to be able to print several of the same address on one page of labels. Is this posible? If not is there athird party app. that I could use?

  • Micro-commits in Git

    So we had a power outage at my college today and a bunch of seniors were angry coz they hadn't saved when the power went out and lost hours of work. Sucks to be them. Anyways, I save regularly and I also version control all my files using Git and thi

  • Freeze Panes in Web Dynpro Table

    Dear all, How r u ? Is it possible to Freeze Columns (panes) in a Web Dynpro Table ? Kindly let me know any way this could be made possible. Thanks! Best Regards.... Sankar Kumar +91 98403 47141

  • MediaSource Crashes when loading Zen Xtra libr

    I have a Zen Xtra 40 GB and SoundBlaster Wireless Music (SBWM). I have had the SBWM installed and running with all the latest updates for a couple of months. I have about 4800 tracks ripped onto my PC hard dri've currently (and will at least double t

  • Confusion about Master data text

    Hello all, I am little bit confused about the modelling concept in BI7. My confusion is about the Text table creation and its concepts. I got a Flat File data in my PC .Here is the scenario: Material Num, Material Name,  Material Description