Connection method

Hi Hussein and Helios,
What is the default connection method in ebs whether shared server or dediacted server?
can i change that?
Edited by: user3266490 on Feb 26, 2010 8:11 PM

Hi,
What is the default connection method in ebs whether shared server or dediacted server?I believe it is dedicated server in 11i/R12.
can i change that?What is the point of changing it? I am not sure if this is supported, so I would suggest you log a SR to confirm this with Oracle support.
Regards,
Hussein

Similar Messages

  • What is the direct connect method for transfering photos from my macbook pro to my iphone without using iTunes syncronization? (iow: a simple photo copy from mac to iphone?)

    I feel like I should know the answer to this. I can't believe it is a hard question.
    What is the direct connect method for transfering photos from my macbook pro to my iphone without using iTunes syncronization? (iow: a simple photo copy from mac to iphone?)
    Easy? Right?
    Just plug my iphone in to a mac and copy a photo from the mac to my iphone.
    I don't have internet access - I can't email it, or mobileme it, or dropbox it.

    iTunes. Other than that there is no direct method. However, do try the iPhone forums.

  • Unable to use "easy connect" method to XE database

    All,
    I have an XE database running on Oracle Enterprise Linux. If I create a tnsnames.ora entry I can connect to the server fine. However, if I try to connect via the easy connect method
    sqlplus user@host:port:sid it fails with
    Enter password:
    ERROR:
    ORA-12545: Connect failed because target host or object does not exist
    the hostname I am using is definitely correct and I've also tried with ip address and get same error message. If I change from SID to SERVICE_NAME
    sqlplus user@host:port/service
    I get the following error message
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    I've used both XE and xe as service name. The service name in my tnsnames.ora entry that works uses lower case xe for service name.
    Any help out there would be appreciated.

    Maybe this is more significant for you ?
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\User1>sqlplus test/test@xe
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Feb 3 14:05:49 2007
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ERROR:
    ORA-12154: TNS:could not resolve the connect identifier specified
    Enter user-name: test/[email protected]/xe
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL>

  • The selected printer connection method is incorrect. Select the....... ERRO

    Just upgraded to 10.5. I'm setting up a few printers and a plate maker. Got everything setup as far as I could tell but one machine wont work. It's an ImageRunner 8500 from Canon. When I try to print to that printer I get this:
    The selected printer connection method is incorrect. Select the correct printer connection method in printer list, and then try to add the printer again.
    Not what thats about. In the printer list, It shows up there with everything else that is connected via Appletalk. I got the PPD for the Konika Minolta CPP500 installed and it prints fine... any ideas? Thanks,
    Chris

    Hi John
    I tried Appletalk but that printer does not appear. However LPD does work. I think the problem was on checking my other Macs in the office, there is no way of telling whether they are connect via IPP or LPD as the set up appears the same, i.e. IP address. When I tried to add my the printer again, I had forgotten how we set it up originally.
    Many thanks for pointing me in the right direction.

  • Java Socket bind() and connect() method

    Hi,
    I'm running a windows xp machine and have set it up (using the raspppoe protocol) to make simultaneous dial-up connections to the internet. Each of these dial-up connections then has its own IP address.
    When I create a new Socket, bind it to one of these IP addresses and invoke the connect() method (to a remote host), the socket times out. Only when i bind it to the most recent dial-up connection that has been established, the socket connects.
    I'm welcome for any ideas :)
    thanks

    If you'll excuse the lengthy post it has alot of code and outputs :)
    Ok Wingate really doesnt have much to do with the program, let me get back to the point and then post the code I have.
    Goal of the application:
    To use multiple simultaneous dial-up interfaces connected to the internet by binding each of them (using Socket class .bind() method) to its associated Socket object.
    Method:
    I use the RASPPPOE protocol for Windows XP to allow these multiple simultaneous ADSL dial-up connections. Each of these dial-up instances gets assigned an IP address. I use the NetworkInterface class to retrieve these interfaces/IP addresses and then run a loop to bind each Socket to its associated interface.
    The code I am pasting here is over-simplified and is just to illustrate what it is i'm trying to do.
    Firstly, this is a cut & paste of the tutorial from the Java website on how to list the Network interfaces on an operating system and the associated output:
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import static java.lang.System.out;
    public class ListNIFs
        public static void main(String args[]) throws SocketException
            Enumeration<NetworkInterface> nets = NetworkInterface.getNetworkInterfaces();       
            for (NetworkInterface netint : Collections.list(nets))
                displayInterfaceInformation(netint);       
        static void displayInterfaceInformation(NetworkInterface netint) throws SocketException {
            out.printf("Display name: %s\n", netint.getDisplayName());
            out.printf("Name: %s\n", netint.getName());
            Enumeration<InetAddress> inetAddresses = netint.getInetAddresses();       
            for (InetAddress inetAddress : Collections.list(inetAddresses))
                out.printf("InetAddress: %s\n", inetAddress); 
            out.printf("Up? %s\n", netint.isUp());
            out.printf("Loopback? %s\n", netint.isLoopback());
            out.printf("PointToPoint? %s\n", netint.isPointToPoint());
            out.printf("Supports multicast? %s\n", netint.supportsMulticast());
            out.printf("Virtual? %s\n", netint.isVirtual());
            out.printf("Hardware address: %s\n", Arrays.toString(netint.getHardwareAddress()));
            out.printf("MTU: %s\n", netint.getMTU());       
            out.printf("\n");
    }For which the output is:
    Display name: MS TCP Loopback interface
    Name: lo
    InetAddress: /127.0.0.1
    Up? true
    Loopback? true
    PointToPoint? false
    Supports multicast? true
    Virtual? false
    Hardware address: null
    MTU: 1520
    Display name: Intel(R) PRO/Wireless 3945ABG Network Connection - Packet Scheduler Miniport
    Name: eth0
    InetAddress: /192.168.1.10
    Up? true
    Loopback? false
    PointToPoint? false
    Supports multicast? true
    Virtual? false
    Hardware address: [0, 25, -46, 93, -13, 86]
    MTU: 1500
    Display name: WAN (PPP/SLIP) Interface
    Name: ppp0
    InetAddress: /196.209.42.125
    Up? true
    Loopback? false
    PointToPoint? true
    Supports multicast? true
    Virtual? false
    Hardware address: null
    MTU: 1492
    Display name: WAN (PPP/SLIP) Interface
    Name: ppp1
    InetAddress: /196.209.248.25
    Up? true
    Loopback? false
    PointToPoint? true
    Supports multicast? true
    Virtual? false
    Hardware address: null
    MTU: 1492
    Display name: WAN (PPP/SLIP) Interface
    Name: ppp2
    InetAddress: /196.209.249.4
    Up? true
    Loopback? false
    PointToPoint? true
    Supports multicast? true
    Virtual? false
    Hardware address: null
    MTU: 1492The part to take notice of is the three WAN (PPP/SLIP) Interfaces named ppp0, ppp1 and ppp2. They are simultaneous dial-up connections to the internet, each with a unique IP. I will now attempt to use one of these interfaces to establish a connection to www.google.com on port 80 (purely for illustration).
    In the code printed below, I simply hard coded the above listed IP address of the interface for simplification:
    import java.net.*;
    import java.io.*;
    public class SockBind {
         private Socket connection;     
         private void start() throws IOException
              while (true)
                   try {
                        connection = new Socket();
                        connection.bind(new InetSocketAddress("196.209.42.125", 12345));
                        connection.connect(new InetSocketAddress("www.google.com", 80));
                        connection.close();
                   } catch (SocketException e) {
                        System.err.println(e.getMessage());
         public static void main(String args[])
              try {
                   SockBind s = new SockBind();
                   s.start();
                   System.out.println("Program terminated.");
              } catch (IOException e) {
                   e.printStackTrace();
                   System.exit(1);
    }Once the program reaches the connection.connect() method, it pauses a while until it throws a SocketException with a "timed out" message. I have already tested the dial-up connection (using a wingate, which is irrelevant) just to confirm that the connection is in working order.
    EJP if you have any suggestions I will welcome it, many thanks :)

  • MSFT_ISCSITarget.Connect() Method is throwing System.Management.ManagementException "not found"

    I am using c# wmi calls to connect to connect to ISCSI LUN through ISCSI initiator. I am using windows server 2012 r2. From server manager I am able to connect through ISCSI initiator. From GUI every thing is working fine.  I am able to list ISCSISessions
    through ISCSISession.GetInstances() in c# code. WmiExplorer is also showing that connect method is there. Generated class contains the connect() method.
    System.Management.ManagementException was unhandled by user code
      HResult=-2146233087
      Message=Not found  
      Source=System.Management
      StackTrace:
           at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
           at System.Management.ManagementObject.Initialize(Boolean getObject)
           at System.Management.ManagementObject.get_ClassPath()
           at System.Management.ManagementObject.GetMethodParameters(String methodName, ManagementBaseObject& inParameters, IWbemClassObjectFreeThreaded& inParametersClass, IWbemClassObjectFreeThreaded& outParametersClass)
           at System.Management.ManagementObject.GetMethodParameters(String methodName)
           at ROOT.MICROSOFT.WINDOWS.STORAGE.ISCSITarget.Connect(String AuthenticationType, String ChapSecret, String ChapUsername, String InitiatorInstanceName, String InitiatorPortalAddress, Boolean IsDataDigest, Boolean IsHeaderDigest,
    Boolean IsMultipathEnabled, Boolean IsPersistent, String NodeAddress, Boolean ReportToPnP, String TargetPortalAddress, UInt16 TargetPortalPortNumber, ManagementBaseObject& CreatediSCSISession) at ROOT.Microsoft.Windows.Storage.MSFT_iSCSITarget.cs:line
    402

    Hi,
    The issue is related to C# language, I suggest you ask for help from MSDN forum for better and accurate answer to the question.
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=csharpgeneral
    Regards,
    Mandy
    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.

  • New Secure Connect Method

    Hi all
    For more information about the new secure connect method for SAP processes to connect to the Oracle database, see [our homepage|SAP on Oracle].
    Best regards, Aidan
    Follow us on [Facebook |http://www.facebook.com/SAPonOracle#!/SAPonOracle] and [Twitter|http://twitter.com/#!/SAPonOracle].

    Its pretty easy. Perform the steps mentioned in this link
    http://docs.oracle.com/cd/E23507_01/Platform.20073/ATGConsCommRefGuide/html/s0604shippingcalculators01.html
    -karthik

  • CONNECT method in HTTP request

    Hi,
    I'm writing a proxy which at the moment, basically receives request from the browser and creates a socket which forwards it to the requested server/url and send the response back to the browser.
    I'm having a problem loading http://gmail.google.com. The request gets redirected (302 Moved Temporarily) twice and at the third time, the browser sends the following request.
    Request
    CONNECT www.google.com:443 HTTP/1.0
    pragma:  no-cache
    proxy-connection:  Keep-Alive
    host:  www.google.com
    content-length:  0How am I suppose to handle this request? Do I create a Socket which connects to www.google.com at port 80 and then send the request header over? Or do I create the Socket with port 443?

    CONNECT command is used when it wants to open another connection. it is similar to secure protocol https. so what i think is you have to open another connection to google and port is 443. but different between connect and GET/POST menthod will send the request header to the server. but connect method will not send any request header but it will transfer some data through that connection. data can be anything like encrypted information, binary file and so on.

  • Intel Mac 10.4.x "Connection Method not supported -9786"

    we have a customer with the new intel powerbook and tiger system.
    but if he want to print via tcp/ip he get this error on the screen:
    "Connection Method not supported -9786"
    i could nowhere found this error code.
    any ideas ????
    andy
    powerbook g4   Mac OS X (10.4.6)  

    Hi Andy,
    I just read your posting from two weeks ago and thought I would add some info.
    Yesterday I had a customer suffering the same problem. They had just purchased an iMac w Intel and were attempting to connect to a Canon iR4570. They had other PPC Mac's which were running varying versions of 10.4 and were all printing okay. But this iMac was getting the error -9786.
    I found that he was trying to connect via IPP, but entering the queue name as LP (which is what you do for LPR connections). By changing the queue to socket://ip address:9100 the error was resolved.
    The thing to note about this situation was that since this was the first printer he was adding to his Mac, the protocol was defaulted to IPP. With the previous driver installations he had performed on the other Mac's, the protocol was defaulted to LPR. This would have been due to this protocol being the last one used previously. But the customer had only been taught to add the IP address and the queue name and wasn't aware of the protocol menu...

  • Selected printer connection method is incorrect

    Whenever I try to print to our networked Canon ir5020 copier, I get a message "The selected printer connection method is incorrect. Select the correct printer connection method in Printer List, and then try to add the printer."
    I have tried it with PDFs and Word docs and still get the same message. If I click okay on the above message and the job spools to the printer I get another message "connection method not supported -9786".
    I have also deleted the printer and added it again, via IPP.
    I have tried printing from another user account on the same Mac and get the same. Other Macs on our network can print to the Canon without any problems.
    I am using the Canon PS driver version 1.50, which appears to be the most up-to-date. I have also tried downgrading to version 1.40, which is the version the other Macs are using and it still does not work.
    As a last resort I have reset my printing system and added my printers again – and I am still getting the same message.

    Hi John
    I tried Appletalk but that printer does not appear. However LPD does work. I think the problem was on checking my other Macs in the office, there is no way of telling whether they are connect via IPP or LPD as the set up appears the same, i.e. IP address. When I tried to add my the printer again, I had forgotten how we set it up originally.
    Many thanks for pointing me in the right direction.

  • 5800 loses default connection method

    In Connectivity/Destinations, I have "Internet" as my default connection method, this is denoted by a tiny little tick at the side of it.
    But every now and then, it will fail to connect, and when going into Connectivity/Destinations, the little tick has gone.
    This is my 3rd 5800 and the 3rd one to do this.. any ideas why ?

    If there are mobile networks on the default container, if you lose the connection to wifi, it would revert to that and may cost you...Hmm..never experienced this before....try to restore factory settings.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Does PB 12.6 support to use other connection method (e.g. OLEDB) MS SQL server 2012 ?

    Hi
    I checked following page and I understood that PB 12.6 supports native connection for connecting to MS SQL Server 2012.
      Latest database native drivers supported by PowerBuilder 12.6
      http://wiki.scn.sap.com/wiki/display/SYBPB/Latest+database+native+drivers+supported+by+PowerBuilder+12.6
    But there is no info about other connecting methods (e.g. OLEDB).
    Does PB 12.6 support to use them ?
    And is there a info of it ?
    Thanks.
    Tsuyoshi Yagi

    Hi Tsuyoshi;
    1) FYI: OLE-DB and ODBC are examples of "middle-ware" and are not a direct connection to any DBMS vendor!
    2) The true native client connection to SS is SNC (SQLServer Native Client). That connection mechanism is supported in PB.
    Note: You could also use JDBC or ADO.Net as well from PB. Personally, I always use SNC for the best performance and supported DML functionality.
    HTH
    Regards ... Chris

  • Best connection method

    Which is the best connection method for Java programming? ODBC? ODP? OLE DB? JDBC?
    And why do you think is the best method?
    What is exactly JDeveloper? is it just a tool for Java programming?

    These questions are too general for this forum really: you
    should web search for opinions on these matters.
    Which is the best connection method for Java programming? ODBC? ODP? OLE DB? JDBC?JDBC is the most commonly used route to get from Java to a relational database
    - oracle provides a JDBC driver for its own database.
    And why do you think is the best method?ODBC - OLE DB _ much too microsoft
    ODP - what's that?
    What is exactly JDeveloper? is it just a tool for Java programming? No, just the tool for Java programming.
    regards, Karl (JDeveloper Development)

  • Dose SQLDeveloper tool support Microsoft ODBC connection method?

    Dear Support,
    Greetings…
    Dose SQLDeveloper tool support Microsoft ODBC connection method? If yes how
    Thanks and Best Regards,
    Hassan Bohra.

    No, and I dont think it ever will, since it's a Java application and the standard for Java is JDBC.
    If you already have an ODBC connection in place, probably you have also a TNS file somewhere and an environment variable pointing to it, so to connect SQLDeveloper you only need to select the TNS connection type and choose your target database from the ones defined in the TNS file.

  • Questions about the new SBO2007 connection method

    Hi all
    Anyone who can clear up the following programs for me:
    1 - With the new DI connection method multible add-ons can share the same DI-API connection (1 add-on = 80 MB, 2 add-ons = 81.5 MB and so on). But is this sharing user-specific or machine specific... Imagine 10 user on a terminal server all running only one add-on. Will those 10 instances of the same add-on share DI-API connections and in total use 93.5MB (80 + 91.5) or 800MB (1080)?
    2 - Am I correct in assuming that the new connection method works when creating internal add-ons (running within the SBO client) or will external add-ons benefit in any way?
    3 - Does the SAP add-ons allready use the new connection system?
    4 - In the explaination of the new DI connect method the help file states "It is highly recommended to use XML format of the DI-API.".. What does this mean?... The connection itself does not seem to have any xml involved.

    Hi Rasmus,
    I haven't seen any official test results but here's what we have found so far:
    1) The shared DI API resource is stored within the SAP Business One client executable. This means that this grows by 80MB during the first connection but stays the same size as other addons connect. The addons themselves typically now take up 10-15MB (ie like an addon that only uses the UI API). On a Citrix or Terminal Server, as each user has their own SBO executable, the DI API connection will take 80MB+ per user session (assuming all addons are connecting using this new method).
    2) As far as I know, this new connection method is only available for applications that use the UI API to connect to the SBO client (the GetDICompany method is on the UI API company object and not part of the DI API).
    3) The SAP Fixed Assets and Outlook Integration addons do not use the new connection method (tested on patch 35). The rest I don't know about as we don't typically use them here in NZ. It would be really useful for SAP to make an official statement on this topic as it would definitely influence my decisions on using the new method.
    4) I'm not sure what they mean either :-\
    The biggest problem I found with this new connection method is debugging. When writing an addon, each time I ran a new debug session, the SBO client executable would grow by 70-80MB as it created a new DI API connection. However, when the debug session ended, the SBO executable did not release the memory used. After 4-5 debug sessions, the SBO client was taking 1/2GB of memory and couldn't be closed. This meant I had to close and reopen SBO every 2-3 debug sessions, which was a bit of a pain. In the end I reverted to writing using the old connection method and changed it over as a last step. Not sure if I was doing something wrong or this is a weakness in the new connection method while developing.
    I also read that SAP are advising that a shared DI API connection can lower performance in some cases.
    Kind Regards,
    Owen

