Problem extending JUTableBinding

I tried to extend the JUTableBinding to expand the functionallity of the getValueAt()-method from the inner JUTableModel class. In doing so i encountered the problem that i can't extend the JUTableModel inner-class correctly cos its constructur is only package visible. But this should be possible imo as the javadoc of JUTableBinding states it. Is there another way realizing this?
Regards,
Steffen

Hello,
the sample given shows how to set up a sorting model on top of the existing Table model. In opposition to this i want to overwrite existing methods from the JUTableModel of the JUTableBinding, as there are getValueAt() and setValueAt(). Imo this has to be done via extending the JUTableBinding and its inner-class JUTableModel. This way of doing is also written down in the javadoc of the JUTableBinding:
* Applications should subclass this binding and return a subclass of
* JUTableModel that can:
* <ul>
* <li>Perform application-specific sorting of rows displayed in a JTable.</li>
* <li>Dynamically display/hide certain columns based on user preferences or application logic.</li>
This leads to my still unsolved problem, cos i can't extend the JUTableModel inner-class correctly cos its constructur is only package visible.
Is there an other way doing this, or is the visibility set wrong in JUTableModel?Javadoc is wrong as you cannot subclass an inner class.
You should be able to "override" get/setValueAt for the model behind a JTable with the earlier approach defined in the other thread regarding sorting model. Simply implement get/setValueAt in the "filtering" model and delgate the rest to the inner JUTableModel.

