Where should the interface be? (extending the Remote interface)?

Hello,
I've created a simple rmi server on one machine, sonsisting of two files:
OkServer.java:
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface OkServer extends Remote {
public String getOk() throws RemoteException;
}OkServerImpl.java:
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface OkServer extends Remote {
public String getOk() throws RemoteException;
}and on another machine, I've created a client:
import java.rmi.RMISecurityManager;
import java.rmi.Naming;
public class OkClient {
public static void main (String args[]) throws Exception {
     if (args.length != 1)
     throw new RuntimeException("Syntax: OkClient <hostname>");
     System.setSecurityManager(new RMISecurityManager());
     OkServer OkSvr = (OkServer)Naming.lookup("rmi://" +
                              args[0] + "/OkServer");
     String when = OkSvr.getOk();
     System.out.println(when);
}Now the problem is, when I try to compile the client (only consisting the file above),
it says of course:
OkClient.java:36: cannot find symbol
symbol : class OkServer
}This is normal, right?
Then, I should copy the interface (that is also at the server) to the client machine?
So the interface file HAS TO BE on both the server and the client????

If you want to install OVM with the production option then you will basically need three distinct hosts:
a) the database host, where you install SE/EE on (XE is not for production use and not supported for production use!)
b) install OVM Manager on any computer running OEL 5 (or later)
c) install OVM Server on a bare metal host who's hardware is supported
As far as the SE/EE license goes: Oracle always allows anyone to download and install their software to try it out. If you are putting your setup into production, that is not covered and demands an support contract with Oracle. And from using Oracle for many years, there will come the day when you will need it… ;)
So long story short: grab the Oracle SE/EE installation and be familiar with it - Oracle DB that is, otherwise you'll be sitting there pulling your hair out and yell at your computer.
Or, try the not yet released 3.2.x version of OVMM with runs against MySQL - most likely the easy way to go.