Maybe you are looking for

  • What version of Visual Studio should I use to build the samples in the CS5 plug-in SDK?

    I just downloaded the plug-in SDK for CS5.  I tried to build two of them in Visual Studio 2012.  VS2012 had to convert them for me.  The first one, 3DHeightField, failed abysmally, as it tried to redefine standard library keywords for no reason I'll

  • Including js files in a jsp?

    I'm sure this is a pretty stupid question, but it's one I've been having trouble with anyway. The big picture problem is trying to include jquery into my website. I've downloaded it and added it to a folder (/scripts/jquery-1.3.2.js) What I've tried

  • SAP PM: Maintenance Order Creation

    Dear Sir, We have a scenarios, Example A department is having 30 Activites to be performed during maintenance in diffrent cyle.         JAN         1     2     3    4    5 ......................... Act1   -  1M     E1   E2 Act2   -  1M     E1   E2 AC

  • Logitech Quickcam Vision MP for Mac not completely working

    Hi, I got a Logitech Quickcam Vision Mp for Mac from an Apple store, but it's not completely working. It works fine for iChat and Skype. However i doesn't work at all for iMovie, it says there is no camera atached, and it kind of works for Photo Boot

  • Razer Lycosa touch pad

    Razer Lycosa touch pad not working with iTunes... works with every other media player. Keyboard Drivers are fully up to date as is iTunes, so yeah..