Similar Messages

  • Problem extending standard ViewReceiptsSearchVO view object with logic on get method

    Hi All,
    EBS 12.1.3
    Database 11.2.0.3
    I am trying to extend the 3 VOs related to ViewReceiptsSearch.  I extended a seeded ViewReceiptsSearchVO view object.  I haven't made any changes yet, no columns added, nothing altered.  When I run this substitution, the "Received" column is null.  This column in the view used for the view object only selects NULL and uses the getter method for the attribute to populate the value.  The generated extension getter calls getAttributeInternal and skips the logic in the standard getter and the substituted view object is displaying the null in the screen.  The below discussion explains the problem very well except that the original posted had the issue in 11.5.10.2.  I am having this issue with 12.1.3.
    Problem extending standard view object with logic on get method
    The 3 VOs that I am having the problem are:
    ViewReceiptsSearchVO
    ViewReceiptsSearchReqVO
    ViewReceiptsSearchSupplierVO
    What do I need to do to get the "Received" column populated?  Please let me know any additional information you want to troubleshoot the issue.
    Thanks.

    Hi,
    Can you Please Share Extended ViewReceiptsSearchVO.xml and .jpx File?
    Thanks,
    Dilip

  • Problem extending VO after upgrade to JDev RUP6

    We are having problems extending VO after upgrading from JDev CU2 to JDev CU6. The extended VORowImpl java file extends the OAViewRowImpl instead of the VO that we are extending. Other files are fine except for the VORowImpl
    Is there any JDev setting we need to set for CU6?
    Any help/insight is appreciated.
    Thanks,
    Ramesh

    Hi,
    R u mean to say ur extended VO's changed automatically,or ur having problem extending the new VO's.
    Thanks

  • Problem extending a VO with transient attributes

    I am trying to extend a VO that is based on a query with a Binding Style of Oracle Positional.
    The Attributes that are listed for the original VO are the attributes from the Query Statement plus some transient attributes.
    I extended the VO by modifying the query. Added my two columns at the END of the Select statement.
    Successfully substituted the VO but I am getting a runtime error when saving a record.
    Reviewed the extended VO and noticed that the new columns are listed as attributes AFTER the transient attributes.
    This could be the cause of the runtime error since one of the transient attributes listed after the query attributes is RowChanged.
    How can I force my new attributes to be positioned BEFORE the transient attributes?
    Is this the problem or is it something else?
    Thanks for any suggestions.

    Runtime error:
    java.lang.NullPointerException
         at oracle.apps.pos.supplier.server.ByrSuppAMImpl.validateDffVo(ByrSuppAMImpl.java:3575)
    Yes, I have checked the attributes (Updateable Always, etc.) and the attribute mappings and they all seem fine.
    My two new attributes are at the end of the original attributes. I think my new attributes should NOT be at the end of the original attributes because the original VO.xml has attributes from the query and then transient attributes that are not from the query. My extended VO now has the attributes from the original query, the transient attributes, and then my new attributes from the query.
    The first two transient attributes are RowChanged and RenderFlex and it seems like OAF is confusing it with my new attributes because:
    (1) the runtime error I get when saving (RowChanged attribute)
    (2) the Flex field icon grays out after my VO extension was deployed (RenderFlex attribute)
    To test out my theory, I would like to move my new attributes to be listed BEFORE the transient attributes.
    I tried editing the VO.xml file by moving my new attributes (query-related) to the end of the other query-related attributes and before the transient attributes (that are not query-related). When I try to view my changes inside JDeveloper, the attributes are shown in the new order (on the left) but the query mappings are still listed in the old order.
    Where can I re-order the query mappings? Tried using the up/down arrows on the right but it's grayed out.
    If I re-order the attributes in the VO.xml file and save it, is that all the change I need to do?
    Thanks.

  • Problem extending mx:WebService

    This simple program gets a syntax error. If I replace
    WebService with lots of other class names, for example mx:VBox,
    it's OK. The error just says "Parse error at
    '<mx:WebService>'." Is there some rule that you can't extend
    a web service? Thanks.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WebService
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    />

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="0" height="0">
    <mx:WebService
    id="myService"
    wsdl="
    http://www.yourweb.com/yourCFC.cfc?wsdl"
    showBusyCursor="true"
    concurrency="multiple"
    fault="this.parentDocument.handleAddFaults(event)">
    <mx:operation name="AddResult"
    result="this.parentDocument.handleAddResult(event)"
    resultFormat="object" fault="this.parentDocument.faultEvent(event)"
    >
    <mx:request>
    </mx:request>
    </mx:operation>
    <mx:operation name="SearchResults"
    result="this.parentDocument.handleDailyResults(event)"
    resultFormat="object" fault="this.parentDocument.faultEvent(event)"
    >
    <mx:request>
    </mx:request>
    </mx:operation>
    <mx:operation name="UpdateStatus"
    result="this.parentDocument.handleUpdate(event)"
    resultFormat="object" fault="this.parentDocument.faultEvent(event)"
    >
    <mx:request>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    </mx:Canvas>
    this is one way i've done it in the past...its not pretty but
    at that point i wasn't really strong enough in my flex ways. since
    then i've actually strayed away from coldfusion and gone on to
    php/httpservices for speed.
    this way you can add all the webservices to one component. i
    haven't tried using a class just for the fact that it got a little
    tricky dynamically calling webservices. but i dont see why it would
    be a problem for parse errors. is there something that you need to
    do to that isn't normally in the webservice component?

  • Problem Extending the  Dialog component from Flex

    I'm trying to extend the flex Dialog component () for usage in Xcelcius, I can package my component successfully and add it to the add-ons in Xcelsius. The problem is that if I try to drag and drop the component to the Xcelsius workspace, the component appears blank and halts the IDE a bit. Does anyone have an idea what I might be doing wrong?
    my code is as follows:
    package com.component.xcelsius.component
         import flash.text.TextFormatAlign;
         import mx.containers.TitleWindow;
         import mx.controls.Label;
         import mx.core.ScrollPolicy;
         [CxInspectableList ("title", "showTitle")]
         public class ErrorMessageHandler extends TitleWindow
              private var _titleChanged:Boolean = true;
              private var _valueChanged:Boolean = true;
              private var _titleText:String = "My Own";
              private var _showTitle:Boolean = true;
              private var _visible:Boolean = true;
              public function ErrorMessageHandler()
                   super();
              [Inspectable(defaultValue="Title", type="String")]
              public override function get title():String
                   return _titleText;
              public override function set title(value:String):void
                   if (value == null)  value = "";
                   if (_titleText != value)
                        _titleText = value;
                        _titleChanged = true;
                        invalidateProperties();
              override protected function createChildren():void
                   super.createChildren();
                   // Allow the user to make this component very small.
                   this.minWidth = 200;
                   this.minHeight= 25;
                   // turn off the scroll bars
                   this.horizontalScrollPolicy = ScrollPolicy.OFF;
                   this.verticalScrollPolicy = ScrollPolicy.OFF;
              override protected function commitProperties():void
                   super.commitProperties();
                   if (this._titleChanged)
                        this.title = _titleText;
                        this.visible = true;
                        this.showCloseButton = true;
                        invalidateDisplayList();  // invalidate in case the titles require more or less room.
                        _titleChanged = false;
                   if (this._valueChanged)
              // Override updateDisplayList() to update the component
            // based on the style setting.
              override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
                   super.updateDisplayList(unscaledWidth, unscaledHeight);

    Hi,
    First of all make sure you compile your Flex project with Flex SDK 2.0.1 Hotfix 3?
    In the Add-on Packager carefully check your classname (the full class path + class name) because Xcelsius creates an instance of that class when you drag the add-on onto the canvas, so if it doesn't create anything usually it means your classname is wrong in the packager.
    In your case:   
    com.component.xcelsius.component.ErrorMessageHandler
    If none of that works try extending from VBox as the top-level add-on class instead and see if that works (I have never tried with a TitleWindow).
    Regards
    Matt

  • Problem extending EO

    Hi,
    I'm trying to extend an EO, to add a new database column.
    I created a new BidItemPricesEOEx, extending BidItemPricesEO. I added the substitution, and deployed it.
    Since I'm new at this, I'm trying to take one step at a time. I didn't add the new database column, so my extended EO has nothing new. I just created it, added no new attributes, compiled and deployed it.
    Then I tried to check if every was still working properly. It wasn't:
    java.lang.ClassCastException: oracle.jbo.server.EntityDefImpl at oracle.apps.pon.schema.server.BidItemPricesEOImpl.getDefinitionObject(BidItemPricesEOImpl.java:1642)
    I don't understand what what I have done wrong. I have tried both generating and not generating the EOEx class. I get the same error. If I delete the substitution it starts working again, so it's clear that I'm doing something wrong.
    The only thing that I think could be causing problems is that the EO that I'm extending is itself an extension.
    It's like this:
    BidItemPricesBaseEO -> BidItemPricesEO (extending BidItemPricesBaseEO) -> VO.
    Should I extend the BidItemPricesBaseEO instead of the BidItemPricesEO?

    I have de-compiled the standard BidItemPricesEOImpl.class. This is the getDefinitionObject code:
    public static synchronized EntityDefImpl getDefinitionObject()
    if(mDefinitionObject == null)
    mDefinitionObject = (OAEntityDefImpl)EntityDefImpl.findDefObject("oracle.apps.pon.schema.server.BidItemPricesEO");
    return mDefinitionObject;
    mDefinitionObject is declared as:
    private static OAEntityDefImpl mDefinitionObject;
    I have opened a SR, because I found some references to a bug with casting EntityDefImpl into OAEntityDefImpl. It should be solved in my version, but you never know...

  • [FR/EN] Problème de 3D - Extended / 3D Problem - Extended

    [FR]
    Bonjour,
    J'ai un problème avec la 3D dans Photoshop Extended. J'avais la 3D jusqu'à récemment, le problème c'est que certaines options restaient grises. J'ai donc réinitialisé les paramètres de Photoshop, et depuis, je n'ai plus du tout la 3D. Elle s'active à la réinitialisation, mais elle disparait lors de la remise en route de Photoshop.
    Que faire?
    [EN]
    Good afternoon,
    I have a problem with the 3D Menu in Photoshop Extended. I had the 3D Menu before, but the problem is that some options were unavailable. I reset the Photoshop's parameters and then, 3D is totally unavailable. At every reset it works, but disappears at the next start.
    What I have to do?

    Then I'm not sure.
    The 3D menu is only shown if you have a serial number for extended.
    And the only way some of the 3D features can be disabled is if the video card can't support them.
    The only other thing I could guess is a third party plugin, or something wrong with the system, that is messing up menus.

  • Having Problems Extending Extreme with another Extreme as well as Express???

    Extreme in Basement is (Extreme1)
    Extreme in room is (Extreme 2)
    Hi all! I have 2 AiportExtremes and a AiportExpress. I have (Extreme1) in my basement where it is connected to a modem with a cable. I selected the option EXTEND NETWORK and under Connection Sharing it is on SHARE A PUBLIC IP ADDRESS in Aiport Utility. The internet work and everything, but it is a bit weak upstairs. (Extreme1) is version 7.6.1, but it can be updated to 5.6.1. I hit update and nothing happens.... Why???
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10035-1.jpg[/IMG]
    http://[IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20pr obs/P1010036-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10037-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10040-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10041-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10044-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10045-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10047-1.jpg[/IMG]
    I then wanted to put (Extreme2) in my room which was above the main floor to extend the connection. I connected a internet cable in (Extreme2) and the other side went into my Internet Wall Jack. After that, I connected a cable in my basement where my Internet Jack Box is to (Extreme 1.) That cable connected to the first Port of (Extreme 1) unless you count the modem cable so then it is in the 2nd Port.
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10027-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10028-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10029-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10031-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10038-1.jpg[/IMG]
    I went through the process on (Extreme2) by clicking continue and I did the name of the router, password, and I checked off remember in keychain. I then clicked I WANT AIRPORT EXTREME TO JOIN MY CURRENT NETWORK. After that, I clicked I WANT TO CONNECT AIRPORT EXTREME TO MY NETWORK USING ETHERNET TO EXTEND MY EXISTING WIRELESS NETWORK. I picked the name of (Extreme1) which is BigDogRouter and I get the final menu of what I clicked. It didn't save the settings I hit, like I hit I WANT AIRPORT EXTREME TO JOIN MY CURRENT NETWORK and it said I hit CREATE A WIRELESS NETWORK. The thing is though, under Wirless Network Name it's the network name of (Extreme1.) So this it totally mest up... I hit update and about 1 minute later, everything went through, both routers went green, Airport Utility was trying to detect the routers and then the problem occured where both of the routers dissapeared on Airport Utility. I got a messgae saying it couldn't detect the devices. After that happened, I couldn't get the routers to show back up, but on my bottom right side of the computer where my networks are shown, (Extreme1) network is there having full bars, but it won't let me connect. I had to do a full factory reset on both routers to get (Extreme1) back up and running.
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10055-1.jpg[/IMG]
    I then tried doing it manually. So i named it, password and checked off remember in key chain which is all under Base Station.
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10048-1.jpg[/IMG]
    I went to Wirless, I cliked EXTEND WIRELESS NETWORK and I had to type in the wireless network name of (Extreme1.) I checked ALLOW WIRELESS CLIENTS as well as giving the router the same security as (Extreme1) which is WPA2 PERSONAL. I also gave it the same password.
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10050-1.jpg[/IMG]
    Once that was done, I clicked Internet Connection. Connection Using had WIRELESS NETWORK selected. Under that, Connection Sharing had OFF (BRIDGE MODE) already selected as well. It wouldn't let me change Connection Useing and Connection Sharing.
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10051-1.jpg[/IMG]
    I clicked update and the same exact thing happend as if I hit continue. I am totally confused and I have been trying to fix this problem for more than 2 months. If anyone has any ideas then please post up. I had a similar problem with my Express to, but I won't get into that till later.
    Thanks!

    Fixed the pics!
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010035 -1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010036 -1.jpg
    http://http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P 1010037-1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010040 -1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010041 -1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010044 -1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010045 -1.jpg
    http://http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P 1010047-1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010027 -1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010028 -1.jpg
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10029-1.jpg[/IMG]
    [IMG]http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P10 10031-1.jpg[/IMG]
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010038 -1.jpg
    http://http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P 1010055-1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010048 -1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010050 -1.jpg
    http://i820.photobucket.com/albums/zz128/BajaManiac108/Internet%20probs/P1010051 -1.jpg
    Message was edited by: JBoy108

  • Problems extending Airport Extreme network

    I am sure this must have been covered but I can't find it here, and feel a bit foolish asking this, but I bought a new AE base station (the new flat 'n' variety).
    I set up my network fine (I have a Netgear wireless router connected to MacPro with AE card). I also have (1) an older flying saucer AE base station and (2) an Airport Express. I want to boost my signal so the whole house can get a good signal. However, when I try to add 1 or 2 I am told it can't be done because "this computer does not have an Airport Extreme card" (it does!). I have obviously done something wrong because 1 and 2 show up in the network as if they are networks (they have the default names like "Apple Network e371b8" but obviously they have no Internet access. I have tried this several ways today and failed every time. Should I give 1 and 2 the same name as the main network so only a single name shows up in the network list??
    Can someone who has successfully extended their network using the new style AE + older flying saucer AE +/- Express please tell me what settings they used?
    Cheers
    Drew

    This Digg may help you.
    See Digg
    http://www.jayhaynes.net/2007/04/donot_install.html
    April 10, 2007
    Do NOT install AirPort 802.11n Firmware 7.1
    This Firmware 7.1 update for AirPort Extreme Base Station with 802.11n should definitely NOT be installed.
    Here was my problem:
    I used AirPort Utility 5.1 to install the update. It is automatic - launch the utility and it asks if you want to install the update. I said yes because I had problems getting two AirPort n base stations networking together to extend my range (I gave up finally and just used an AirPort Express to extend the range).
    After the firmware update, some sites would not load at all (www.nytimes.com) and others took forever to load. And worse, I could not send any email from any of my IMAP accounts. It seemed to be a DNS problem.
    I have two 802.11n AirPorts, so I finally went back to the other one (7.0) and everything worked fine. The Apple tech support guy offered to replace my broken (7.1) AirPort.
    Foolishly, I wanted to make sure the problem was actually with the 7.1 update and not the AirPort itself. So I updated my second 802.11n base station with 7.1. And it casued the exact same problem (some sites not loading, no outgoing email).
    The Apple tech (at this point I was speaking with a wireless specialist) put me on hold to test a few of his AirPorts to see if he could revert back to firmware 7.0 or (ii) install a clean version of 7.1 (in case the version on my drive was corrupted).
    Unfotunately neither option was possible, which is a design flaw in AirPort Utility.
    Apple is sending me two new AirPorts in 1-2 days, which is great service, but I will not be installing firmware update 7.1 again. Fool me once...
    http://www.apple.com/support/downloads/airportextremebasestationwith80211nfirmwa re71.html

  • Having problems extending wireless network

    I'm trying to extend a wireless network using a number of bits of hardware and would like to know what is the best way of doing it. I've had a good play around with things already, and have read a few tutorials/forum posts but I don’t think I've quite got it right.
    The problem:
    The current position of the wireless modem/router is in an upstairs room at the front of the house. While this works well with internet connectivity generally (Apple TVs are connected wirelessly in two upstairs front rooms and the living room downstairs, also at front), there is poor signal at the back of the house downstairs where we have another Apple TV that keeps dropping out.
    This Apple TV is on the other side of what was the house's external brick wall (the house was extended, so this is now a kitchen/diner that is in a conservatory extension). So a floor, some distance and a brick wall separate this Apple TV.
    What I have tried:
    Initially I tried using an Airport Extreme Base Station (AEBS) to extend the BT Home Hub (BTHH) signal but had problems with this. According to BT, it should not be possible to extend the network in this way. So instead I tried this:
    In upstairs front room:
    * BTHH - transmitting 1 wireless signal (which I *could* use but …)
    * Connection from BTHH ethernet into AEBS which is then transmitted wirelessly (And *this* is the wireless network I will use for Home Sharing/Apple TVs)
    Downstairs, near back of house:
    * An old Airport Express (first gen A1088 device), which I configured to extend the existing wireless network (the one transmitted by AEBS, not BTHH). No physical connections here - it's just done wirelessly
    This *appears* to be OK, at least from from Airport Utility tells me (I used an older version - 5.6 - to configure the Airport Express, V6 to configure the AEBS). However, the proof is in the pudding, as they say - the Apple TV with the weak signal remains weak (3/5 bars according to Apple TV signal strength indicator), despite the Express being just a couple of feet away inside the house.
    So, what can/should I do?
    I think I have some more options. I have Powerline sockets that I can use, so I could connect ethernet in the upstairs room and then have the socket downstairs plug straight into the Airport Express.
    What is the best way to set it up?
    BTHH ---- ethernet ----> [Powerline] ---- ethernet ----> Airport Express
    BTHH ---- ethernet ----> AEBS ---- ethernet ----> [Powerline] ---- ethernet ----> Airport Express
    Or is there a simpler way I could do it?
    I know that I *could* do this:
    BTHH ---- ethernet ----> AEBS ---- ethernet ----> [Powerline] ---- ethernet ----> Apple TV
    And have that TV use a wired connection instead of wireless, but I'd prefer not to do that for a couple of reasons:
    1) The TV is against a wall, with limited space behind for cabling/sockets and there is no immediate power supply (so I'd have to run it all through trunking)
    2) It's better if I can extend the wireless signal generally, not just for that Apple TV, but for all devices that might need to connect at the back of the house.
    Appreciate any suggestions of what I can do here. I know this is a long note, but I wanted to be clear about what I have tried, what I've got at my disposal, etc.

    Thanks for the welcome.
    I have checked the settings and have set both up from scratch a number of times. The TC is set to allow the network to be extended and the Express is set to extend the network and to allow wireless clients.
    I have also tried a number of different positions for the Express including in the same room without improvement. The network extension does work but with a significant deterioration in network performance when connecting via the Express. I would expect some deterioration in performance for the signal to pass from Express to TC but this seems extreme. The effect is even more pronounced with iPhones (3GS, 3G and 2G). the connection is actually quicker over the mobile network even for the 2G phone.
    Cheers

  • Problem extending my AX wireless using my old AE

    I just received my new dual band AX and got it set up and the range is truly awesome. The new AX was an upgrade for my old AE. I wanted to use the old AE to extend my wireless signal and to also make a connection with living room entertainment center including my DirecTV receiver and also hooking in to my surround system in that room. However, the old AE isn't showing up in my Airport Utility screen and the light is a blinking amber light on the old AE. How do I get the Airport Utility to recognize the old AE and get this set up working?
    Any help really appreciated.

    No, I'm sorry - looks like I might have been using the wrong abbreviations. Pardon me for trying to appear more savvy than I actually am (actually I'm not a complete NOOB but this is a first for me with the wireless networking).
    I do have a new simultaneous dual-band extreme, which is located in my office at home. I have moved my old airport express into the living room (about 40-50 ft from my new unit) to stream music (my DirecTV receiver can also be hooked up to the express in order to receive certain programming on my satellite).
    That's what I WANT to happen anyway. But right now, it ain't happening.
    And by the way... the range on this new AEBSn is phenomenal. I have about 3 acres here and I grabbed my MB pro and headed off towards the back side of my property while surfing the web. I kept a full 4 bars as far as I could walk on my property (probably 200' or so) and the web never slowed down a bit. I'm loving that!

  • Problem extending transitions

    Hello -- I've seen the discussions on this, but the fact is, is that I have two 5 second clips and want to insert something as small as a 2 or 3 second dissolve, and am not able to do so, I'm only able to do the default, and I'm not able to extend it. Wheras I notice between other cuts in the project, I have less media on either side, (as little as 3 seconds) and am yet able to extend those transitions. Any help is greatly appreciated, thank you.

    Here's how you tell how much handle you have on your clip for dissolves.
    put the playhead on the clip, highlight it and hit f.
    this will load your clip into the viewer. However much time you have before your inpoint and after you outpoint is how much handle you have to work with an effect.
    If you center a two second dissolve between two clips, one second of the dissolve will use footage between your in and out points and one second of the dissolve will use the footage before or after your in or outpoints.

  • Problem extending schema

    Hi,
    we've installed NSM 3.1.1.1 on a Windows 2012 Standard with Active Directory and forest level 'Windows2012Forest'.
    The account doing the schema update is both domain and schema admin.
    NSM Admin says that the schema is not extended
    When starting the installation it says:
    - Current Forest level 5 is good
    - all three ccs- attribute/class schema extensions do not exist
    - one or more schema extensions need extending
    When start the action, the following error messages appear:
    Stack Trace: at System.DirectoryServices.ActiveDirectory,ActiveDir ectorySchemaProperty.Sae
    at ADSchemaExtension.AttributeExtension.AddToSchema()
    Exception adding attribute to schema: The object already exists

    On 7/9/2014 7:46 AM, anitone wrote:
    >
    > Hi,
    >
    > we've installed NSM 3.1.1.1 on a Windows 2012 Standard with Active
    > Directory and forest level 'Windows2012Forest'.
    > The account doing the schema update is both domain and schema admin.
    > NSM Admin says that the schema is not extended
    >
    > When starting the installation it says:
    > - Current Forest level 5 is good
    > - all three ccs- attribute/class schema extensions do not exist
    > - one or more schema extensions need extending
    >
    > When start the action, the following error messages appear:
    > Stack Trace: at
    > System.DirectoryServices.ActiveDirectory,ActiveDir ectorySchemaProperty.Sae
    > at ADSchemaExtension.AttributeExtension.AddToSchema()
    > Exception adding attribute to schema: The object already exists
    >
    >
    anitone,
    Please send an email to [email protected] -- we have an updated
    build of NSM we can send you which fixes this issue.
    -- NFMS Support Team

  • Problem extending range

    I live in new York and with cable vision boost am now able to get download speeds of over30 mb/s from time capsule as long as I am within the 2.4 ghz range - I got an older base station model mb053ll a to extend the range of the network but even though it is supposed to have a setting to repeat the the same speed it is returning only at 10 mb/s - I suspect it is set at the 5 ghz speed but cannot find any setting options -- any tips?

    Welcome to the discussion area!
    Is the older AirPort Extreme extending by using an ethernet connection or are you using wireless to connect?
    If you are using wireless to connect, the extending device will automatically extend the signal that it receives. Therefore, if the speed has fallen off by the time the signal reaches the location of the Express, that is what will be extended. In other words, the device can only extend what it receives. It does not "boost" the speed, it extends the signal.
    The device is no doubt extending the 2.4 GHz band. You can verify this by locating your Mac near the device and holding down the option key while you click on the fan shaped AirPort icon at the top of the screen. You'll see the Channel that is currently being used. If it's 1-11, then it's using the 2.4 GHz band.

Maybe you are looking for

  • Personal email AND Enterprise email on Bold 9900?

    I have my own personal blackberry Bold 9900 that I am using for work as well. I wiped it and did the Enterpise activation..great...work emails now coming in. But now I can't add my personal emails... So the question is, if I wipe it again, and add my

  • Flash Pro compile with Air 3.5 or above I get a white screen on IOS

    Compiles fine with Air 3.4. Can you help with this?

  • Bundling Best Practices

    Good morning All, I know that this has been asked for before, and my apologies for doing so. However; I would like to provide my customer something that can describe Best Practices when it comes to building, deploying bundles, and policies (which can

  • Forcing Epson driver to update to 3.5 (Universal Binary)

    I was having problems with an Epson Stylus Pro 7800. When printing from Photoshop CS3, all of the custom printer options such as "Print Settings" and "Paper Configuration" were unavailable (they were there, but crossed out with a strikethrough). If I

  • Using ecwid ecommerce code within muse -- all in one column?

    Although new to using Muse, I have good experience with DW. In its simplest form, following the link here on how to place the code into Muse:http://kb.ecwid.com/w/page/49244914/Adobe%20Muse (using "Insert Html" on muse page, this is the code) <div id