Similar Messages

  • I have an airport extreme and express, if I use the extreme as a base station connected to my old router can I use the express to extend the signal while also creating a new network that only I can use?

    I have an airport extreme and express, if I use the extreme as a base station connected to my old router can I use the express to extend the signal while also creating a new network that only I can use? Essentially having two wifi connection off the same network? If so how do I set this up?

    Extending using a wireless connection always results in a performance compromise.
    If the Express is going to extend using a wireless connection, then the Express will need to be located about half way between the AirPort Extreme and the general area where you need more wireless coverage. The more that you have line-of-sight between the Extreme and Express, the better the network will operate.
    Remember......the Express can only "extend" the quality and signal speed that it receives, so it needs to be located where it can get a very good signal from the Extreme. Although Apple cleverly uses the term "extend", a more accurate term for the Express would be "repeater".
    If the Express will extend by connecting to the Extreme using a permanent, wired Ethernet cable connection......highly recommended for best performance.....then the Express can be located exactly where you need more wireless coverage. There is no signal loss at all through the Ethernet cable, so the Express gets a full speed signal no matter where it might be located.
    Post back to let us know which way to you want to go.

  • Everytime I get thru to the point of extending the current wireless system I end up with an error and asks to retry. I have tried everything. Light keeps flashing amber. Any ideas out there

    Installing Airport extreme to extend existing wireless system. I have airport Utility current. after getting to the point of extending the system it tells me there was an error and please retry. I am using my IPad and I phone with the utility and both don't work. I have internet via hard wire thru the AEBS and it does see the  wireless signal but the big I shows up and the light still flashes amber. ( I am using an HP lap top and linksys router is main wireless station). Working on this most of the day, any help?

    Please describe the changes you made in detail.. it is terribly hard to fix network issues remotely with vague general comments.
    Was the TC, main router, bridged, connected via ethernet or joined to the wireless network???
    What is the main router now..?? What is the wireless?
    Do you have a direct connection to the TC by ethernet.. ?? If not you need one for setup.. plug ethernet to a laptop is easiest or remove the TC from the network and just plug it into the computer.. press and hold the reset for 10sec to get access.
    Lion is hopeless network wise.. and you need to download the proper airport utility 5.6 before you attempt this.. so connect up by ethernet to the main router.. whatever that is and download the stuff you need before you begin.
    http://support.apple.com/kb/DL1482

  • Where should DNG profile editor install the .dcp file?

    Just made my first attempt to create a custom camera profile using the X-Rite color checker passport and the DNG Profile Editor.
    Thanks to the excellent tutorial, the process went smoothly.  Next I took the final step of exporting the profile (.dcp) file, expecting to find the new profile when I opened an image in ACR.  Unfortunately the new profile was not listed in the Camera Profile dropdown menu.
    After much searching I discovered that the profile was written to the folder containing the .dng images used to construct the profile.  Obviously not where it belongs in order for ACR to find it.   I assumed that "Export Profile" would automatically write the .dcp file to the proper location.
    Where should the .dcp files be installed for Win7x64 running ACR 8.2.?
    Is there a way to establish the proper location as the default in the Profile Editor?
    Thanks for your help.

    Custom-created .DCP profile files go into the following location under your Windows Users folder:
    C:\Users\YourUserName\AppData\Roaming\Adobe\CameraRaw\CameraProfiles
    The AppData folder is a hidden-system folder so you may need to turn on the viewing of those type of folders in your Explorer folder view options or just type \AppData into the folder address area and hit Enter once you get to your username folder.

  • Where should I put my extended unit test assemblies for Visual Studio 2013?

    Hi, I have a question about M/S Unit test extension.
    1. My purpose
    I'm trying to extend Visual Studio Unit Test.
    The points where I extends unit test is to output detail logs.
    My development environment is as follows.
    OS: Windows 8.1Pro (64bit version)
    IDE: Microsoft Visual Studio Professional 2013
      (Version 12.0.30723.00 Update 3)
    2. Things which I'd like to know
    To enable my test extension, it is required to put my test extension assemblies into designated sub folder under Visual Studio's installed folder.
    The source of this information is MS developers blog below.
    (http://blogs.msdn.com/b/vstsqualitytools/archive/2009/09/04/extending-the-visual-studio-unit-test-type-part-1.aspx)
    Q1. It's required to put the assemblies bellow.
    C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies
    Howerver, the guidance in the blog is for Visual Studio 2010.
    In Visual Studio2013, above "PrivateAssemblies" could not be found under "\Microsoft Visual Studio 12.0\Common7\IDE" folder.
    Where should I put my assemblies for my 2013. Is there any substitution for "\PrivateAssembly" folder?
    Q2. Another requirement is to set Assembly information entry into the registry below.
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\10.0\EnterpriseTools\QualityTools\TestTypes\{13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b}\TestTypeExtensions
    For Visual Studio 2013, I could find almost the same node hierarchy, but
    could not find the last "TestTypeExtention" node. Instead,
    I could find "Extensions" node.
    Should I write registry entry here? Or, should I make a new "TestTypeExtension" node and write the entry there?
    Q3.Last question is more basic question.
    Is there any way to kick extended test program in Visual Studio 2013's Test Explore
    without registering my assemblies in the way recommended above.
    I think it's much tender for developer's in debugging phase. For example,
    it is very much helpful, if I could kick a unit test which uses my extended test class in the unit test extension solution.
    That's all. Any information concerning this topics will be appreciated.

    Hi TrailRunner-MF,
    One possible reason is that you didn't view the correct folder, for example, in my windows 8.1 64 bit, it is in the path: "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE", not the "C:\Program Files\Microsoft Visual Studio
    12.0\Common7\IDE " folder.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Whats the difference between extending the xls mapper functions and xpath

    What is the whole deal about extending the xlst mapper functions or the xpath functions?
    any insight about the diferences would be greatly appreciated. I mena shouldnt the functions for xlst be the sames that are available for xpath?
    regards,
    gabs

    Unfortunately, XPath and XSL are two different standards, and the implementation of functions at the Java level uses a different interface. So a custom XPath function is not automatically reusable in XSL and vice versa.
    The core java code might be the same, but you need to code different "wrappers" for XPath and XSL.
    Marc

  • In att yahoo mail my left column with the inbox ,etc extends the width of page and I can't bring it back to the left.

    in the new version of att yahoo mail that I have been using for weeks for some reason the left column which shows inbox etc extends the width of a page and I am not able to see the emails. I cannot pull the column back to the left. If I switch to ATT yahoo classic it is fine, but not in the newer ATT yahoo mail.

    [[Font size and zoom - increase the size of web pages|try Font size and zoom - increase the size of web pages]]

  • Where should I go to replace the connector port on my 6th gen ipod classic

    My head unit on car Pioneer stereo w/usb port intermittently loses my ipod and  have to cycle through devices to see it again. sometimes i have to reconnect to usb cord for it to work. I suspect the connector port is damaged. I used to have a cord with push buttons to retain the connection and it was pulled free several times without releasing the retainers. Doh. Where can I repair this reasonably and if I do should I throw in a new battery? It's 3/4 years old.

    Google iPod Repair service, hopefully there is one in your Area.

  • Confused about extending the Sprite class

    Howdy --
    I'm learning object oriented programming with ActionScript and am confused about the Sprite class and OO in general.
    My understanding is that the Sprite class allows you to group a set of objects together so that you can manipulate all of the objects simultaneously.
    I've been exploring the Open Flash Chart code and notice that the main class extends the Sprite class:
    public class Base extends Sprite {
    What does this enable you to do?
    Also, on a related note, how do I draw, say, a line once I've extended it?
    Without extending Sprite I could write:
    var graphContainer:Sprite = new Sprite();
    var newLine:Graphics = graphContainer.graphics;
    And it would work fine. Once I extend the Sprite class, I'm lost. How do I modify that code so that it still draws a line? I tried:
    var newLine:Graphics = this.graphics;
    My understanding is that since I'm extending the Sprite class, I should still be able to call its graphics method (or property? I have no idea). But, it yells at me, saying "1046: Type was not found or was not a compile-time constant: Graphics.

    Thanks -- that helped get rid of the error, I really appreciate it.
    Alas, I am still confused about the extended Sprite class.
    Here's my code so far. I want to draw an x-axis:
    package charts {
        import flash.display.Sprite;
        import flash.display.Graphics;
        public class Chart extends Sprite {
            // Attributes
            public var chartName:String;
            // Constructor
            public function Chart(width:Number, height:Number) {
                this.width = width;
                this.height = height;
            // Methods
            public function render() {
                drawAxis();
            public function drawAxis() {
                var newLine:Graphics = this.graphics;
                newLine.lineStyle(1, 0x000000);
                newLine.moveTo(0, 100);
                newLine.lineTo(100, 100);
    I instantiate Chart by saying var myChart:Chart = new Chart(); then I say myChart.render(); hoping that it will draw the axis, but nothing happens.
    I know I need the addChild method somewhere in here but I can't figure out where or what the parameter is, which goes back to my confusion regarding the extended Sprite class.
    I'll get this eventually =)

  • Extending the Resource XML Schema XDBResource.xsd

    Hi,
    Is anybody could share an expirience about extending
    the Resource XML Schema XDBResource.xsd ?
    I want to use XML DB as document repository.
    I want to use some application parameters (for
    example document varchar id and so on) as resource
    properties. I read from Oracle documentation, that
    one way is to extend the Resource XML Schema XDBResource.xsd.
    Users will put documents using WebDAV, so new schema
    should be used default instead of XDBResource.xsd.
    Is it possible ?
    Thanks in advance
    Viacheslav

    Thos is an error in the documentation. Extending the Resource Schema is not currently supported. We are considering this for a future release of the product. XML DB does allow small amounts of user defined meta data to be added to a Resource.....
    For Instance Given the following package
    create or replace package xdb_namespaces
    as
    RESOURCE_NAMESPACE constant VARCHAR2(128) := 'http://xmlns.oracle.com/xdb/XDBResource.xsd';
    METADATA_NAMESPACE constant VARCHAR2(128) := 'http://xmlns.oracle.com/xdb/userMetaData';
    RESOURCE_PREFIX_R constant VARCHAR2(128) := 'xmlns:r="' || RESOURCE_NAMESPACE || '"';
    METADATA_PREFIX_M constant VARCHAR2(128) := 'xmlns:m="' || METADATA_NAMESPACE || '"';
    end;
    select * from all_errors where owner = 'XDB'
    create or replace public synonym XDB_NAMESPACES for XDB_NAMESPACES
    grant execute on XDB_NAMESPACES to public
    The following procedure can add metadata to the ANY defined by the current resource Schema
    procedure addUserMetaDataNode(OID varchar2)
    as
    metadata_xml XMLTYPE := XMLTYPE('<m:UserMetaData ' || XDB_NAMESPACES.METADATA_PREFIX_M || '/>');
    begin
    update /*+ NO_TRIGGER */ XDB.XDB$RESOURCE r
    set r.xmldata.RESEXTRA = metadata_xml.getClobVal()
    where sys_nc_oid$ = hextoraw(OID)
    and existsNode
    object_value,
    '/r:Resource/r:Contents',
    XDB_NAMESPACES.RESOURCE_PREFIX_R
    ) = 1
    and existsNode
    object_value,
    '/r:Resource/m:UserMetaData',
    XDB_NAMESPACES.RESOURCE_PREFIX_R || ' ' || XDB_NAMESPACES.METADATA_PREFIX_M
    ) = 0;
    end;
    Note that this is not a SUPPORTED method of doing this.. Once the UserMetaDataNode has been added additional metadata can be added using updateXML with an XPATH that targets the UserMetaData node.
    A Future release of XML DB will provide a facitlity to attach a row in a schema based XML table, containing user defined meta data to a resoure, in the same way that the defaultTable mechanisim allows the content of a resource to be stored in an XMLType table.

  • Do I need a cable connecting my Time Capsule to Airport Express if I want to use the AE to extend my wifi network range?

    I'm a bit confused by conflicting advice given by my local Apple shop and my internet provider. 
    My cable modem is plugged into a Time Capsule which I use to access the net wirelessly almost all over the house.  The one spot the wireless doesn't quite reach is (of course) where I now need my office and iMac to be.
    I thought I could just plug in an Airport Express somewhere in the middle  to extend the network's range but the guy at my local Apple shop said the Airport Express would need to be connected not just to power but to the Time Capsule, via a cable.  That's fiddly and would involve cables running under the floor or along walls and ceilings, not something I can or really want to do.  It's not really practical to try and move the cable connection point either.
    My internet provider suggested a netgear wireless extender and said that would only need to be plugged into power.  The reviews of the netgear product I found comparing it to Airport Express suggest that the Express doesn't need to be connected to anything other than power either to extend a network range (which was what I originally thought).
    So I'm wondering which advice is correct? I've also read that the netgear product isn't all that easy to set up so I'd rather stick with.   Apple if it will do what I want.
    Thanks for any help out there

    I thought I could just plug in an Airport Express somewhere in the middle  to extend the network's range but the guy at my local Apple shop said the Airport Express would need to be connected not just to power but to the Time Capsule, via a cable.
    I'm sure that the guy at the Apple shop means well, but he is not correct. 
    While it would be preferable to connect the Time Capsule and AirPort Express using a wired Ethernet connection, the Express can connect wirelessly and extend the wireless signal the same way....IF...it is located where it can receive a good wireless signal.

  • Extending the timeline in Photoshop CS6

    In CS6, I cannot find the option to extend the duration of my photoshop document.  I am using Photoshop to make a short hand-drawn animated film.  Currently, the document is 300 frames long, but I would like to extend that to 400 frames.  Can anyone help, please? (I'm working in timeline mode, not frame mode.)
    I could easily change the duration of a document in CS5 by clicking on the little drop-down menu in the top right corner of the animation panel, then going to "Document Settings" where I could change the duration and the frame rate.  When I click the drop-down in CS6, I find the frame rate option, but no duration.
    It seems like this is a simple necessary option, and I hope I'm just missing something very obvious here.
    Thank you for any help you can provide (including alternative workflows.)
    -Justin

    I agree.
    But I dont think in general there is enough help or control in using timeline animation
    For example on my site I run a monthly animation comp. And alot of my members are new to animating (Im by no means an expert lol) But as its Xmas its an ideal theme for animating.
    We have a size limit for each animation of 5MB which as you all know isnt a big size animating.
    So they set their timelines to say 3 seconds and do each of their relevent timelines. Some upto 6/7/8 seperate ones which for beginners is pretty good. But there end results are normally over size 1st time checking.
    The problems occur when they want to alter the lenths of the timeline. Its easy enough to shorten the lenths of the whole timeline lenth thats not a problem BUT its when we try to alter the duration and speed of EACH timeline is where the problem lies.
    We cant move the keyframes in a timeline all together so we have to drag each keyframe to another position and of course it mucks up the animation as they dont end up in the right places thus screwing up the sequenc
    All we need is some sort of control to alter each timelines length and speed or to select all the keyframes on an individual timeline so we can move them all together. Because if we change the length of f the timeline now the keyframes stay where they are and dont move to compensate for the alteration..
    The only other way is to remake it which is a bugga lol
    Message was edited by: Unionjack
    It doesnt seem that anyones interested in helping or commenting on this problem. Yet Im sure they appreciate us paying amazing money for the various applications.

  • Extending the oracle java classes for PJCs - Help!

    In developer6 (forms) - I am trying to create my own version of
    certain forms components, without much look.
    I have created an item in forms, ie. Checkbox, in the
    'Implementation Class' field I called my java class.
    My code 'extends VCheckbox' and I have created my own paint()
    mthoed.
    Whilst it does call and run my code there are several problems.
    Mainly being that I cannot change the size the component - I have
    seen the demo source code - and the examples of what I am trying
    to do are less than simple (read: less than useless).
    I dont not want a java bean. The forms help says I should be able
    to extend the above class okay - but doesnt say what limitations
    there are or what functionality there is in the oracle.forms.ui
    classes.
    Has anyone else actually achieved anything other than JavaBean
    components?
    null

    : Have you seen the RolloverButton example ?
    : It is under Forms documentation in TechNet
    : and is quite advanced.
    No, have search Dev6 manuals, can not find this by searching
    Technet either - can you specify (provide URL)?
    I am trying to re-implement the VCheckbox using Smoking/No
    Smoking images. I can create the images, but the toggling action
    does not work when the component size is greater than the
    original subclassed component.
    None of the examples show creating components of sizes that
    differ from the subclass.
    Surely I only need to override paint() method?
    Code fragment:
    import ....
    public class ImageToggler extends VCheckbox {
    // ... does initialisation of images ....
    // ... Images are 32x32 ...
    public void paint( Graphics g ) {
    if ( getState() == true ) {
    g.drawImage( ysSmoke.getImage(), 0, 0,
    ysSmoke.getIconWidth(),
    ysSmoke.getIconHeight(), this );
    } else {
    g.drawImage( noSmoke.getImage(), 0, 0,
    noSmoke.getIconWidth(),
    noSmoke.getIconHeight(), this );
    null

  • Help with extending the range of Motorola cable modem

    After struggling with AT&T DSL (with slow speed and intermittent drops), I switched to Time Warner Cable, and now sport blazing-fast connection via Ethernet cable into my 27" iMac. They gave me a Motorola Surfboard sbg6850 wi-fi modem, but I'm finding the range of the wi-fi to be totally inadequate... I get drops and unreliable connections only 20 feet away with iPads and Macbooks. I want a pleasing dome of wi-fi all over my house!
    Through other discussions on this board, I see that Airport Express is NOT compatible with the Surfboard, a fact which surprised and disappointed me. What are my options for extending the wi-fi range?
    —Could I buy a non-Apple product (router) to extend the wireless range? Can it be managed from a Mac?
    —Could I connect an Airport Extreme to the Surfboard via Ethernet cable, and use the Airport Extreme as the router to extend the network via Airport Express?
    —Could I use the Airport card in the ethernet-connected computer (in this case, a 27" iMac) to create a network that COULD be extended via Airport Express? (I'm using it now to share the Internet, rather than connecting directly to the Surfboard, but when the iMac sleeps, the network is unavailable.)
    There's got to be a way...

    Since you went with your option 2, you basically have the fundamentals for a roaming network as both routers are interconnected by Ethernet. This also means that the 802.11n AirPort Extreme Base Station (AEBSn) should be reconfigured as a bridge, i.e., Connection Sharing = Off (Bridge Mode) in AirPort Utility (v5.x). This would allow the TW combination cable modem / wireless router (or gateway) to provide both NAT & DHCP services for the entire network.
    Now with the AEBSn configured as a bridge, you can add the 802.11n AirPort Express Base Stations (AXn), via a wireless connection to the AEBSn, in an extended network configuration. Note: The extended network works in a "wheel" like fashion with the extended base station at the hub of the wheel. Each extending base station would be spokes on that same wheel ... so how successful you will be extending the wireless network will be based on proper placement of each of the extending stations for full coverage. Please take a look at the following AirPort User Tip for proper placement details.
    The other thing to take into account is the potential Wi-Fi interference between the TW wireless gateway and the AEBSn. Either disable the gateway's wireless radio, or be sure to allow for sufficient radio channel separation between radios on the same band.

  • Can I extend the range of my Airport Extreme with 2 Airport Express units?

    I am using Airport Extreme as my basic router. I have connected 2 airport express units (all new since 12/09) to extend the network about 300 ft into another building to a PC. I am receiving about 65% signal and only one of the express units is extending the signal. Previously I was able to extend the network with a Netgear router and one D-Link extender and achieved 85%.
    I would like to use the 2nd express to extend the signal of the 1st express which is extending the Extreme.
    If this is not possible, can I use something other than an express with the extreme to extend the wireless network?

    Here are the basic steps in setting up a static WDS. Please compare them to what you have done to see if there are any differences. Hopefully, this will give you a clue on what to try.
    AEBSn - WDS Setup
    (Note: To facilitate the WDS set up, place the base stations within near proximity of each other during the set up phase, and then relocate them to their desired locations when complete. Also, jot down the AirPort IDs (MAC addresses) for each of the base stations to be used in the WDS. The AirPort ID and is printed on the label on the bottom/side of the base station.)
    Main Base Station Setup
    o Click the AirPort status menu in the menu bar and choose the wireless network created by the base station you want to set up as the main base station.
    o Open AirPort Utility (located in the Utilities folder in the Applications folder on a Macintosh computer, or in Start > All Programs > AirPort on a computer using Windows).
    o Select the main base station, and choose Manual Setup from the Base
    Station menu, or double-click the base station to open the configuration in a separate window.
    o Enter the base station password if necessary. If the base station is using the
    default password of public, you will not be prompted for a password.
    o Click Wireless in the toolbar, and then choose “Participate in a WDS network” from the Wireless Mode pop-up menu.
    o Click WDS and then choose “WDS main” from the WDS Mode pop-up menu.
    o Select the “Allow wireless clients” checkbox if you want client computer to connect to this base station.
    o Click the Add "+" button and enter the AirPort ID of the base station you want to connect to this base station.
    o Click Update to send the new settings to the base stations in the WDS.
    Remote Base Station Setup
    o Click the AirPort status menu in the menu bar and choose the wireless network created by the base station you want to set up as a remote base station.
    o Open AirPort Utility (in the Utilities folder in the Applications folder on a Macintosh computer, or in Start > All Programs > AirPort on a computer using Windows).
    o Select the remote base station, and choose Manual Setup from the Base Station menu.
    o Enter the base station password, if necessary. If the base station is using the default password of public, you will not be prompted for a password.
    o Enter the same network password as the main base station, if necessary.
    o Click AirPort in the toolbar and click Wireless. Choose “Participate in a WDS network” from the Wireless Mode pop-up menu, and choose the same channel as the main base station from the Channel pop-up menu.
    o Click WDS and choose “WDS remote” from the pop-up menu.
    o Enter the AirPort ID of the main base station in the WDS Main field.
    o Click Update to transfer the settings to the base station.
    Relay Base Station Setup
    o Click the AirPort status menu in the menu bar to join the wireless network created by the base station you want to set up as the relay base station.
    o Open AirPort Utility (in the Utilities folder in the Applications folder on a Macintosh computer, or in Start > All Programs > AirPort on a computer using Windows).
    o Select the relay base station, and choose Manual Setup from the Base Station menu.
    o If the base station is using the default password of public, you will not be prompted for a password.
    o Enter the same network password as the main base station, if necessary.
    o Click AirPort in the toolbar and click Wireless. Choose “Participate in a WDS network” from the Wireless Mode pop-up menu, and choose the same channel as the main base station from the Channel pop-up menu.
    o Click WDS and choose “WDS relay” from the WDS Mode pop-up menu.
    o Enter the AirPort ID of the main base station in the Main AirPort ID field.
    o Click the Add "+" button and enter the AirPort ID of the remote base station this relay base station will connect to.
    o Click Update to transfer the new WDS settings to the relay and remote base stations.
    (ref: Pages 42-46 of "Designing AirPort Networks.)

  • HT4259 Extending the range

    I have an old Airport Express (dome shaped) I want to use to extend the range of my Time Capsule. I'm using AirPort Utility v 6.3.2 which seems not to match the instructions on this page. Is there an updated set of instructions? I can't see the Express in my utillity.
    Incidentally under the options for posting this message I can't select OSX 10.9.1 which is my current system.

    Unfortunately, the older version of the AirPort Extreme that you have does not have a funtion or setting to "extend a wireless network", so it cannot be used to wirelessly extend the signal from the Time Capsule.....even if you use a compatible version of AirPort Utility with the older AirPort.
    It would be possible to have the older AirPort "extend" the network provided by the Time Capsule if you can establish a permanent Ethernet cable connection between the two devices.
    Once this has been done, you will need to use a 5.x version of AirPort Utility to set up and configure the older AirPort. That would mean using a Mac running Leopard, Snow Leopard, or a PC.
    If you edit your profile, the option to have OS X (10.9.1) display on your future posts does appear.

Maybe you are looking for

  • Stored Procedure Call Syntax in JDBC 3.0

    Does anybody know if the JDBC 3.0 spec allows the following syntax of a CALL statement? I am using the IBM DB2 JDBC Univeral Driver Architecture Version: 2.5.36 driver, which is suppose to be JDBC 3.0 compliant, and am getting an exception. However,

  • Can't find my Wi-Fi Router

    I've got an iMac with OS X 10.9.2 installed. After updating to Mavericks a few days back I can't seem to wirelessly locate my personal wi-fi router in my flat. It connected once after the update but then after I shut my machine down and restarted it

  • Sql_id of active session not in v$sql

    Hi all, How do you explain this? There is one active session in v$session with a sql_id. But when I query v$sql using that sql_id I got nothing back. Is this because the sql_id was pushed out of shared memory or some other reason? The connection is s

  • Error:-They have not been assigned  to VMS role

    Hi. When i enter t Code VELO it shows me error "They have not been assigned  to VMS role" this error was not there when there was no configuration. Reg, Amol

  • Weird Static Block Behaviour

    Hi There, I have a class to provide constants that is initialised using a static block... public final class ConstantNames {     public static final String NAME1= "Name 1",             NAME2= "Name 2",             NAME3= "Name 3",             NAME4=