Unable to connect to JAVA from SAP

Hi
My requirement is ABAP program should call java program through JCO. So i have created RFC destination in SAP machine.
I have created the java and ABAP programs also for the same.
After setting every thing I have executed a function module in ABAP which calls the java program.
This call is executing successfully once or twice out of 10 attempts of execution of the ABAP program.
I am getting below error
"Bean Y_TEST_RFCnot found on host XXXXXXX, ProgId =XXXX:
Can some one tell me why it is failing most of the times?
Regards,
Chaitanya.

Hi thanks for responding back to me.
I am already using unicode property. As i mentioned we are able to connect to RFC destination from ABAP program, but this connection is not consistent. Please check my server class (RFCServer_proj extends JCO.Server)constructor below.
public  RFCServer_proj(String gwhost,String gwserv,String progid,IRepository repository)
               super(gwhost,gwserv,progid,repository);
               this.setProperty("jco.server.unicode", "1");
               JCO.addServerExceptionListener(this);
I am using another class to start the above server.  Please check my server start up code below
private static RFCServer_proj serverConnections[] = new RFCServer_proj[20];
public  static void  startServers()  {
Experian_props props=new Experian_props();
JCO.addClientPool(props.getProperty("jco_pool"),  20, props.getProperty("sap_client"), props.getProperty("sap_user") ,props.getProperty("sap_pwd")  ,props.getProperty("sap_language"),props.getProperty("sap_host") ,props.getProperty("sap_sysnum"));
IRepository repository = JCO.createRepository("REP", props.getProperty("jco_pool"));
for(int i=0;i<CONNECTIONS;i++){
        serverConnections <i> = new RFCServer_proj                                      (props.getProperty("gwhost"), props.getProperty("gwservice"),
                 props.getProperty("progid"),repository);
         serverConnections <i>.start();
Here I am creating connection pool  of 20 and server instances also 20. Intially I used single server instance.... after increasing the instances to 20 then my days become somewhat good. Connection is successful for every RFC call.
But is it correct way of doing?
I have used SAP server name as gateway host, gateway service as "sapgw00".
Do i need to set any thing in RFC destination?

Similar Messages

  • Connectivity of Java and SAP using JCO

    Hi,
    Using the example5 given along with the JCO package I was able to connect to Java from SAP. Can I use the same server for bi directional data transfer . That is I want to use the same server to recieve data from SAP and also I should be able to Send data to SAP from Java using the same server.
    Regards ,
    Nagaraju Donikena.

    Hi,
    You can use the same server for data sending and receiving.
    You can also go through the following link for knowing more about JCO.
    http://www.persistent.co.in/resource_center/
    white_papers/Java_SAP_Integration.pdf
    Thanks
    Ritushree

  • HT201210 Am unable to connect to iTunes from my iPod device

    Am unable to connect to iTunes from my iPod device, wherein am able to sync with my laptop. Could someone help me please?

    Did you try to connect in recovery mode, explained in this article?
    iOS: Unable to update or restore
    More tips:
    iOS: Device not recognized in iTunes for Windows

  • Unable to connect to Tomcat from Java Class

    Hello,
    This is going to be long, so please bare with me.
    I have a Tomcat 5.5 on my Windows 7 machine.
    I run the Tomcat by executing the startup.bat under the bin folder. After the Tomcat is up, I am able to access the Tomcat's home page by browsing to: http://localhost:8080.
    My problem is this:
    I wrote a short Java application that tries to access the same address (http://localhost:8080) using a URL. The code listed below:
    try {
         URL url = new URL("http://localhost:8080");
         BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
         String inputLine;
         while ((inputLine = in.readLine()) != null) {
              // Process each line.
              System.out.println(inputLine);
         in.close();
    } catch (MalformedURLException me) {
         me.printStackTrace();
    } catch (IOException ioe) {
         ioe.printStackTrace();
    When I run the program I get the following exception:
    java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.Socket.connect(Socket.java:520)
         at java.net.Socket.connect(Socket.java:470)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:387)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:522)
         at sun.net.www.http.HttpClient.<init>(HttpClient.java:231)
         at sun.net.www.http.HttpClient.New(HttpClient.java:304)
         at sun.net.www.http.HttpClient.New(HttpClient.java:321)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:813)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:765)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:690)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:934)
         at java.net.URL.openStream(URL.java:1007)
         at test.xpolog.URLTest.main(URLTest.java:14)
    What I've come up with until now is the following:
    1) If I replace localhost with any other external host (such as www.cnn.com), the code works (I see the HTML printed out).
    2) If I replace localhost with [::1], the code works. * Comment about this item follows the list of items.
    3) If I run the same code on a Windows XP machine running the same Tomcat, the code works.
    4) If I run the same code on a Windows XP machine, with only replacing localhost with the address of the Windows 7 machine running the same Tomcat, the code works.
    * Comment about item #2 (I'm not sure this has something to do with the problem):
    When I run netstat -ao on the Windows 7 machine, I see the following lines regarding the Tomcat port (8080):
    Proto Local Address Foreign Address State PID
    TCP [::]:8080 [::]:0 LISTENING 5204
    TCP [::1]:8080 [::1]:60821 TIME_WAIT 0
    My thoughts:
    1) Is this related to Windows 7?
    2) Is this related to the Tomcat configuration?
    3) Is this related to some component (not the Firewall, I have it disabled) blocking the connection?
    Any help regarding this strange problem would be appreciated.
    Thanks,
    Ziv

    > Thank you so much for your patience. It makes more sense now.
    Cool! You can think of it like this: JNI is roughly equivalent to the reflection API in the Java language:
    - jobject is a reference to a java.lang.Object;
    - jclass is a reference to a java.lang.Class;
    - methodID is like java.lang.reflect.Method or java.lang.reflect.Constructor;
    - fieldID is like java.lang.reflect.Field;
    - GetObjectClass () is like Object.getClass ();
    - FindClass () is like Class.forName ();
    - GetMethodID () and GetStaticMethodID () are like Class.getMethod ();
    - GetFieldID () and GetStaticFieldID () are like Class.getField ();
    - Call<Type>Method () and CallStatic<Type>Method () are like Method.invoke ();
    - NewObject () is like Constructor.newInstance ();
    - Get<Type>Field () and GetStatic<Type>Field () are like Field.get ();
    - Set<Type>Field () and SetStatic<Type>Field () are like Field.set ();
    So if you are familiar with reflection, just think in terms of how you would perform operations in the Java language using reflection, and then translate to the equivalent in JNI.
    > Which technique is better to use? GetFieldID/GetObjectField or GetMethodID/CallObjectMethod?
    I suggest design it as if coding in pure Java. Usually this means using getter methods rather than accessing fields directly, for all the usual OO benefits of encapsulation and polymorphism.
    -slj-

  • Error while connecting for Java to SAP

    Hi All,
    I am encountering the following error while connecting from Java to SAP through JCO:
    RFC_ERROR_LOGON_FAILURE: You are not authorized to logon to the target system
    I have checked the connection string and everything appears to be fine.
    Please let me know what the problem is.
    Regards,
    Rupesh.

    Hi rupesh,
    See this thread:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f3f93ee7-0c01-0010-2593-d7c28b5377c2
    Regards, Suresh KB

  • Unable to connect to MySql from eclipse

    Hi,
    I searched a number of threads and forums but was unable to find the reason for this issue. Please find my code belo.
    import java.sql.Connection; import java.sql.DriverManager; public class MySql   {       /**     * @param args     */     /**     * @param args     */     /**     * @param args     */     public static void main (String[] args)       {           Connection conn = null;           try           {               String userName = "root";               String password = "secret";               String url = "jdbc:mysql://locahost:3306/test";               Class.forName ("com.mysql.jdbc.Driver").newInstance ();               conn = DriverManager.getConnection (url, userName, password);               System.out.println ("Database connection established");               if(!conn.isClosed())                   System.out.println("Successfully connected to " +                     "MySQL server using TCP/IP...");           }           catch (Exception e)           {               System.out.println(e.getLocalizedMessage());           }           }   }
    I added the mysql connector in the build path of eclipse but it still doesn't work.
    It gives Communication Link Failure Exception or sometimes com.mysql.jdbc.Driver
    I am able to connect to the server thru the GUI tool of MySql. I created the dsn in windows with name test using the MySql driver.
    Please help me out.

    public static void main (String[] args)
               Connection conn = null;
               try
                   String userName = "root";
                   String password = "secret";
                   String url = "jdbc:mysql://locahost:3306/mydbtest";
                   Class.forName ("com.mysql.jdbc.Driver").newInstance ();
                   //String url = "jdbc:odbc:mydbtest";
                   //Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   conn = DriverManager.getConnection (url, userName, password);
                   System.out.println ("Database connection established");
                   if(!conn.isClosed())
                       System.out.println("Successfully connected to " +
                         "MySQL server using TCP/IP...");
               catch (Exception e)
                   System.out.println(e.printStackTrace());
       }Stack trace below
    com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
    The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.mysql.jdbc.Util.handleNewInstance(Util.java:409)
         at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1122)
         at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2260)
         at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:787)
         at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:49)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.mysql.jdbc.Util.handleNewInstance(Util.java:409)
         at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:357)
         at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:285)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at MySql.main(MySql.java:30)
    Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
    The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.mysql.jdbc.Util.handleNewInstance(Util.java:409)
         at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1122)
         at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:344)
         at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2181)
         ... 12 more
    Caused by: java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:256)
         at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:293)
         ... 13 more

  • Unable to connect to database from forms or reports

    hi friends
    i installed oracle9i database and oracle 9i D2K in 2 different drives with different homes
    i am able to start database and the forms interface but i am unable to connect to the database from forms
    what might be the error please clarify it
    Bye
    Srikumar

    Thanks Farahd!
    <br><br>
    Interesting Info!
    <br><br>
    Raj<br><br>
    <b>www.oraclebrains.com<a>
    <br><font color="#FF0000" size="1">POWERED by the people, to the people and for the people WHERE ORACLE IS PASSION.</font></b>

  • Unable to connect FR studio from local desktop to HFR server

    Hi Gurus,
    I have installed HFR on client server and able to connect studio with server.
    When i tried to connect from local desktop to HFR server, I am unable to connect to the HFR server.
    error as " You are not authroized to this functionality, please contact your administrator.
    Hyperion: 11.1.2.1
    database: 11.2.0.2
    changed the ports while configuring.
    for FR given as 8010 and RA framework given as 8020.ports are opened.
    please let me know your suggestions to resolve this. am i missing something?
    Thanks!

    "You Are Not Authorized To Use This Functionality" Error Occurs When Logging On To Financial Reporting Studio From Workstation [ID 1319745.1]
    You are trying to log into the Financial Reporting Studio from with a properly provisioned user ID (including administrator IDs), but you get an error: "You are not authorized for this functionality."
    Cause
    The Financial Reporting (FR) Report Server box has multiple Network Interface Cards (NICs), and the one used by the Report Server is listed second in the binding order.
    When a connection is requested of the FR Server from the FR Studio, the server returns an IP address to the Studio client. The server will, by design, return the first IP listed in the Server Network Interface's bind order. If this first IP is not the one associated with the FR Report Server, the FR Studio login error will result.
    Solution
    1. Review the Microsoft HELP menu on the FR Report Server for information on changing the bind order of the Network Interface Cards.
    2. Change the binding order of the primary NIC on the FR Report Server box so that the FR Report Server IP address is 1st in the bind order.
    3. Reboot the FR Report Server Box.
    Alternately, if it is not necessary to have multiple NICs active on the server, you can disable all but the one used by the FR Report Service.

  • Unable to connect Biztalk service from Visual Studio

    I am trying connect to the BizTalk Adapter Service from My VS2012.
    I am sure connect information are correct with ACS Nnamespace/Issue name/Issue Secert
    But got some errors
    Exception Code: BadRequest
    Error:Code:400:SubCode:T0:Detail:ACS50000: There was an error issuing a token. ACS50001: Relying party with identifier 'http://xxxxxxxxx.biztalk.windows.net/default' was not found.:TraceID:fda3d29f-911c-4b63-8733-98c59ee4f685:TimeStamp:2015-04-24 15:51:23Z
    How can I do?

    Thanks Girish,
    I can connect Biztalk service from Visual Studio now.
    but I have an another issue with add SQL Target.
    How can I fix it?
    error below:
    500
    Code: '13' 
    Message: 'Error occurred while trying to bring up the relay service. Error Message: '要求的名稱正確,但找不到所要求類型的資料。
    '/twtestbs~_order_9fe15fb881964e3fafa9f79c7128daa9' 應用程式中發生伺服器錯誤。
    要求的名稱正確,但找不到所要求類型的資料。
     描述: 
    在執行目前 Web 要求的過程中發生未處理的例外狀況。請檢閱堆疊追蹤以取得錯誤的詳細資訊,以及在程式碼中產生的位置。
     例外狀況詳細資訊: 
    System.Net.Sockets.SocketException: 要求的名稱正確,但找不到所要求類型的資料。
    原始程式錯誤:
    在執行目前 Web 要求期間,產生未處理的例外狀況。如需有關例外狀況來源與位置的資訊,可以使用下列的例外狀況堆疊追蹤取得。
    堆疊追蹤:
    [SocketException (0x2afc): 要求的名稱正確,但找不到所要求類型的資料。]
     System.Net.Dns.InternalGetHostByName(String hostName, Boolean includeIPv6) +8767461
     System.Net.Dns.GetHostEntry(String hostNameOrAddress) +191
     System.ServiceModel.Channels.DnsCache.Resolve(Uri uri) +535
    [EndpointNotFoundException: 主機 twtestbst0379-bts.servicebus.windows.net 沒有 DNS 項目。]
     System.ServiceModel.Channels.DnsCache.Resolve(Uri uri) +17434161
     System.ServiceModel.Channels.SocketConnectionInitiator.GetIPAddresses(Uri uri) +211
     System.ServiceModel.Channels.SocketConnectionInitiator.Connect(Uri uri, TimeSpan timeout) +329
     System.ServiceModel.Channels.BufferedConnectionInitiator.Connect(Uri uri, TimeSpan timeout) +31
     System.ServiceModel.Channels.ConnectionPoolHelper.EstablishConnection(TimeSpan timeout) +951
     System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.OnOpen(TimeSpan timeout) +104
     System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) +742
     Microsoft.ServiceBus.NetworkDetector.CheckTcpConnectivity(Uri baseAddress, Exception& exception) +733
    [AggregateException: 發生一或多項錯誤。]
    [CommunicationException: Unable to reach twtestbst0379-bts.servicebus.windows.net via TCP (9351, 9352) or HTTP (80, 443)]
     Microsoft.ServiceBus.NetworkDetector.DetectInternalConnectivityModeForAutoDetect(Uri uri) +648
     Microsoft.ServiceBus.ConnectivityModeHelper.GetInternalConnectivityMode(ConnectivitySettings connectivitySettings, HttpConnectivitySettings httpConnectivitySettings, Uri uri) +149
     Microsoft.ServiceBus.ConnectivityModeConnectionElement..ctor(TokenProvider tokenProvider, SocketSecurityRole socketSecurityMode, BindingContext context, NameSettings nameSettings, ConnectivitySettings connectivitySettings, HttpConnectivitySettings httpConnectivitySettings)
    +169
     Microsoft.ServiceBus.TcpRelayTransportBindingElement.BuildInnerBindingElement(BindingContext context) +647
     Microsoft.ServiceBus.TcpRelayTransportBindingElement.BuildChannelListener(BindingContext context) +40
     Microsoft.ServiceBus.HttpRelayTransportBindingElement.BuildChannelListener(BindingContext context) +429
     System.ServiceModel.Channels.Binding.BuildChannelListener(Uri listenUriBaseAddress, String listenUriRelativeAddress, ListenUriMode listenUriMode, BindingParameterCollection parameters) +177
     System.ServiceModel.Description.DispatcherBuilder.MaybeCreateListener(Boolean actuallyCreate, Type[] supportedChannels, Binding binding, BindingParameterCollection parameters, Uri listenUriBaseAddress, String listenUriRelativeAddress, ListenUriMode listenUriMode,
    ServiceThrottle throttle, IChannelListener& result, Boolean supportContextSession) +393
     System.ServiceModel.Description.DispatcherBuilder.BuildChannelListener(StuffPerListenUriInfo stuff, ServiceHostBase serviceHost, Uri listenUri, ListenUriMode listenUriMode, Boolean supportContextSession, IChannelListener& result) +572
     System.ServiceModel.Description.DispatcherBuilder.InitializeServiceHost(ServiceDescription description, ServiceHostBase serviceHost) +1908
     System.ServiceModel.ServiceHostBase.InitializeRuntime() +90
     System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout) +182
     System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) +742
     System.ServiceModel.HostingManager.ActivateService(ServiceActivationInfo serviceActivationInfo, EventTraceActivity eventTraceActivity) +126
     System.ServiceModel.HostingManager.EnsureServiceAvailable(String normalizedVirtualPath, EventTraceActivity eventTraceActivity) +901
    [ServiceActivationException: 編譯期間發生例外狀況,因此無法啟動服務 '/twtestbs~_order_9fe15fb881964e3fafa9f79c7128daa9/RuntimeService.svc'。例外狀況訊息: Unable to reach twtestbst0379-bts.servicebus.windows.net via TCP (9351, 9352) or HTTP (80, 443)。]
     System.Runtime.AsyncResult.End(IAsyncResult result) +650220
     System.ServiceModel.Activation.HostedHttpRequestAsyncResult.End(IAsyncResult result) +210733
     System.Web.AsyncEventExecutionStep.OnAsyncEventCompletion(IAsyncResult ar) +166
    版本資訊:
     Microsoft .NET Framework 版本:4.0.30319; ASP.NET 版本:4.0.30319.17929'.'

  • Unable to connect to database from D2K

    Hi,
    GoodDay, This is Ramesh. I have loaded both Oracle 9i & D2K in my PC. But i am getting some error message while trying to connect to database from d2k forms. I entered Usename, Password. The message is..
    ORA-12203: TNS: Unable to connect to destination
    The second time i entered both Username, Password & Database.
    User Name: Scott
    Passwors : tiger
    Database: ORCL9i (SID name)
    please let me know where i am lacking..?
    Regards,
    Ramesh.

    Do you connect when you set username , passwd , database....????
    If you can via another tool , for example sql*plus then simply , copy the particular setting tns alias , you use to connect to this db, from [ORACLE_HOME]\network\admin\tnesanames.ora and paste it to [DEV2000_HOME]\network\admin\tnsnames.ora
    Greetings,
    Sim

  • Unable to connect to database from Unifier9.1 configurator

    After installing Unifier on Windows 2008 R2 64bit server , invoked Unifier Configurator while configuring database, i am unable to connect to oracle 11g database and connection test failed.
    I have ensure database, listner, telnet, ping are working fine from Unifier server to database server.
    Please let me know any pre-requisites required to make connection successful. I have invoked Configurator as Administrator as stated in installation doc.

    Hi Sachin,
    Thanks for the reply. I have created the user and granted connect,resource,create view roles as suggested in installation doc.
    do we need Oracle client software installed on Unifier system? i can say that i can telnet and ping the server on 1521 port.
    -Sreekanth

  • Unable to consume Enterprise Service from SAP Service Registry

    Hi,
    I am trying to make use of a Enterprise Service available at the SAP's Service Registry (http://sr.esworkplace.sap.com/) in a Composite Application. I am using NWDS 7.1 for this purpose.
    The steps that I follow are as follows.
    1) I try importing the Web Service by right clicking the external node under the Composite Application and give the necessary login credentials for the SAP Service Registry.
    2) I click on the "Show Advanced" link under which I make following selection:
    BrowseByApplication->ERP Foundation->Business Partner Data Management->Employee
    Now my problem is after I select the Employee node, the 'Next' button is not enabled on the Service Registry wizard.
    Can anyone give an indication of why this might be the case. You may also want to know that at this stage I have still not installed NW AS CE 7.1.
    Any help would be much appreciated.
    Thanks,
    Shailesh

    Hi David,
    Yes I was able to consume the ESOA enterprise services from SAP's ES Workplace, although I am not inside the SAP network.
    As mentioned by me in my earlier post, the problem that I was facing was faced because I used to access internet through an internal proxy server which required me to pass my NT domain credentials.
    In order to access ES workplace from NWDS would mean that NWDS will have to access the internet, but this used to fail despite my specifying the proxy server settings in the Preferences menu of NWDS.
    I was able to overcome this problem by installing an ISA Firewall client on my m/c and in the proxy settings of the NWDS specifying a direct connection to the internet. This helped me to access the SAP's ES workplace inside NWDS, once you are able to select the available ES from the SAP workplace you will be able to utilize them in your application.
    Also, once you deploy the application, the runtime, i.e. WAS will also have to be configured to access the internet, this can be done by specifying proxy settings under Global System settings options.
    Hope this helps,
    Shailesh

  • Unable to connect to internet from SunOS

    HI All,
    I am using Solaris 10 over Virtual Box(software). But i am unable to connect to the internet.
    I mean to say, only one at time can run(i.e internet or Solaries) in my HP Pavillion dv5 series PC.
    when internet connection is ON. Solaris wont start(some sort of error). If i disconnect the LAN cable, my Solaris OS
    run perfectly without an issue.
    I guess both (Solaris and LAN cable) using the same port while starting the process.
    I am yet not sure how would i start INTERNET on solaris system.
    Please, let me know how can i able to connect to the internet from solaris OS (which is running on Virtual box).
    Thankx
    Bikram....

    Thas sounds really odd... What is your host OS? I am going to assume you are using the default NAT setting for your virtual nic, try change this to bridge mode and see what happens.

  • Unable to send an idoc from SAP R/3 to XI

    Hi,
    We are trying to send Z_CREMAS_SUSMM.CREMAS03 idoc from R/3 system to XI using IDOC adapter.
    We have done the following steps.
    On  SAP R/3 system:
    1.created a RFc Destination which points to the XI system using transaction SM59
    2.created a port in which we have selected  this RFC Destination   using tansaction WE21
    3.logical system for R/3  with transacion BD54
    4.In WE20 transaction,we have configured the PartnerProfile by adding the IDOC message type to the outbound Parameters of XI Logical system.
    On XI Sytem:
    1.Created RFC destination
    2.Created a Port
    3.Loaded metadata
    While trying to Post IDOc from SAP R/3,it is throwing an error"External segment name E2LFA1M001 cannot be interpreted"
    and "Basic type CREMAS03 does not exist" on XI side.
    Can anyone please provide a solution to this?

    HI Jagruthi,
    Have you loaded the metadata into the XI system by using IDX2?
    If it is done then try to delete once and do once again.
    And also delete the IDoc from IR and reimport the IDoc and activate it once again.
    Regards
    Goli Sridhar

  • Unable to connect to DB from OBIEE 11G

    Hello experts
    I have successfully installed OBIEE 11G on my Linux machine.. On Windows machine I have installed the client tool. Both are version 11.1.1.7.0.
    I have my Tnsname.ora file saved in both Oracle_Home/network/Admin as well as OBIEE/Oracle_BI1/Network/Admin folder..
    Now my DB is on a different linux machine, so my TNSname file has the correct entry for that..
    I am able to connect to the DB from my OBIEE server machine through Putty by doing : sqlplus username/password@instance
    However, from OBIEE side, I am not able to update rowcounts nor viewing reports..
    From RPD side, I am getting errors: The connection has failed,
    From report:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65PState: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified at OCI call OCIServerAttach. [nQSError: 17014] Could not connect to Oracle database. (HY000)
    I have tried
    http://123obi.com/2011/03/error-the-connection-has-failed-in-obiee-11g/
    The problem persists.
    Let me know what should I do to resolve this issue..
    Thanks

    Hi,
    Lets try with these once
    First copy the TNSnames.ora and sqlnet.ora files from ur Database following location:C:\oracle\product\11.2.0\dbhome_1\NETWORK\ADMIN
    and paste these two files in ur Obiee installetion following two locations:
    D:\MWHOME\Oracle_BI1\network\admin
    D:\MWHOME\oracle_common\network\admin
    Hope if it helps you..
    Please mark......

Maybe you are looking for

  • Can't print from iTunes nor Safari

    Hi I have a printing issue, that I simply can't solve by myself, so I need some advice! The problem is that I can't print from Safari nor iTunes and maybe other applications aswell, but I can print from Pages without any problems at all! *In iTunes*

  • What the heck is Accessorize Test?

    Okay. something weird. Something called Accessorize Test has occured to my Ipod. out of the blue, I turned it on, and it went to Accessorize Test. I'm not sure how to fix this, I tried everything the help pages sugguest, but restarting doesn't do any

  • Control on PO creation

    Dear all, Our client have requirement that is, system should not allow to create a PO if any open PO's exist for a particular material. Is there any settings can fullfill this requirement. Please provide solution. Thanks & regards Madhu

  • Project Online and Project Lite Licenses Transferable?

    I was wondering how the user licenses are handled when deactivating and reallocating.   Are user licenses transferable for Project Online, Project Lite, and Project for O365? 

  • I would like to create sub-pages

    I would like to create pages that are sub-pages of other pages