Which is the way to take JNDI info about some Entity Bean????

I'm trying to take the JNDI reference of an Entity Bean for using in a lookup method in a dimanical way. i.e I have to choose one of any possible Entity Beans depending of the JNDI reference of them.
Any help needed...
Thank you.

Friend,
Did you try looking at the XML deployment descriptors? You can see there <ejb-name>
Ramgopal

Similar Messages

  • Ok, so i bought a imac 27 about 4 months ago, and now they release a new one!  ****... So my question is, should I sell this one (which by the way is the i5 2.8 with 1 gb 5750 and 4gb ram) and buy the new imac 27 i5,or keep the one i have and buy more ram

    ok, so i bought a imac 27 about 4 months ago, and now they release a new one!  ****... So my question is, should I sell this one (which by the way is the i5 2.8 with 1 gb 5750 and 4gb ram) and buy the new imac 27 i5,or keep the one i have and buy more ram. I mostly use my computer for photoshop cs5 and illustrator cs5 for graphics out put as well as surfing the web and music.
         Please give me you thoughts on what I should do!!  Thanks  lot!

    The new iMac is about 25% or so faster than your current iMac(comparable model would be the 3.1ghz version). There are a couple of things that you will benefit from such as the dual Thunderbolt/Mini Display ports/ which may help with multitasking. The video card in the new iMac again the comparable model being the 3.1ghz is a lotttttttt better than the current one that you have. So thinking of the long run those few things may be beneficial for you to upgrade(but it depends on what is important to you).
    I had the 2.93ghz i7 version that I just bought in March this year and I turned around and sold it about a week before the new iMac's were announced. I got about $1600 for it, yeah I took a loss but to me it was worth it because my new iMac performs that much better. Now keep in mind I went from i7 to i7...3.4ghz i7 with the 2gb video card. Now I have dual thuderbolt/mini display ports. I have noticed significant gains in my video editing and also in my gaming. So to me it was definitely worth the upgrade!
    One last thing, I would not have sold my 2.93 i7 and then bought the 3.1ghz i5, the big reason is because HT(hyper threading), it's only on the i7 model(3.4ghz)... If you take a look at some of the bench marks on engadget, maclife, macrumors, macworld, ****Barefeats.com(they really get into benchmarking)*** you will see charts that will help you make a better decision.
    In closing I would say look into it, if you can get a good price out of your current iMac to put toward a new iMac then do it. Like others have mentioned to you, tech changes and Apple will change the tech in these machines next year or do a speed bump later this year or so. One last thing if you go from the 2.8 i5 up to the 3.4 i7, you would definitely see the difference (HT is a must especially for programs that utilize it. You can go to my youtube channel(mob1278) and take a look at my geekbench results.... my 2.93 i7 scored around 10500-11000(8gb ram)...my 3.4 i7 scores from 12700-13000 with 4gb ram....so yeah as you can see big difference. Basically the 3.4 i7 would perform similar or just under a 2.4ghz 8core 2010 Mac Pro which runs you about $3500 with no monitor.... it's your money spend it how you want....and Lion is only going to push it even more when it is released!

  • I have continuously over the last 6 months struggled with syncing my iphone and ipod with itunes  The app continually crashes during the picture import.  AND by the way it takes 10-15 minutes before it even attempts to import photos.  The screen says impo

    I have continuously over the last 6 months struggled with syncing my iphone and ipod with itunes  The app continually crashes during the picture import.  AND by the way it takes 10-15 minutes before it even attempts to import photos.  The screen says importing photoes but doesnt try to optimize or anything for 10 minutes.  I have a 3gs with 16Gb so its not a cheap phone.  I have 10Gb free.  I have 6600 photoes.  This is very frustrating and undermines my confidence in your products.  My ipod is an ipod 4 with 16Gb also.  It does the exact same thing to it.  The last time, I had to import photoes a few at the time and with it taking 10-15 minutes each time for 6600 photos it is a long frustrating process.  But it will import every photo a few at a time.  The error message is just that itunes has stopped working.  no hint as to why. AND of course, my phone is out of use for the entire time.  You guys must not want to believe ur phones are a necessary tool...or maybe you dont want the consumer to believe it is.  I have tried to find solutions on your website as well as through other 3rd party communities.  Ultimately they were of no use.  I stumbled onto my solution by accident since Im a bit of a computer geek...a semi-geek.

    I have this issue too, I went into my Windows event viewer. (should have looked at this a year ago when this started)
    it said this
    Faulting application name: iTunes.exe, version: 11.0.2.26, time stamp: 0x51253247
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b8f
    Exception code: 0xc0000374
    Fault offset: 0x000ce6c3
    Faulting process id: 0x14d4
    Faulting application start time: 0x01ce194399f166ba
    Faulting application path: C:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\Windows\SysWOW64\ntdll.dll
    Report Id: 0eb3c37f-8537-11e2-9351-50465d6737de
    basically whenever I try to sync my ipod touch 4G 64GB it crashes iTunes when it begins the pictures. if im lucky ill get 4-5 on there before it stops responding. its not my system or anything im running win7x64 8GB DDR3 ram (Corsair XMS3) AMD FX Eight core processor.
    It is silly that iTunes cannot add pictures to apple devices. it shatters whatever incline I may have to buy apple products. knda like the Airport Extreem router my dad bought the new firmware, caused my router to not function... why release firmware that breaks a product. -_- <-- off topic but still

  • Which of the following will take more memory?

    Hi All,
    which of the following will take more memory:
    ---this-----
    long longval[] = new long[100];
    String strval[100] = new String[100];
    boolean boolval[100] = new boolean[100];
    ---or this-----
    class Data {
    long longval;
    String strval;
    boolean boolval;
    Data data = new Data[100];
    I heard objects will take up more memory than default datatypes. I'm looking for speed and memory optimization, so even the slightest of memory saving will matter.

    Hi,
    the first one needs less memory, I guess - beside the point, that the second one has 100 additional references, is the fact, that allocation of memory on modern machines is not a continous one - new data blocks are arranged so, that they start on even addresses (it's a performance issue) often clustered in multiples of 16, 32 or 64. So if you allocate a lot of single objects, the average loss of memory with each object is 8,16 or 32 Bytes (half the cluster size).
    The first one allocates 3 compact data blocks (arrays) - so 3 times the additional loss of memory takes place. The second one allocates 101 blocks (100 objects + 1 array), and so 101 times the additional loss of memory takes place.
    greetings Marsian

  • Regards, since I upgrade to IOS 7 I can not open Itune Store from my Iphone 5. which is the way to solve this problem?

    Regards, since I upgrade to IOS 7 I can not open Itune Store from my Iphone 5.
    which is the way to solve this problem?

    You've tried logging out of your account by tapping on your id in Settings > iTunes & App Store and logging back in, and/or tried a soft-reset of the phone ?

  • TA25361 I have a ton of documents and databases in AppleWorks v 6.0 that I can no longer open on my MacBook Pro.  Is there any way to recover this info?  Some documents can be opened and resaved with textedit, but not my database with all important addres

    I have a ton of documents and databases in AppleWorks v 6.0 that I can no longer open on my MacBook Pro.  Is there any way to recover this info?  Some documents can be opened and resaved with textedit, but not my database with all important addresses.

    I tried Peggy's List > Select All > Copy > Paste into an AW spreadsheet suggestion.
    In my case, pasting into the spreadsheet lost all text formatting (mostly text set to bold). The results of formulas were pasted, and checkboxes were pasted as "on" or "off". The DB did not contain any pop-up menus or radio buttons, but I expect they would transfer as a number showing the list position of the chosen item.
    Pasting the copied List view data into a Numbers table gave a result similar to that with AppleWorks. I selected B2 as the target cell (for top left cell of the pasted data) to avoid any effects of posting into a header row or column. Bold and regular text formatting looked the same as it had in AW's List view.
    Based on that, I'd slip the 'paste into an AppleWorks Spreadsheet step, and paste directly into a Numbers Table.
    Regards,
    Barry

  • HT5815 The most important piece of info about an update I need is how much data does it require. I am travelling and using prepaid data. I cannot even consider an update until I know how much data it will use. Please provide this information.

    The most important piece of info about an update I need is how much data does it require. I am travelling and using prepaid data. I cannot even consider an update until I know how much data it will use. Please provide this information.

    http://www.apple.com/feedback/macosx.html

  • TP4 / AF:REGION / What is the way to work with af:region and Backing Beans?

    Hello,
    I would be able to use the "af:region" component with a Backing Bean, but all examples I can found googling are with pageDef.
    So, I have been trying with different classes the way to solve this problem and I arrive to this:
    oracle.adf.controller.internal.binding.TaskFlowRegionModel
    Some code:
    task-flow-definition.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="taskDestinationA">
        <default-activity>destinationA</default-activity>
        <view id="destinationA">
          <page>/regionDestinationA.jsff</page>
        </view>
        <use-page-fragments/>
      </task-flow-definition>
    </adfc-config>
    adfc-config.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <managed-bean>
        <managed-bean-name>backing_regionTest</managed-bean-name>
        <managed-bean-class>backing.RegionTest</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
        <!--oracle-jdev-comment:managed-bean-jsp-link:1regionTest.jspx-->
      </managed-bean>
    </adfc-config>
    regionTest.jspx
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <af:document binding="#{backing_regionTest.document1}" id="document1">
    <af:form binding="#{backing_regionTest.form1}" id="form1">
        <af:region binding="#{backing_regionTest.region1}" id="region1"
                   value="#{backing_regionTest.regionModel}"/>
    </af:form>
    </af:document>
    </f:view>
    <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_regionTest-->
    </jsp:root>
    RegionTest.java
    import oracle.adf.controller.internal.binding.DCTaskFlowBinding;
    import oracle.adf.controller.internal.binding.TaskFlowRegionModel;
    import oracle.adf.view.rich.component.rich.RichDocument;
    import oracle.adf.view.rich.component.rich.RichForm;
    import oracle.adf.view.rich.component.rich.fragment.RichRegion;
    import oracle.adf.view.rich.model.RegionModel;
    public class RegionTest {
        private RichForm form1;
        private RichDocument document1;
        private RichRegion region1;
        private RegionModel regionModel;
        public RegionTest () {
            /*Here I try to put the same values as the constructor of TaskFlowId*/
            /*THERE IS NO DOCUMENTATION ANYWHERE :P*/
            DCTaskFlowBinding dctfb = TaskFlowRegionModel.getCurrentTaskFlowBinding("/WEB-INF/task-flow-definition.xml","taskDestinationA");
            //And here, dctfb is always NULL.
            /*I try removing the '.xml' extension of the name, but still not works*/
            //Fill the value of regionModel
            this.regionModel = new TaskFlowRegionModel(dctfb);
            /*Perhaps is better create a method to acquire the value,
              but I try in constructor first*/
        public void setForm1(RichForm form1) { this.form1 = form1; }
        public RichForm getForm1() { return form1; }
        public void setDocument1(RichDocument document1) { this.document1 = document1; }
        public RichDocument getDocument1() { return document1; }
        public void setRegion1(RichRegion region1) { this.region1 = region1; }
        public RichRegion getRegion1() { return region1; }
        public void setRegionModel(RegionModel regionModel) { this.regionModel = regionModel; }
        public RegionModel getRegionModel() { return regionModel; }
    regionDestinationA.jsff
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <af:outputText value="Hello World!"/>
    </jsp:root>So, my problem is in Backing Bean class (RegionTest.java). I don't know how I can acquire 'DCTaskFlowBinding' instance value; well, I don't know if that is the way to acquire the value of TaskFlowRegionModel, and even I don't know if this is the way to set the value of RegionModel. I don't know all of this because there isn't documentation yet :P
    Some oracle-java-guru can help me, please?
    JVN
    PD: Environment: JDev TP4.

    Hi,
    your biggest problem is the use of internal classes that probably will change without further notice and lead to a broken application then
    I don't think that the region model is supposed to work without ADF binding in this release. If you need a page region then the Trinidad region should be helpful (though it doesn't support you with navigation cases as the taskflow does)
    I'l check internally if there is an option to do what you are trying to do. However, as mentioned, if you need to use internal classes then the answer probably is no.
    Frank

  • Do JNDI look up for entity beans from a session bean  in different  jars

    I have a problem doing entity beans JNDI look up from a session bean which is deployed
    as a separate package (session.jar) from the entity beans (entity.jar)
    I believe if both session bean and entity beans are deployed into one jar and
    I specify ejb-local-reference-description for session bean, it should work. However,
    due to some reason, they have to be in separated packages but still in the same
    container. Then question how to do JNDI lookup given entity beans only have local
    interfaces?
    FYI.
    1 both session.jar and entity.jar are self-contained. i.e., no deployment error.
    each JNDI name can be viewed from JNDI tree
    2. weblogic-ejb-jar.xml for session.jar
    <weblogic-ejb-jar>
    <description><![CDATA[Generated by XDoclet]]></description>
    <weblogic-enterprise-bean>
    <ejb-name>PetstoreLogic</ejb-name>
    <stateless-session-descriptor>
    </stateless-session-descriptor>
    <reference-descriptor>
    </reference-descriptor>
    <jndi-name>PetstoreLogic</jndi-name>
    <local-jndi-name>PetstoreLogicLocal</local-jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    3. weblogic-ejb-jar.xml (code snip) for entity.jar
    <weblogic-enterprise-bean>
    <ejb-name>Account</ejb-name>
    <entity-descriptor>
    <persistence>
    <persistence-type>
    <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
    <type-version>6.0</type-version>
    <type-storage>META-INF/weblogic-cmp-rdbms-jar.xml</type-storage>
    </persistence-type>
    <persistence-use>
    <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
    <type-version>6.0</type-version>
    </persistence-use>
    </persistence>
    </entity-descriptor>
    <reference-descriptor>
    </reference-descriptor>
    <local-jndi-name>net.sourceforge.cpetstore/AccountLocalHome</local-jndi-name>
    </weblogic-enterprise-bean>
    4. if I do
    accountLocalHome = (AccountLocalHome) ic.lookup("net/sourceforge/cpetstore/AccountLocalHome");
    get error like:
    javax.naming.LinkException: . Root exception is javax.naming.NameNotFoundException:
    While trying to look up /app/ejb/net.sourceforge.cpetstore-entity.jar#Account/local-home
    in /app/ejb/cpetstore-ejb.jar#PetstoreLogic.; remaining name '/app/ejb/net/sourceforge/cpetstore-entity/jar#Account/local-home'
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:869)
         at weblogic.jndi.internal.ApplicationNamingNode.lookup(ApplicationNamingNode.java:150)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:338)

    In weblogic-ejb-jar.xml use jndi-name instead of local-jndi-name in reference-descriptor
    element.
    "Qiming He" <[email protected]> wrote:
    >
    I have a problem doing entity beans JNDI look up from a session bean
    which is deployed
    as a separate package (session.jar) from the entity beans (entity.jar)
    I believe if both session bean and entity beans are deployed into one
    jar and
    I specify ejb-local-reference-description for session bean, it should
    work. However,
    due to some reason, they have to be in separated packages but still in
    the same
    container. Then question how to do JNDI lookup given entity beans only
    have local
    interfaces?
    FYI.
    1 both session.jar and entity.jar are self-contained. i.e., no deployment
    error.
    each JNDI name can be viewed from JNDI tree
    2. weblogic-ejb-jar.xml for session.jar
    <weblogic-ejb-jar>
    <description><![CDATA[Generated by XDoclet]]></description>
    <weblogic-enterprise-bean>
    <ejb-name>PetstoreLogic</ejb-name>
    <stateless-session-descriptor>
    </stateless-session-descriptor>
    <reference-descriptor>
    </reference-descriptor>
    <jndi-name>PetstoreLogic</jndi-name>
    <local-jndi-name>PetstoreLogicLocal</local-jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    3. weblogic-ejb-jar.xml (code snip) for entity.jar
    <weblogic-enterprise-bean>
    <ejb-name>Account</ejb-name>
    <entity-descriptor>
    <persistence>
    <persistence-type>
    <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
    <type-version>6.0</type-version>
    <type-storage>META-INF/weblogic-cmp-rdbms-jar.xml</type-storage>
    </persistence-type>
    <persistence-use>
    <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
    <type-version>6.0</type-version>
    </persistence-use>
    </persistence>
    </entity-descriptor>
    <reference-descriptor>
    </reference-descriptor>
    <local-jndi-name>net.sourceforge.cpetstore/AccountLocalHome</local-jndi-name>
    </weblogic-enterprise-bean>
    4. if I do
    accountLocalHome = (AccountLocalHome) ic.lookup("net/sourceforge/cpetstore/AccountLocalHome");
    get error like:
    javax.naming.LinkException: . Root exception is javax.naming.NameNotFoundException:
    While trying to look up /app/ejb/net.sourceforge.cpetstore-entity.jar#Account/local-home
    in /app/ejb/cpetstore-ejb.jar#PetstoreLogic.; remaining name '/app/ejb/net/sourceforge/cpetstore-entity/jar#Account/local-home'
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:869)
         at weblogic.jndi.internal.ApplicationNamingNode.lookup(ApplicationNamingNode.java:150)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:338)

  • I have an android phone which is now dis-connected; I traded in for an iphone5c, which, by the way, I love.  Now I am trying to figure out how to retrieve the many photos on my silent android and move them onto my Macbook Air.  Help?

    Does anyone have advice about how to move my photos from my android phone to my Macbook Air?  The phone is no longer in service (I traded to an iphone) and I can't locate my cable--which may not have helped, anyway.  I tried inserting my micro memory card into a USB reader, and the computer will not acknowledge any photos from the card.  Thoughts?

    I think you will find the cable to be very necessary.
    For some phones - samsung for example, you may need to down load their manager program (I think samsung's is called Kies or keis)  A bit like how one uses itunes to connect to a iphone. 
    Once you have the cable and are connected, you should see a file system and look for the DCIM directory.

  • Hi i would like to changed my "Forgot your answers? " email id  in security question section. please suggest me the way. currently email are going to some email id which is not belong to us.

    in our developer.apple account email which given for security question is not belong to us . so we have forgot security question now . when we trying to recover is going to some diffrent email id which is not belong to us.

    Alternatives to Reset Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Start here to find your country, and how you can contact Apple:
             Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Support in your country and ask to speak to Account Security.
              Customer Service: Contacting Apple for support.
    How to Manage your Apple ID: Manage My Apple ID

  • I have a question regarding a small blue question mark instead of photo, I asked about this and was directed to a question about text edit, which, by the way, a neighbour helped with.

    Email photographs not seen, photograph are replaced with a small blue question mark.....what do I need to do to see the pictures ?

    Hello tomfromridgetown,
    Welcome to the Apple Support Communities! 
    I understand that sometimes when you receive an email it contains a small box with a question mark for the attachment. It sounds like what you may be seeing is a windmill.dat attachment. Please review the attached article for information on what these attachments are and how to avoid them in the future. 
    Mac OS X Mail: What is a winmail.dat attachment? - Apple Support
    Have a great day,
    Joe 

  • I requested a repair, but there was an error after clicking the button with my credit card info. I was still charged, but the form email I received the next day had incorrect info about my iPod Touch problem. How can I contact CS w/o paying $19?!

    My iPod Touch battery is not working. I requested a repair through the Apple Support. On the final page, when I clicked the button that puts the info through with your credit card number, the resulting page gave an error (I wish I'd have saved it!). Anyhow, I checked my credit card and it was charged, so I assumed the repair request went through. The next day I received a form email saying my problem was with "Sync with iTunes (Not iCloud) - Data Backup/Migration (not iCloud)" instead of the battery repair. It also says for iPod customers, to send your iPod to Apple - but I had requested the "iPod Coffin" to be mailed to me so I could send it back. Obviously there was an error between the request and what was received, so I'd like to ask Customer Service about it. However, I can't find a way to contact them. When I replied to that form email, I recieved an automated reply saying emails there were not read. Anything online asks me to pay $19 and I don't have the correct issues to request an exception. The closest store is over an hour away or I'd simply go there to ask. What can I do?! Any suggestions you have are much appreciated. Thank you!
    PS - The form email also says if I wait 10 days the repair request will be canceled. Does this mean my credit card will be refunded for the $85 battery replacement charge if it is canceled automatically?

    Thanks, but I've been on the phone with AppleCare US (where I am and live) and AppleCare UK. They continue bouncing me back and forth without helping resolve the problem.
    Perhaps someones knows how to further escalate the issue at Apple?

  • I have what I think is the original Ipad, and it will no longer send out emails.  Is it possible to update it, or am I just stuck with a $500 electronic device that will no longer work the way I need it to.  Some of the original apps will no longer work

    I have what I think is the original Ipad, and suddenly it will no longer send out emails and some of the apps that worked prior to the newer Ipads coming out will no longer work.  Can this be updated, or am I stuck with an expensive electronic device that will no longer serve my needs?

    Did you already update to the latest iOS; http://support.apple.com/kb/HT4623

  • HT1689 After entering mi card code the site still ask me info about my credit card

    After entering my card code the site still asks for credit card info

    The $1 charges will not be completed, they will fall off the account in a few days without removing funds as they are the system reaching out to verify that the bank and the account exist and that funds are available. The problem that you are having is likely the billing address. You need to look on a bank statement and enter the address exaclty as printed on the statement; all the same captal letters and puntuation.
    Bank card authorization holds -
    http://support.apple.com/kb/HT3702
    iTunes Store: My credit card's security code or zip code does not match my bank's records -
    http://support.apple.com/kb/TS1646

Maybe you are looking for

  • I can't seem to get restore from backup to work

    I lost an entire feature film project in FCPX 10.1.2. Gulp. I was trying to export to Blu Ray, then tried to just export the Blu Ray file to hard drive, i.e., I gave it 2 commands at almost the same time. My fault, but then FCPX started acting funny,

  • QM in Third Party Orders

    Gurus In one of my scenario I want to deactivate Inspection Lot generation for Third Party Procurements If I procure Material M1 with Inspection Type - 01 from Vendor V1 through normal procurement inspection lot should be created (Which is working fi

  • Universal view settings on one computer

    Hi! I'm using Adobe Acrobat Pro v. 9.3.2. I'm wondering if there is any way to apply the same view settings for all PDF-files I open? The problem is that I can open one document and read it for instance with single page continous settings. The next P

  • BSP vs IAC

    Dear Sirs, I wonder what the main things that separate these technologies are? Would it be possible to do the same things with the BSP as with the IAC. Does there exists a good comparison for when to choose one over the other? The reason I ask is bec

  • Calendar Configuration Question

    Calendar Configuration Anybody have copies of the Dad information (calapps and calpalm) for setting up Unified Messaging Calendar? Also, looking for what needs to go in the Calendar Server Setup in the http://host:port/um/admin/CalServerSetup.uix scr