Getting error when connecting a third pary applicatio​n to a server in my LAN

Hi
I am getting error 
javax.microedition.io.ConnectionNotFoundException: Protocol not found: net.rim.device.cldc.io.http.Protocol
when trying to connect a third pary application from Blackberry to a server in my LAN

Hi Mudessir,
With the help of ABAP'er try the following.
1. open the program 'LCLSCF2G' from SE38.
2. Keep a break point at line no: 131.
There is 'END SELECT' statement which is getting failed at line no 131 in the program.
Try to analyse the SY-SUBRC at that point.
If your technical consultant can't solve this, write to SAP OSS (service.sap.com).
I have searched SAP OSS, there are other situations, but your case is not there. So write to SAP if technical consultant can't solve it by debugging the program.
Regards,
Madhu.

Similar Messages

  • I getting error when connecting my new iPod in my car. Getting error that usb is not recognized.

    I getting error when connecting my new iPod in my car. Getting error that usb is not recognized.

    Not all car systems are compatible with the iPod touch.  Does the documentation/website for the car system say it is compatible with an iPod with iOS 5?

  • Get error when connecting SQL 2012 Management studio to SQL Server 2012 database

    I got this error message when I tried to connect to SQL Server 2012 using Management studio 2012.
    Service 'Microsoft.SqlServer.Management.IRegistrationService' not found (Microsoft.SqlServer.Management.SDK.SqlStudio)

    Did this get this resolved?
    My SSMS 2012 was running without issue for several months until I installed VS2012. After the VS2012 I started getting "Service 'Microsoft.SqlServer.Management.IRegistrationService' not found" when connecting to database in SSMS 2012. I uninstalled VS2012
    and SSMS 2012 started working again. Installed VS2012 and SSMS 2012 is broken again.
    I tried the above suggestions without success. Here are the error details. Any help is greatly appreciated.
    ===================================
    Service 'Microsoft.SqlServer.Management.IRegistrationService' not found (Microsoft.SqlServer.Management.SDK.SqlStudio)
    Program Location:
       at Microsoft.SqlServer.Management.ServiceProvider.GetService[T](IServiceProvider serviceProvider, Boolean throwIfNotFound)
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.NavigationService.Initialize()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.NavigationService.GetView(String urnPath)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.<GetColumnsFromNavigationService>d__11.MoveNext()
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.AddFields(List`1 list, IEnumerable`1 fields, IDictionary`2 allValidFields, AddFieldsFlags flags)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.GetParentFields(INodeInformation source, Dictionary`2& allValidColumns)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.BuildDynamicItemWithQuery(IList`1 nodes, INodeInformation source, INavigableItem sourceItem, String urnQuery, Boolean registerBuilder, Boolean registerBuiltItems)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.BuildDynamicItem(IList`1 nodes, INodeInformation source, INavigableItem sourceItem, IFilterProvider filter)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.Build(IList`1 nodes, INodeInformation source, INavigableItem sourceItem, IFilterProvider filter)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItem.RequestChildren(IGetChildrenRequest request)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.ExplorerHierarchyNode.BuildChildren(WaitHandle quitEvent)

  • Get error when CONNECT BY PRIOR used by where

    Hi
    I get "No more data to read from socket" error when the result of CONNECT BY PRIOR used after where, is there anybody encounter this error?
    example SQL:
    select
    from table_A
    where exists
    (select 1 from table_b
    START WITH table_b.col1 = 'value'
    CONNECT BY PRIOR table_b.col1 = table_b.col2)
    The sql select 1 from table_b START WITH table_b.col1 = 'value' CONNECT BY PRIOR table_b.col1 = table_b.col2 can return 2 row correct, but the whole sql does not work.

    Hi! Rahul,
    Thank you for your reply first. Your method doesn't work in my case.  Can you tell me the steps of creating a new layout for added records and draft documents.  I have created a quotation layout which work with added records only, the steps has been show below and please comments, thanks.
    1. In Crystal Report > new blank report > create new connection > Choose "SAP Business One" > Select OQUT under "B1 Tables".
    2. Insert "CardName" field to report > Create DocKey@ parameter and  set it equal to DocEntry in select expert record function
    3. Click Add-ins > SAP Business One > Save > Choose company database and input manager password.
    Regards,
    Ivan

  • Using DI API, getting error when connecting to database:

    The server is 2003. The sqlserver is 2005.
    We have a button that calles the DIapi function Connect().  He gets the following error: [Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the nvarchar value 'N' to data type int.
    We then tried to connect into another database in SAP we got the following error:
    1).[Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting the nvarchar value 'UDOXX_Contract to data type int.
    There is a user-defined object called 'UDOXX_Contract', but our Add-On does not use any user-defined data object, so that must be from another add-on.  I really dont know anything about these user-defined objects.  Anyone have any idea what can be causing this problem, or what i can look at concerning this?
    thanks
    Bill

    Hi Bill,
    I am not sure why it is giving you the error messages and I have never seen these errors before. What you can possibly try is to see what SQL statements it is trying to execute. You can accomplish this with the SQL Profiler.
    Are you sure you're connecting correctly? Please post your code for the connection here.
    Hope it helps,
    Adele

  • Getting error when connecting to url via https

    I am connecting to a url via https. Everything seems to work when I open the connnect as follows.
    conn = (HttpsURLConnection)theURL.openConnection();
    //Set the proper connections properties
    conn.setRequestMethod("POST");
    conn.setRequestProperty("Content-type", "application/x-www-form-urlencoded");
    conn.setDoOutput(true);
    conn.setDoInput(true);
    But when I try to send data with the following code:
    StringBuffer sendThis = new StringBuffer();
    sendThis.append( URLEncoder.encode("uid=", "UTF-8") );
    sendThis.append( URLEncoder.encode("This is the UID", "UTF-8") );
    /* PrintWriter pout = new PrintWriter( new OutputStreamWriter( conn.getOutputStream(), "8859_1"), true);
    pout.print (sendThis.toString());
    pout.flush();
    I get an error that says "could not find trusted certificate"
    Could not find trusted certificate
    javax.net.ssl.SSLHandshakeException: Could not find trusted certificate
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.b(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(DashoA62
    75)
    at com.sun.net.ssl.internal.ssl.Handshaker.process_record(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA6275)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(DashoA6275)
    at java.io.OutputStream.write(OutputStream.java:58)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(DashoA6275)
    at sun.net.www.protocol.https.HttpsClient.afterConnect(DashoA6275)
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect
    (DashoA6275)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLCon
    nection.java:562)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Dash
    oA6275)
    What am I missing ?
    thanks in advance.
    kris.

    You have to make sure that the cert for the CA which signed the server's
    certificate is in your keystore (cacerts) file.
    Check out 'keytool' and the JSSE readme.
    Cheers,
    Billy.

  • PayPal transaction completing but getting error when connecting back to site.

    Hi there,
    I'm using PayPal standard to accept payment via my site. The transactions are being completed but it then fails to redirect properly to my site.  Im getting an error message of,
    An Error Occurred
    Please go back in your browser and try again.
    The domain seems to be correct.
    'https://ddfitness.worldsecuresystems.com/PaymentProcess.aspx?tx=3L296556310289342&st=Compl eted&amt=4%2e00&cc=GBP&cm=&item_number=101
    Any ideas?

    Thanks Liam.
    I'm using the paypal buttons rather than a web form.
    Yes I'm using paypal standard to sell access to a secure zone on an eCommerce package.

  • Error when connecting to portal : Message: Dispatcher running but no server

    <br>Hello everyone</br>
    <br>
    I searched a lot on SDN for an answer to my problem but i couldn`t find any solution. Till yesterday the portal worked OK.. no errors untill this one, but from yesterday when i try to connect i received this error:
    </br>
    <br>
    SAP WebAS Engine is starting...
    </br> <br>
    If this state does not change within a few minutes,
    please contact your system administrator.
    Check the recommendations in SAP Notes: 943498, 764417
    <br> </br>
    Message: Dispatcher running but no server connected!
    Details:   No details available
    </br>
    <br>
    I read all SAP Notes regarding this problem and i couldn`t find any solution which would fit for me.
    From SAP Notes i found out that i need to analyse some logs .. here is what i found in the logs:
    </br>
    <br>
    <p>
    On stderr2 file:
    [Thr 01] MtxInit: 30002 0 2</br> <br>
    The java class is not found:  com.sap.engine.offline.OfflineToolStart</br> <br>
    The java class is not found:  com.sap.engine.offline.OfflineToolStart
    </p></br>
    <br><code>
    On dev_jcontrol:
    [Thr 01] Thu Jul  2 11:54:43 2009
    [Thr 01] JStartupICreateProcess: fork process (pid 1863782)
    [Thr 01] JControlICheckProcessList: process server0 started (PID:1863782)</br>
    <br>
    [Thr 01] Thu Jul  2 11:55:08 2009
    [Thr 01] JControlICheckProcessList: process server0 (pid:1863782) died (RUN-FLAG)
    [Thr 01] JControlIResetProcess: reset process server0
    [Thr 01] JControlIResetProcess: [server0] not running -> increase error count (4)
    [Thr 01] JControlICheckProcessList: running flight recorder:
         /usr/java14_64/bin/java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar
    com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector
    ../j2ee/cluster/bootstrap -node ID8477250 1246524883 -bz /usr/sap/BIP/SYS/global
    </code></br>
    <br><code>
    On dev_server0:
    [Thr 39324]
    [Thr 39324] *  LOCATION    CPIC (TCP/IP) on local host
    [Thr 39324] *  ERROR       illegal parameter value ( function=SAP_CMTIMEOUT2 /
                 parameter=conversation_ID / value=17508060 )
    [Thr 39324] *
    TIME        Thu Jul  2 11:55:04 2009
    [Thr 39324] *  RELEASE     700
    [Thr 39324] *  COMPONENT   CPIC (TCP/IP)
    [Thr 39324] *  VERSION     3
    [Thr 39324] *  RC          769
    [Thr 39324] *  MODULE      r3cpic_mt.c
    [Thr 39324] *  LINE        7319
    [Thr 39324] *  COUNTER     2
    [Thr 39324] *
    [Thr 39324] *****************************************************************************
    <br> </br>
    [Thr 39324] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 39324] **********************************************************************</br> <br>
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    **********************************************************************<br> </br>
    [Thr 39324] SigISetIgnoreAction : SIG_IGN for signal 20
    [Thr 39324] JLaunchCloseProgram: good bye (exitcode = -11113)
    </br></code>
    <br>
    I read the notes.. but for my problem it is written .. please contact SAP Support..Have any one .. any idea about this problem? It`s is importan because it is the future PRD portal.. not yet  with go-live.. and i do not wan`t to install it again.
    </br>
    <br>
    Thank you
    </br>
    Edited by: Patrick Raileanu on Jul 2, 2009 1:43 PM
    Edited by: Patrick Raileanu on Jul 2, 2009 1:55 PM

    <p><br>
    #1.5 #001A64E8E162007F003EC1C70008C09C00046D590A052CC2#1246129094470#/System/Server##com.sap.caf.eu.gp.schedule.impl.ScheduleWorker#J2EE_GUEST#0##n/a##9997e9e052bd11decbdb001a64e8e162#SAPEngine_Application_Thread[impl:3]_26##0#0#Error#1#com.sap.caf.eu.gp.schedule.impl.ScheduleWorker#Plain###ERROR_ACQUIRE_CONNECTION
    com.sap.caf.eu.gp.base.exception.EngineException: ERROR_ACQUIRE_CONNECTION
         at com.sap.caf.eu.gp.base.db.ConnectionPoolJ2EE.getConnection(ConnectionPoolJ2EE.java:92)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleDbImpl.getScheduleToProcess(ScheduleDbImpl.java:1936)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleService.getScheduleToProcess(ScheduleService.java:432)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:77)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:63)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    <br> </br>
    <br>Caused by: com.sap.engine.services.dbpool.exceptions.BaseSQLException: ResourceException in method ConnectionFactoryImpl.getConnection(): com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: s23 t
    IBM AIX RISC System/6000 Error: 2: No such file or directory</br>
         at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:59)
         at com.sap.caf.eu.gp.base.db.ConnectionPoolJ2EE.getConnection(ConnectionPoolJ2EE.java:89)
         ... 8 more
    <br> </br>
    <br>Caused by: com.sap.engine.services.dbpool.exceptions.BaseResourceException: SQLException thrown by the physical connection: java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    IBM AIX RISC System/6000 Error: 2: No such file or directory</br>
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:193)
         at com.sap.engine.services.connector.jca.ConnectionHashSet.match(ConnectionHashSet.java:338)
         at com.sap.engine.services.connector.jca.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:267)
         at com.sap.engine.services.dbpool.cci.ConnectionFactoryImpl.getConnection(ConnectionFactoryImpl.java:51)
         ... 9 more
    <p> </br>
    <br>
    <br>
    As you can see we have AIX 6.1 on Oracle 10.2.0.4 with ECC6 ..
    This is a strange error because on this server we have the BI productive server and the database is always available..
    Any ideas?
    </br>
    <br>
    Thank you
    </br>

  • I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101

    I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101.
    My OS is Windows Vista and using Internet Explorer

    I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101.
    My OS is Windows Vista and using Internet Explorer

  • I keep getting this error when connecting my phone (0xE8000001)

    I keep getting this error when connecting my phone (0xE8000001) to iTunes. Sometimes the phone will try and sync for a little bit then it disconnects. What gives?
    And yes, I do have the latest version of iTunes (7.3)

    i kept getting all the same errors and i just figured it out. after getting an iphone i went from pure excitment to anger as i plugged it in and realized i needed to upgrade to tiger. then i spent over an hour installing tiger and it still didnt work. i got the same itunes error of not recognizing. HERE IS THE FIX....TURN OFF THE IPHONE AND REMOVE FROM THE DOCK. DONT JUST PUT IT TO SLEEP, HOLD DOWN THE BUTTON UNTIL IT ASKS YOU TO SLIDE TO TURN OFF. THEN CLOSE ITUNES. NEXT TURN THE PHONE BACK ON BY RE-DOCKING. START UP ITUNES IF IT DOESNT START IMMEDIATELY. YOU SHOULD START HAVING FUN NOW, ALBEIT SLOW ON THE 1.1 USB.

  • Getting "server unavailable error" when connecting to HFM via a Mobi dial

    Since this morning I have been getting this error when I try to login to Hyperion: "The RPC server is unavailable"
    Strangely, I can access the network drive and even pull Hyperion information through the excel add-in but cannot login through the 32bit client.
    I am using Mobidial to access the system. Do you have any idea what the problem could be?

    I run into similar problem. Pls let me know if anybody know the solution. Thank You !

  • Getting error when trying to create Exchange Connector in System Center Service Manager 2012

    Getting error when trying to create Exchange Connector in System Center Service Manager 2012
    The connection to the server was unsuccessful. Please check the server name and/or credentials entered.
    Additional Information: The server URL is not accessible or the user does not have permission to access it (message: The request failed. The remote server returned an error: (401) Unauthorized.
    Warm Regards, Pramod Kumar Singh Manager-IT

    Someone sorted out this issue by installing API 1.2 and copying the dll files to the service manager server ,service folder and replacing it with API 2.0 dll files.
    Also, your question is related to SCSM, please post at SCSM forum if you have further question.
    Juke Chou
    TechNet Community Support

  • HT5706 I am trying to set up Apple TV with my Uverse WiFi, but I get errors when entering my password.  One site said that Apple TV doesn't work with WPA which Uverse uses.  Is there anyway around this or will Uverse and Apple TV just not work together.

    Trying to set up Apple TV with ATT Uverse.  I get errors when trying to enter my WiFi password.  One site says that Apple TV doesn't work with Uverse because it uses WPA for encryption.  If true, does that mean Uverse subscribers cannot use Apple TV?

    Spurs63 wrote:
    does that mean Uverse subscribers cannot use Apple TV?
    No, that's a rather silly conclusion.
    There are two options:
    stop using the crappy router provided by the ISP.
    Physically connect the ATV to the router via Ethernet.

  • Error when connecting to portal from some machines

    Hi all,
    Can anyone help me with this.
    I get this jserver error when connecting to portal from some
    client machines.
    I works fine from the others. Any ideas?
    This is the error I get:
    [08/01/2002 17:41:57:618 GMT+00:00] page/Timeout occurred,
    label=73 url=http://odeceixe:81/pls/portal30/!
    PORTAL30.wwpro_app_provider.execute_portlet time=15828ms
    [08/01/2002 17:41:57:618 GMT+00:00] page/ContentFetcher
    Unexpected Exception, name=content-fetcher5
    java.io.EOFException: Premature EOF encountered
         at HTTPClient.StreamDemultiplexor.read
    (StreamDemultiplexor.java, Compiled Code)
         at HTTPClient.RespInputStream.read(RespInputStream.java,
    Compiled Code)
         at java.io.InputStream.read(InputStream.java:95)
         at java.io.InputStreamReader.fill
    (InputStreamReader.java:163)
         at java.io.InputStreamReader.read
    (InputStreamReader.java:239)
         at oracle.webdb.page.ContentFetcher.run
    (ContentFetcher.java, Compiled Code)

    Did you ever find the cause of this, I am receiving the same message, but as you said, only when connecting to the portal via a certain pc.

  • Error When connecting proxy

    Hi,
    When I try to connect proxy in application, it is not connecting instead when I check whether it is going through proxy or not it is telling that it is establishing direct connection only. Here I have posted part of the coding. Please If any error give me a hint.
                System.setProperty("ProxySet", "true");
                SocketAddress addr = new InetSocketAddress("webcache.mydomain.com",80);
                proxy=new Proxy(Proxy.Type.HTTP,addr);here in this code part I am checking whether is connecting with proxy or not.
    URL u = new URL(url);
    URLConnection uu=u.openConnection(ScrapperInterface.proxy);
    try
                    URI uuu = uu.getURL().toURI();
                    List l=ProxySelector.getDefault().select(uuu);
                    for (Iterator iter = l.iterator(); iter.hasNext(); )
                         Proxy proxy = (Proxy) iter.next();
                         System.out.println("proxy hostname : " +proxy.type());
                         InetSocketAddress add = (InetSocketAddress)proxy.address();
                         if(add == null)
                             System.out.println("No Proxy");
                         else
                             System.out.println("proxy hostname : " +add.getHostName());
                             System.out.println("proxy port : " +add.getPort());
    catch (URISyntaxException ex)
                    Logger.getLogger(StartThread.class.getName()).log(Level.SEVERE, null, ex);
    }Output is:
    proxy hostname : DIRECT
    No Proxy

    Re: Error When connecting proxy You didn't get any error when you created the connection. Your title is misleading. Probably you are misleading yourself - see below.
    System.setProperty("ProxySet", "true");That does nothing. There is no such property, contrary to widespread belief.
    SocketAddress addr = new InetSocketAddress("webcache.mydomain.com",80);
    proxy=new Proxy(Proxy.Type.HTTP,addr);... and using java.net.Proxy has nothing to do with system properties in any case.
    URLConnection uu=u.openConnection(ScrapperInterface.proxy);Here you are opening a URLConnection via the proxy. As you got output from the code further down it is clear that this step must have succeeded. So all the code below is pointless.
    URI uuu = uu.getURL().toURI();Here you are getting the URI you created the connection for.
    List l=ProxySelector.getDefault().select(uuu);Here you are getting the Proxies the default ProxySelector would have given you for that URI. Nothing to do with the URLConnection you created, and nothing to do with the Proxy you created either.
    InetSocketAddress add = (InetSocketAddress)proxy.address();So here you are testing the proxy address for the system's default proxy for that URI. Again, nothing to do with what you did above.
    What you should be doing here is using the URLConnection you have already created. Not testing an address.

Maybe you are looking for