Lookup and displayField

I have a Lookup defined over a VO attribute. This lookup is using 2 different attributes as Value and Display (I store a code, but show a description). The problem is: when I define this attribute to be shown as displayField (read-only), this value is not showing the Display Attribute of my Lookup, but the Value Attribute. Anyway to solve this?
My current workaround is to join the lookup table in my query and show the desired value as another attribute.
This is NOT happening with Domains, only Lookups

Idevaldo,
I am not sure I understand your problem. Using display type "choice", this should not be an isue at all. In this case, you do not have to add the lookup entity object to your view object, if you set the lookup display attribute to "description", the description will show up in the drop down list.
When using display type lov, you should add the lookup entity object with the description attribute to your view object, as you already did. Then, in your Lookup definition, you define this description attribute as base display attribute, and you should check the "Use LOv for Validation" checkbox. In the generated application, you can then enter values in the description field, and the lov will be used to validate this value, and to copy the corresponding code into the (non-displayed) code field.
For detailed instructions, please refer to the Developer's Guide, chapter 3, section "Generating List of values".
Or is you scenario somehow different from what is described in the developer's guide?
Steven Davelaar,
JHeadstart Team.

Similar Messages

  • Cisco Jabber for Mac - Directory Lookup and Contact Fields

    Hello,
    After having issues myself with Cisco Jabber for Mac 9.2 specifically with Active Directory lookups not working, or contact information not populating (and therefore not being able to call users from the contact list as no telephone information exists) I am including a sample jabber-config.xml file that works for me.
    Please note: there are many different ways to configure this. What I will be showing is the method that works for me and my deployment, which is pretty standard.
    As always and as a disclaimer, once again, this is what has worked for my deployment scenario. Always keep backups of your configuration files, and always be mindful of anything you have configured already, especially in the jabber-config.xml file.
    Background
    My deployment is based on CUCM 9, with 1 publisher and 2 subscribers. I also have a CUCM IM & Presence 9.0 server. This assumes that you have already configured your deployment and Jabber is functioning already, albeit with the aforementioned issues.
    As for Active Directory, my deployment will be based on Windows 2008 R2 Domain Controllers running in native 2008 mode. For this example, we will be searching directly against one of the DCs with a Global Catalogue role. Please be aware that in large deployments you will have to plan accordingly with regards to lookup traffic from Jabber clients to the DCs.
    Also, as of Cisco Jabber for Mac 9, the client no longer can search via the CUCM internal directory (which may be made of local end users, Active Directory synced users, or a mix of both) and this must be done via a LDAP mechanism.
    Scenario
    In this deployment scenario, Cisco Jabber for Windows is working properly - you can search and add people from Active Directory, and contacts in your contact list have all the appropriate fields populated from Active Directory. However, when trying the same with Jabber for Mac, Jabber for iPhone or Jabber for iPad you notice that you cannot perform a directory lookup, and if you add people directly (for example, [email protected]) the user only has the IM field populated. No telephone, email or additional information is displayed.
    Solution
    Whereas Cisco Jabber for Windows uses the EDI mechanism (native Windows), whereby when running from a computer that is on the domain (or in the event that you are search for contacts in another Active Directory domain where a domain trust exists) , Jabber for Mac / iPhone / iPad uses the BDI mechanism.
    In this case, you will need to provision a jabber-config.xml file that you will upload to your TFTP server (or Publisher) that will be "downloaded" by your Jabber for Mac client and also used by the iPhone and iPad client. You can configure many options in the jabber-config.xml file, but for this example we will place just the information that we need to order for these clients to request and display Active Directory information.
    Please note that the configuration may vary depending on your deployment, but at the very least we will be:
    - Configuring a DC where we will perform the lookup.
    - Configure credentials that will be used to perform the lookup. This will be an Active Directory account that has read rights on the Active Directory domain. Please note that these credentials are saved in plain text in the file, so ensure that the account that you will be using is not privileged.
    - Configure the server port that we will be using to perform the lookup.
    - Configure the Search Base. This is basically where we want the directory lookup to happen. You can either choose for this lookup to start at the "base" of the domain (and therefore the search will iterate through all the user accounts and and OUs below the root base) or define a specific OU where you want to search.
    Caution!
    - There is a current limitation with Cisco Jabber for Mac whereby you can only have 1 search base configured. Please keep this in mind if, like me, you have multiple OUs (like an OU for each company in your organization) and under these OUs you have sub OUs as a user account container.
    - If using the top level search base, unless you specify a filter, you will potentially be able to search for all user accounts in the domain. You will need to configure the <BDIBaseFilter> parameter if you want to fine tune your search ability.
    Steps
    These are the steps I have followed. Other steps or considerations may vary.
    - Log in to your TFTP server and download the jabber-config.xml file and keep it as a backup. If you are already using the jabber-config.xml file for other purposes, do not worry - you can add your BDI information parameters inside.
    - Remove the jabber-config.xml file
    - Edit the jabber-config.xml file and configure thus:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>DOMAIN CONTROLLER IP ADDRESS</BDIPrimaryServerName>
            <BDIPresenceDomain>YOUR PRESENCE DOMAIN</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1>YOUR SEARCH BASE</BDISearchBase1>
            <BDIConnectionUsername>[email protected]</BDIConnectionUsername>
            <BDIConnectionPassword>PASSWORD</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
        </Directory>
    </config>
    For example, let´s assume the following:
    - Domain controller IP address is 10.1.1.2 .
    - Your presence domain is test.local .
    - Your search base will be test.local using the top level of the domain.
    - Your username with which you will be doing your searches is called walt . Usually you can either identify walt as test.local\walt or [email protected] . It is always best, in these sort of scenarios, to use the UPN convention so we will be configuring a [email protected] .
    - The password is the Active Directory password for the account walt .
    - I have disabled TLS in my case. There are issues with the Jabber for Mac client when using other security methods.
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>10.1.1.2</BDIPrimaryServerName>
            <BDIPresenceDomain>test.local</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1>DC=test,DC=local</BDISearchBase1>
            <BDIConnectionUsername>[email protected]</BDIConnectionUsername>
            <BDIConnectionPassword>walt01!</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
        </Directory>
    </config>
    One you have configured the jabber-config.xml file, you will now need to upload it to you TFTP server. Once uploaded, you will need to restart the Cisco TFTP service. Again, my TFTP server is on my CUCM publisher, so:
    - I go to Cisco Unified OS Administration on my Publisher server, TFTP File Management and I upload jabber-config.xml to / directory
    - I then go to Cisco Unified Serviceability on my Publisher server, I locate the Cisco TFTP service and I restart the service
    Once this is done, you can figure up your Jabber for Mac client. As a test, on your Mac (using Terminal) go to:
    /Users/username/Library/Application Support/Cisco/Unified Communications/Jabber/Config
    In here you will see several files, but what we want to see is jabber-config.xml . As soon as you start the Jabber for Mac client and log in, the jabber-config.xml file will download from your TFTP server and get saved here. When you see it appear, just type in your terminal window more jabber-config.xml and make sure that the output is the same as the xml file you created.
    From there, try doing directory search. If you have previously added contacts and they still lack attribute information, you will need to remove them (sometimes it will not refresh properly) and add them again from the directory.
    I will be updating this guide and ammending anything that is incorrect, but this is meant to be a quick checklist and steps to get this, at least in the most very basic version, up and running for Jabber for Mac.

    Hello, 
    Thanks for this post! It works, I can do lookup and also I can add found contact to contact list and get information about contact from LDAP.
    One more question: - I can't get all information about contact. I don't get e.c mobile phone number and more others attributes. I have tried to expand your file as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>IP of AD</BDIPrimaryServerName>
            <BDIPresenceDomain>Presence Domain</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1> Search Base</BDISearchBase1>
            <BDIConnectionUsername>User</BDIConnectionUsername>
            <BDIConnectionPassword>Password</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
            <BDISipUri>msRTCSIP-PrimaryUserAddress</BDISipUri>
            <BDIPhotoSource>thumbnailPhoto</BDIPhotoSource>
            <BDIBusinessPhone>telephoneNumber</BDIBusinessPhone>
            <BDIMobilePhone>mobile</BDIMobilePhone>
            <BDIHomePhone>homePhone</BDIHomePhone>
            <BDIOtherPhone>otherTelephone</BDIOtherPhone>
            <BDITitle>title</BDITitle>
            <BDICompanyName>company</BDICompanyName>
            <BDILocation>co</BDILocation>
            <BDIPostalCode>postalCode</BDIPostalCode>
            <BDICity>l</BDICity>
            <BDIState>st</BDIState>
            <BDIStreetAddress>streetAddress</BDIStreetAddress>
        </Directory>
    </config>
    But it didn't help.
    When I capture lookup via Wireshark, I can see that Jabbers sends search request with bunch of attributes, but from LDAP answer contains only 8 attributes. (see attached screenshots)

  • JDBC Scenario with JDBC Lookup and Updates

    Dear Experts,
    I am working on a JDBC receiver scenario.
    In this scenario, we are also using JDBC lookup to check the maximum EntyNumber which is a primary key. We are manually incrementing this primary key by one and inserting the record into the database.
    Both JDBC lookup and JDBC Insert are two differnt tasks. Thus when we send multiple IDOC's concurrently JDBC lookup fetches old values and when we try to insert the record if gives error of PRIMARY KEY VIOLATION.
    For example, consider the below scenario,
    Assume that there are already 10 records in the database.
    1. Two IDOCs No 1 and 2 sent from SAP system at the same time.
    2. Now, during the mapping of 1st IDOC we did a lookup and found that latest entry number in the database table is 10 and we mapped the entry number to 11 ( 10+1, i.e. next record )
    3. Before updating this record in the database, second IDOC triggered. During JDBC lookup of the sceond IDOC, we got the same entry as the earlier record has yet to be updated.
    4. During JDBC call we get the SQL error that "Primary Key Violation" because both the records have same primary key as "11".
    Kindly share your ideas.
    (SAP system is not sending the IDOC's in any certain order and we need a solution in PI itself. )
    - Shri

    >>> I am actually sending the primary key value to more than one table as a foreign key. I am looking for some solution
    If you are passing primary key value to many tables then jdbc lookup would not be solution. Use stored procedure.
    Refer this link for data type creation for stored procedure
    http://help.sap.com/saphelp_nw04/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.htm

  • *LOOKUP AND *WHEN

    Dear Sap Expert,
    We are on SAP BPC NW 7.5 SP10.
    We have faced with the following problem.
    In ownership application we have several company with Method=25(Leaving Method.) 25 is transaction data.
    So in our Script Logic we need to make list of C_ENTITY members which have Method =25 (Leaving Method) in Ownership.
    If you look to script that i attached, you can see that
    1. We set list of all Entity using *SELECT COMMAND.
    2. Then for all this company we retrieve data from Ownership using *LOOKUP and *FOR.
    3, The last step is to make list Entity members which in *LOOKUP equal to 25. For solve this we use *WHEN and *XDIM_ADDMEMBERSET command also we use variable %LOOP_CUR% to set C_ENTITY. But this last step didn't work. When we look to XDIM_MEMBERSET C_ENTITY we see that all company was written on C_ENTITY, but we need to write just that company which have in LOOKUP 25.
    If you need any additional information about this issue, please feel free to ask it.
    Thanks,
    Kadraliyev Erlan
    *SELECT(%ENTITY_LIST%, "[ID]", C_ENTITY, "[CALC]=N")
    *LOOKUP OWNERSHIP
    *DIM C_CATEGORY="ACTUAL"
    *DIM GROUPS="CG001"
    *DIM TIME="2010.DEC"
    *DIM INTCO="I_NONE"
    *DIM O_ACCT="METHOD"
    *DIM MEASURES="PERIODIC"
    *FOR %LOOP_CUR%=%ENTITY_LIST%
    *DIM C_%LOOP_CUR%:C_ENTITY=%LOOP_CUR%
    *NEXT
    *ENDLOOKUP
    *XDIM_MEMBERSET C_CATEGORY = ACTUAL
    *XDIM_MEMBERSET C_DATATS = INPUT
    *XDIM_MEMBERSET FLOW = F_CLO
    *XDIM_MEMBERSET INTCO = I_NONE
    *XDIM_MEMBERSET C_M003 = M3_NONE
    *XDIM_MEMBERSET C_M004 = M4_NONE
    *XDIM_MEMBERSET GROUPS = NON_GROUP
    *XDIM_MEMBERSET TIME = 2010.DEC
    *XDIM_MEMBERSET MEASURES = YTD
    *XDIM_MEMBERSET RPTCURRENCY = KZT
    *FOR %LOOP_CUR%=%ENTITY_LIST%
    *WHEN LOOKUP(C_%LOOP_CUR%)
    *IS "25"
    *XDIM_ADDMEMBERSET C_ENTITY = %LOOP_CUR%
    *ENDWHEN
    *NEXT

    As far as i know , WHEN can only be used for masterdata filtering ,not for transaction data filtering in NW . Transaction data can be compared with boolean expression in REC statement.
    Is Method value changes frequently? If not, method can be maintained as property and entities list with method=25 can be retrieved with SELECT statement .
    If the purpose of transaction data comparison is to do  another calculation,it can be achieved with REC statement.Sample code is below.
    *FOR %LOOP_CUR%=%ENTITY_LIST%
    *WHEN ENTITY
    *IS %LOOP_CUR%
    *WHEN ACCOUNT
    *IS TESTACC
    *REC( EXPRESSION=LOOKUP(C_%LOOP_CUR%)=25? [ACCOUNT].[TESTACC]*2 : [ACCOUNT].[TESTACC]*3 )
    *ENDWHEN
    *ENDWHEN
    *NEXT
    Hope this helps.

  • Lookup and control of licenses on Wm-Ware server

    How are licenses Wm-Ware server, Lookup and control of licenses when a user starts an Office application. Will Microsoft count users who use Office through Citrix, if the user has an Office 365 license?Or do we need to Install Office 365 on clients? We already
    have Office license today, can we transfer/migrate those to the office365? ”

    You can allow or deny launching an application, to individual users, groups, computers or computer groups.
    You can't allow x number of copies of Photoshop or any application to run concurrently until a license limit is reached.
    You would need something like Sassafras Keyserver for that.
    http://www.sassafras.com/

  • Lookup and a return table

    1.0 what's a lookup and a return table,  are they same thing?
    2.0 how do you create it?
    thanks

    Hi,
    a lookup table to enhance your data while loading. For instance you load sales in a cube and your source is providing the site and you require to post the Sale Organization.
    In a start routine (Ttransfer or Update rules) you fill via ABAP a lookup table having the relation site to Sales Org.
    In the sales org routine you read this lookup table with the key site and post the corresponding sales org in your IObj.
    The return table functionality in update rules:
    Imagine you are loading sales in a KF in a cube. Your requirement is have a year to date key figure stored as well in your cube.
    So you load sales for January, posted to period JAN.
    You would need to post this record for next 11 months as well in order to able to see YTD sales correctly when you select period FEB.
    The return table enables you to post many records from 1 loaded records.
    The lookup tables are created as internal table via ABAP in start routines
    The return table is located in an update routine for a particular key figure and you use ABAP as well
    Hoping this will answer your enquiries
    Olivier.

  • Real world use of Lookup, Fuzzy Lookup and Fuzzy Grouping?

    Hello Experts,
    Could someone please tell me the use of lookup, fuzzy lookup and fuzzy grouping tasks giving one example of each?
    I know the work what these tasks do but I want to know in which scenario and for what functionality do we use these tasks?
    Appreciate if you write down your own experiences.
    Please no URL's of MSDN/TechNet and so on. I am tired reading it.
    -Vaibhav Chaudhari

    Hello Vaibhav,
    A use of lookup: need to verify if a record or a corresponding entry exists in target before inserting it or not, it is also possible to use for merging / syncing data.
    Fuzzy Lookup Transformation: is when you need to find similarities in text, in simple words it is the T-SQL SOUNDEX function, does it sound like what it does to you? So if you have say car brand names e.g. BMW and VW this function will confidentially match
    these (depends on level chosen) even though they are not closely related. But it would not match BMW to GMC.
    Fuzzy Grouping is when you need to just group related text. It is a close cousin to the lookup, but gets applied to text sets and forms them, too. Used for data de-duplication (by match score).
    Arthur My Blog

  • Exect difference between Fuzzy lookup and Fuzzy grouping

    Hi all,
       Can you pls explain difference between Fuzzy lookup and Fuzzy grouping in simple word,pls
    Thanks
    Selva

    Hi Selva,
    In brief, the Fuzzy Grouping Transformation can be used to group the similar rows in the source dataset and identify rows of data that are likely to be duplicate; while the Fuzzy Lookup Transformation can match records between the source table and reference
    table that are similar, but not identical to, the lookup key.
    Here are good examples about the two transformations:
    http://ssis-tutorial-online.blogspot.com/2013/04/fuzzy-grouping-transformation.html 
    http://www.codeproject.com/Tips/528243/SSIS-Fuzzy-lookup-for-cleaning-dirty-data 
    Regards,
    Mike Yin
    TechNet Community Support

  • Limit the time of lookup and make the method to throw an Exception

    When I connect from
    Client
    Remote Desktop Client
    Server:
    SUN JAVA SYSTEM APPLICATION SERVER 9.0
    Initial Context object is initialized as per below coding,
    System.setProperty("org.omg.CORBA.ORBInitialHost", prop.getProperty("hostName"));
    System.setProperty("org.omg.CORBA.ORBInitialPort", prop.getProperty("portNumber"));
    InitialContext ctx = new InitialContext();
    while .lookup("globalJndiNameForSessionBean") method is invoked on the InitialContext object and if the server is not available, it is throwing non stop error.
    Please tell me wether I have to add any other Properties to limit the time of lookup and make the method to throw an Exception after two or three second, if the server is not available.

    What do you mean by 'non-stop error'? This can only happen if your code goes into a non-stop loop.
    The default TCP connect timeout is about 75 seconds, which in some circumstances is too long, but two or three seconds definitely isn't long enough. Ten to twenty would be more like it.
    I'm not aware of any system properties that limit the ORB connect timeout but then I'm not aware where the existing J2SE ORB system properties are documented. If anybody has ever found this please let us know.

  • How to avoid hardcoding in RFC Lookup and JDBC Lookup during transport...

    Hi All,
      We have RFC and JDBC Lookups in some of our scenarios(JDBC to RFC synch)....Now problem is during transport of design objects, we have to change the business system and channel name manually in UDF in target environment....as it wont change although we define the target group in SLD.....we want to avoid this hardcoding.....one idea is we can use a business service inspite of business system and assign the comm channel to it.....this business service will be generic for all environment(dev,qua and prod)...and hence we dnt hav to hardcode....pls let me knw how to achieve or its possible or not....
    waiting for ur inputs....
    Regds,
    Pinangshuk.

    Hi,
    For RFC lookup you might be doing hardcoding for Business system and RFC channel name.
    Options are
    1) Create value mapping for Business system. So you can maintain it in Directory part.
    2) Keep the RFC channel name same for all system (Development, Quality, Production)
        The details of channel can be changed in the Directory part of the respective system

  • Diff b/w lookup and join in odi

    Hi friends,
    I am new to ODI ,
                   Please can anyone explain the difference between "join" and "lookup" ?
    Thanks in advance !
    Cnu

    Hi,
    Have a look
    https://forums.oracle.com/thread/2470379
    Thanks

  • JNDI lookup and Singletons

    Hi there,
    I am doing some tests on Glassfish v3 and new EJB 3.1 features. I've migrated some beans I previously had to bind to the web layer and now I can have in the EJB layer thanks to the new Singleton concept. The problem is that I don't know if I can get them with a JNDI lookup as I do with session beans. In Glassfish log I only see entries about JNDI names for the SSBs, not for the Singletons.
    Are they visible in the JNDI naming system? How can I know the names? (I am migrating from JBoss 5.1 so I am also a bit new to Glassfish)
    I cannot do a Dependency injection @EJB as I am using struts2 actions. I can only use JNDI (not right?) :-)
    Thanks for any help,
    Ignacio

    Hi there,
    I am doing some tests on Glassfish v3 and new EJB 3.1 features. I've migrated some beans I previously had to bind to the web layer and now I can have in the EJB layer thanks to the new Singleton concept. The problem is that I don't know if I can get them with a JNDI lookup as I do with session beans. In Glassfish log I only see entries about JNDI names for the SSBs, not for the Singletons.
    Are they visible in the JNDI naming system? How can I know the names? (I am migrating from JBoss 5.1 so I am also a bit new to Glassfish)
    I cannot do a Dependency injection @EJB as I am using struts2 actions. I can only use JNDI (not right?) :-)
    Thanks for any help,
    Ignacio

  • Address 'lookup' and 'more / more all' very slow

    I use an AT&T version BB 8820, and have had it now for three weeks. It syncs up with a Lotus Notes-based address book. When using the 'lookup' feature in the address book, it was retrieving addresses within three seconds during the first two weeks of ownership. But, it started retrieving addresses versy sluggishly over the last week, sometimes taking ten minutes or more to obtain an enterprise email address. At the same time, the 'more / more all' feature to retrieve truncated messages also slowed down, also from weconds to minutes. And the 'receiving more' message appears minutes after being launched.
    My comapn's administrative support team as moved me to three different servers, coupled with two successive 'wipes' and enterprise activations. The problem still recurrs several hours after the rebuild.
    I seem to be the only user struggling with this in my company. Do you have any idea what would be causing this?
    Thanks in advance....
    Herb B

    Ok, it seems you have already covered the basics. I am wondering about the wireless portion of this setup. The 8820 is wireless. Is it possible that you can shut off the wireless to see if there is any change in the performance of the phone? Yes, this is a reach but since you seem to not have any 3rd party apps that are not running, I would think that the performance issue is either these apps are still open robbing you of memory and you think they are closed but they are not. You can view what apps are running at any given time by pressing the menu button from the home screen and selecting "Switch Application." You'll see all the open apps. There are 5 basic ones that always run and can't be shut down: BBMessenger, Home Screen, Mail, Phone and Browser.
    If you are not using these apps, then unload them for a short time to see if they make any difference. Yes, I saw you had mentioned this in the first post and confirmed some slowness prior to loading the apps, but to trouble shoot the issue, you can eliminate these apps as a potential issue testing this way. You can always install them later.
    Moving away from the apps issue, the other option is to reload the OS and tweek the memory. There are primers on the forums and how to's. One easy one is to remove any extra languages on the d... This can be done on the Desktop Manager.
    Lastly, you may have a defective phone if the OS load does not remedy the symptom...
    H.
    +++++++++++++++++++++++++++++++++++++++++++++++++
    If successful in helping you, please give me kudos in my post.
    Please mark the post that solved it for you!
    Thank you!
    Best Regards
    hmeister

  • IP address lookup and Sockets

    Hi All,
    I have created a Socket using java.net.Socket(String host, int port) by passing the required host, port parameters.
    The host string is specified in the form of xxx.xxx.xxx.xxx, even though the Java
    program(client) is running on the same machine where the server socket is listening, (IP address is not specified as 'loopback address' localhost/127.0.0.1).
    Below are my queries for the above mentioned scenario.
    1) When the data is sent/received to/from the Socket, will the data
    travel across the network and return back to the same machine or it will be a direct send/receive within the same machine?
    2) Is the loopback address 'localhost/127.0.0.1' used internally by the underlying socket implementation without performing lookup of the IP address in the network?
    3) Does this behavior varies/depends on the underlying OS or the network
    protocol/configuration?
    Thanks in advance,
    Sreenivasulu

    1: it depends upon the mechanism through which the sockets between client and server are established (in ur case the client and the server is the same machine). When u specify the localhost/127.0.0.1, port where the server is listening, then i think the request should go out to the network and the OS will handle it by it self and manage the connection then the data will not travel through the whole network. Other wise when u specify that the server is listening on 192.168.0.0:9000 then the OS will go to look up server /dns it will tell him where this system in laying on the network is it in he same netwrok or out side this network and then a connection is established now the data will travel through the network, cause it will look for the system 192.168.0.0.
    2: when u will use the loopback for specific IP then the direct connection is made to the system.
    3: i can say nothing about this issus how the other OS are behaving cause i had mostly worked on Windows NT/2000
    i am in the learning process. If i am wrong plz correct me. And i am also very much interested for the replies from other users...
    thanx

  • Ejb lookup and oc4j container startup

    I have a servlet that is set to auto start on container startup that does a lookup on a ejb in another container. jndi locates the ejbhome but fails to load the class for the ejb home. It knows the name of the class but the classloader cannot find it. This same servlet works fine after the container has started up.
    It feel the problem is a classloader problem or a restriction by oracle. Any help is appreciated.
    Why can't the OC4J default application that auto starts servlets at container startup not find the ejbhome class?
    David Jacobs

    We have previously done it, but it only worked when we are using in 10g AS R1. But now, we are porting to R2, but it doesn't work. We didn't do any other things, just a simple lookup using the url, context factory. In R1 it worked fine, in R2, we are encountering the same, NameNotFoundException. Hope someone could help us also with this. Another thing, when we are using ormi://<rest of url>, it doesn't return any exception and our application hangs, but if we use opmn:ormi://<rest of URL>, that's the time it throws the NameNotFoundException. In R1, we didn't have any problems.

Maybe you are looking for

  • How do i copy my iphoto pics to a hard drive

    I have a ton of pictures on iphoto and I want to transfer them onto an external hard drive to save space on my iMac. Is there a easy way to mass transfer them like on a windows based PC?

  • How can I send a text from my iMac to a cell phone?

    Is it possible?

  • Can't sync calendar on E-72 via MBE

    Hi I used to be able to sync calendar via MBE, however when I now go to Options>>Settings>>What to Sync, the only options that I now have is to sync e-mail, calendar and contacts no longer appear. If I go to E-mail>>Settings>>Personal Information Man

  • Special Charecter acceptable in Import manager?

    Hell Experts, I have a situation where i need to extract data from syndicator and load the same file into MDM via Import manager. The extracted file format is '.txt' (Flat File) When i try to reload the same file, import manager throws error when it

  • [SOLVED] Cannot install base

    Hello guys, I try to install Arch linux on my new laptop but pacstrap fails and returns the following error: Netcfg and netctl are in conflict. How the hell on earth I remove netcfg ? Is there a way to switch off community repo or to skip that packag