PVLAN Config with UCS and 1000v Question ??

We are attempting to setup a multi-tenant environment where the customer would like each tenant to have a single subnet which is segmented with private vlans. The design calls for three (3) UCS chassis'. Two (2) of the chassis' are fully populated with half-width blades and the third chassis has two half-width blades. The two chassis' that are fully populated will all be ESX hosts with Palo adapters and will operate with 1000v.
  As their current VLAN plan is to have approximately 10 private vlans per tenant/subnet, i'm concerned this design will not scale well at all within a UCS enviroment due to the limitations related to the total number of vnics/vhbas per chassis. I viewed a post where it was indicated that we could bypass the vnic limitation by simply trunking down all VLAN's to the VEM and configure all private-vlans on the 1000v only. This would allegedly alleviate the vnic limitation in a larger multi-tenant environment. Is this a valid and supported design/configuration and/or does this actually work? Or do we instead actually need to create a vnic for every private vlan we want to present to each ESX host as recommended/required in the config guides?

Hey Joey,
  Thanks for the response. I've added this same post to the TAC case but i'll update this discussion with the same for anyone else who may be interested.
  Our customer is still debating their requirement for PVLAN use within this Pod. However, if they choose to move forward, my primary concern is mostly with the UCS configuration related to PVLANs, how the UCS PVLAN configuration differs (if at all) with the integration of the 1000v and if this multitenant setup will cause the Fabric Interconnects to exceed their max VIF count. Related to the UCS configuration, it's my understanding that for every isolated private VLAN we would like to present to a blade, we need to create a separate vNIC in UCS. This customer is attempting to construct an environment based on the FlexPod model where multiple tenants would be present in the environment. Their idea, was to create a single subnet for each tenant and then isolate tier/purpose traffic via layer-2 PVLANs within each tenant subnet. This is where the need for the PVLANs come in. Simply a customer request in their design.
  So how this relates to my primary questions; if for every tenant we have to add 5+ vNICs as they are introduced into the Pod, my understanding is that this will easily cause us to have more than 120 VIFs per chassis in no time. It's my understanding that we have a total of (15*[number of I/O Module uplinks] - 2) VIFs available in total. (I'm assuming this is 118 total VIFs for two fully populated 2104's per chassis???) Currently, the design calls for a combination of ten (12) VIFs (10 vNICs and 2 vHBAs) as a standard on each of the eight blades in each chassis. On top of this would be when we begin adding tenant specific vNIC's for each tenant's PVLANs (If this is the proper/required config). However, I have later read that if we integrate the 1000v's into the environment, the necessity to create a new vNIC in UCS for every isolated PVLAN is no longer in play as all that is required is to trunk down all "parent" vlans to the VEMs and there, at the 1000v level only, we can perform the PVLAN config. It has been recommended to configure this environment similar to the strategy where the upstream switch does not understand/perform PVLANs. Is this correct or would we still need to add the vNIC's to the service profiles in UCS even when integrating the Nexus 1000v's?
  I have yet to really find a document that discusses the use of PVLANs within the UCS environment when implementing Nexus 1000v which would tie all of these questions together.
Thanks,
Eric

Similar Messages

  • Backing up with SuperDuper and CCC question

    I just got started with SD and CCC and have tried to use both of them to back up over the network but haven't had any luck.
    What I'm trying to do:
    -- Open SuperDuper or CCC (not at the same time) on Mac1 then log-on to Mac2 and tell SuperDuper or CCC to back up from Mac2 onto Ext.HD1?
    Does this technique work, or do I have to open the SD/CCC on the Mac whose drive I want to backup and copy to the external HD from there?
    Also, when SuperDuper requires a DiskImage to backup, do I have to create the disk image in DiskUtility first, or does SD do that in preparation to the backup process?
    Thanks for helping me get clear on this. First time using backup software.

    The instructions on how to make clones are fairly clear; and if you
    stick to one or the other, doing so should be fairly easy. I use CCC
    most exclusively, and the Bombich web site has helpful instruction
    on how to do most things in the header; menus beneath the icons
    are generally adequate.
    Over a network, the issue may be in how the drives and computers
    are seen; since you can assign an ethernet address to most any
    thing networked (especially printers, and computers) so maybe this
    could be something to check into; or avoid if that complicates clones.
    You can use the native Mac OS X Disk Utility to make back ups and
    disk images; and you can restore from a disk image created by D.U.
    So, you have three ways to make backups of the system or move it.
    I use Carbon Copy Cloner, since it was an early favorite and it works.
    You have to make a clone from the one you want to copy/clone; so
    you will have the data saved on the other drive. The question is not
    one that I'd consider; but I learned how to make clones as a part of
    a hardware failure troubleshooting interval, which took me a month
    after the authorized Apple tech could not find problems with my iMac
    yet I could repeatedly find and reproduce the fault; so I did all I could
    and then discussed the matter direct with AppleCare; for a real repair.
    So, now I clone both computers full drive contents to an external FW;
    and eventually wipe both computer's drives, after saving a new clone.
    And while I have them wiped; I have Disk Utility zero-overwrite them.
    That way, there is no fragmentation and I reclone the content back.
    Maybe you could explain what steps you are having issue with in the
    clone or backup process, and to simplify this, use one of the methods.
    Good luck & happy computing!

  • Flex AdvancedDataGrid - ColumnOrder With Formatter and ItemRenderer Question For Experts

    I have a advanceddatagrid that has around 15 columns. Some are string,
    some are numbers. I have shown 4 columns below.
    The number columns have formatting done for zero precision and 2
    digits precision.  The itemRenderer is just to show Blue Color if the
    number is +ve and Red Color if the number is -ve.
    It looks something like below
    <mx:columns>
    <mx:AdvancedDataGridColumn dataField="Name" textAlign"left"/>
    <mx:AdvancedDataGridColumn dataField="Time" textAlign="right"/>
    <mx:AdvancedDataGridColumn dataField="Score" textAlign="right"  formatter="{zeroPrecisionFormatter}" sortable="true"   itemRenderer="ColorRenderer" />
    <mx:AdvancedDataGridColumn dataField="Average" textAlign="right" headerWordWrap="true" formatter="{twoPrecisionFormatter}" itemRenderer="ColorRenderer" />
    I am trying to save the users setting of column order  when he closes
    the application and reload with the same order when the user opens the
    applications. I am using SharedObjects and below is the code.
    for(var i:int=0; i< adgrid.columns.length;i++){
         var columnObject:Object = new Object();
         columnObject.columnDataField = adgrid.columns[i].dataField as String;
         columnObject.columnHeader =adgrid.columns[i].headerText as String;
         columnObject.width = adgrid.columns[i].width;
         columnArray.push(columnObject);
    and then I save the columnArray to SharedObject.
    I retrive them using the below code
    for(var i:int=0;i<columnArray.length;i++){ 
        adgrid.columns[i].dataField =columnArray[i].columnDataField;
        adgrid.columns[i].headerText =columnArray[i].columnHeader;
        adgrid.columns[i].width = columnArray[i].width;
    How can I save and reload the Formatter and ItemRenderer data .
    I am having trouble saving the formatter and itemrenderer and
    reloading it again.
    I would really appreciate if you can shown the code.
    How can I reshuffle the columns but can preserve all the properties of it to though  sharedobject and recover it again

    I would bypass the DataGrid all together.  Using the DataGrid , you have to mess with itemrenderers and indexes ... not
    very fun when one can avoid it.  Instead , I would do my calculations off of the dataprovider.  Then it becomes an elementary exercise of a for-loop and [Bindable] values.

  • Folder with face and flashing question mark, what to do when this happens?

    I'm sure this has been asked a million times, please help, my brother has a ibook G4, OSX 10.3.9, about 3 years old and now when he turns on the ibook it has a folder with a face in it and a flashing question mark. Do you just leave it and it will sort it self out or is there something to do to make it go away? Any help will be appreciated. Thanks

    I have replaced a 40 G harddrive with a seagate 160 G drive. When I try to start it it only comes up with the flashing question mark. I have tried to boot off the install CD, but it only flashes the question mark. This is my daughters computer and she really needs it to work for school.
    I have tried to "restore" using my new Mac Book and the old 40 G drive in an external USB case. But still is no good. I have used DiskWarrior and the drive will boot.
    This is an ibook G4 running 10.4.2

  • Working with Pages and Word-questions!

    NOTE: Sorry for the similarity of this to my post a few minutes ago titled "Which do I use, Pages or Word)? I learned some things through experimentation and have created subtler and more challenging questions for you.
    Help me out here (please). I am now working with Pages, sharing documents with dozens of behind the times colleagues who are using some old program called "Word." It's my job to work with these people and I'm trying to make it as easy for everyone as possible.
    Do I have this right? When I create a document (or open an old Word document into pages), in order to be able to share it with people, I save it, and check the box to save a copy in Word format. Then when I send my documents, it works like a charm. Yes?
    If I start by opening a Word document, and every time I save I check "save copy to Word," I end up with only one document, no version in Pages. If I start with a Pages document, or save without checking the box, I end up with two separate versions of the document (like when I create a pdf)? It appears that if I I want to keep working in the Word format, every time I save it will give me a dialog box and make me check the box (and possibly select my location). This is cumbersome since I am now in the habit of saving often (you learn that when you work with Word for the Mac for any period of time--bomb, bomb, bomb). So, an I correct in assuming that if I want to save regularly, I really have to work in Pages, and then be scrupulous about saving into Word when I'm done for the day, or just before I send? It's sort of a pain in the butt, although I can learn to do it--I just want to make sure I'm not missing something here. Also, is there an autosave function so I don't have to rely on my discipline? Or does it never ever bomb?
    What happens if I open the Word version and make changes to it? Do I have to do something differently to make sure I have both versions identical? Am I better off always to open the Pages document to work on, then save and send?
    Do I always then have two versions of the same document (like I would if I did this same thing with pdf)?
    How do I make sure that the Word version is always up to date since that is the one I am sending to colleagues? Do I always have to save and check the box, and then select the correct document to send?
    I do see that when sending a single document I can easily send it while I am in the document itself. When I do this, selecting to send it as a Word document (or a pdf for that matter), will it send the version I most recently saved, or the version that is on my screen (if I forgot to save changes)?
    FInally, I'd be open to any tips from people working regularly with others who must use Word. I want it to work as simply as possible, but want to set up some good habits from the beginning.
    Finally, finally, have you had problems with compatibility. I have to say that there have been very few Word document yet that I've opened that I haven't gotten a message that says that Pages doesn't support some aspect of the document and formatting is removed, or spacing is different, etc. The most common is that "paragraph borders operate differently so all borders except outside borders have been removed." I'm a bit nervous about this--will I be getting documents from others that I can't trust? Will I have to ask them to send a pdf as well so I can confirm that I got it right? Can anyone ease my mind? Or am I living in reality?
    Thanks a million!
    EagerLearner
    Message was edited by: eagerlearner

    Well yes they are not the same program so there will be differences.
    For example Pages only allows a border all the way around a paragraph with few options on the style of line, which is why you got the warning.
    A workflow would consist of you doing your work in Pages however you like it and when you have finished and saved, making a Word copy which you despatch to your colleagues and then throw away.
    Of course this is more cumbersome than sticking with MsWord which is another option. You choose. It comes down to whether or not you have to tightly conform and interact with Word users. Maybe Pages is not for you, or even NeoOfffice which is a clone of MsOffice.
    Test it. If it works and you like it stick with whatever solution works for you.

  • Issue with reporting and additional question

    Hello,
    1st Question:
    I have ran into an issue with the interal server reporting.
    If the file is published as an html file, then the reporting works as intended
    (Able to see with Quiz Analyzer due to it creating an xml file in the appropriate folder)
    However, if I publish the file as a swf file, the reporting does not seem to be working at all.
    Does this mean that swf reporting is not supported with the internal server? or?
    2nd Question
    When reporting likert, as expected the quiz analyzer makes it so that we have go into each individual person to see their inputs.
    With that I am able to export it as an excel file for each individual person.
    However, is there a way to mass export all the individual responses as 1 excel file with the quiz analyzer?
    (Would it be better using Adobe Connect for reporting, or other lms systems?)
    Thank you so much for your help!

    Hi,
    Quick thigh when you get an error stating "unknown error" means something wrong with your server internal post result php or some cross domain issue. It will be great if you can send us the project for analysis. Please send your project on [email protected]
    Will analyze your issue and will get back to you, also I insist if you can provide few steps you opted while setting internal server reporting and the internal server on some machine. This will be very helpful to trace the issue.
    Regards
    Shriyansh
    Adobe Engineering Team

  • Expanding network with TC and access question

    Hi All
    I need to look at a new external hard disk since my current 160gb is just getting too full, so I figured it might be time to get a Time Capsule, probably the 1tb.
    I've got two questions before I do..
    1. Currently I have Sky Broadband. I've read a lot of people saying that it is not possible to make TC part of the existing network through wifi so have to connect. If thats the case I'm probably better off with standard network drive. Has anyone managed to do this yet? Im wondering if the reviews I've read are just that people couldn't work it out?
    2. I assume this is the case, but can I access the HD as a standard network drive for general storage? Is it possible to define how much space Time Machine can use say 500gb, and leave 500gb for general usage?
    Many thanks for any answers

    The issue I have is that Sky Broadband forces you to use their router for broadband access. They hide the user name and password on a chip so it is not possible to configure.
    Besides my phone is downstairs and my printer is upstairs in the little office. My plan was to have TC upstairs, with printer connected. Have both the TC and Sky Broadband router all part of the same network.
    Then I'd use a cable to do the first backup and use wireless for incremental backups.
    It does look as though I can't use this configuration. But its a bit strange, I thought it was part of standard wireless networks that you could use access points to extend them. I assume then that apple are not using all of the standards?
    If that is the case, I'd have to plug it into my router as a wired option, in which case any external HD with a network interface will do half the job I need.
    I'm just trying to find out if anyone has managed to get it extended from sky (or other router). Note I can change my sky router settings so in theory could change the sky one to use the apple settings, does that make a difference? Anyone had success that way?

  • Database setup with MySQL and PHP question

    Hello all,
    I recently had a problem getting a report to work for a site I was updating.  This site is written in PHP with a MySQL database.  The application is to track customer calls to auto repair stores.  The database has a lot of foreign keys because they wanted to update information in only one spot and have multiple records be updated all at once.  So, I've got all the information from individual calls saved in the call_log table, and have foreign keys to reference information in other tables (for example this table lists what store received the call referencing the store table).  If a store changes locations, they want to have reports automatically update with the new address, connection to conversation number, etc.
    In one of the responses to my question on how to get this report to work, I was told that this could be done without using foreign keys (by Normalizing the database using mapping tables).  I am still a newbie to MySQL, and after looking though a lot of manuals, tutorials, and forum posts, I am more confused now than ever.
    I got the report to work using the foreign keys, but I would like to learn what I should have done with the database (and how to get the information displayed).
    So for example one report would be displaying the following:
               Store                                                      Reason for the Customer Call
                                               breaks             oil change            shocks              tune up         total calls
    5636 - Bloomington                  2                       4                        0                       2                   8
    8875 - Duluth                           1                       6                       4                        8                  19
    with links on the store name to pull up the information on that specific store.  How would I change the database (listed below) to do this without foreign keys?  Any help would be greatly appreciated.
    call_log             (table that contains the following:)
    call_id
    conv_number
    date
    camp_type         (foreign key to the campaign table so it displays the campaign_id)
    reason               (foreign key to the call_reason table so it displays the reason_id)
    location              (foreign key to the store table so it displays the store_id)
    associate
    call_summary
    trainig_issue      (foreign key to the training_points table so it displays the training_key_id)
    visit_closed
    example            (foreign key to the example_type table so it displays the example_id)
    campaign          (table that contains the following:)
    campaign_id
    campaign_name
    campaign_promotion
    campaign_coupon
    campaign_startdate
    campaign_enddate
    call_reason       (table that contains the following:)
    reason_id
    reason
    store               (table that contains the following:)
    store_id
    store_number
    store_address
    store_city
    store_state
    store_postalcode
    store_name
    store_phone
    store_email
    store_mgr
    training_points  (table that contains the following:)
    training_key_id
    key_issue
    policy
    example_type  (table that contains the following:)
    example_id
    example_name
    example_image
    Thank you very much.

    Frankly, that is way to much of a question to be answered in detail on a forum... There's a lot involved and a lot of general database understanding required. I would highly recommend:
    Database Design for Mere Mortals:                       A Hands-On Guide to Relational Database Design, Second                       Edition -- by Michael                     J. Hernandez
    This is an invaluable book to get you going in the right direction and on a firm foundation.
    Lawrence   *Adobe Community Expert*
    www.Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in ASP, PHP and CF
    www.twitter.com/LawrenceCramer

  • Hoping for a little help with registering and hosting questions.

    i was hoping i could get some information from some of you
    that have personal experience with registering your site and
    picking a hosting provider.
    im wondering what the difference is between say....Dot5
    hosting at 5.00 a month and .. network solutions at 29.99 a month?
    my local provider here in sacramento wants 30 a month as
    well......299.oo a yr.
    should I go with a local provider? or go with ... say GoDaddy
    or some other company?
    also, registering. Im about to register my site name.
    however, some companies include it in the "packages" they offer.
    should I register it myself or let the hosting company I choose do
    it?
    sorry for the newb questions....but I cant find any good info
    on this and I was hoping maybe some of you that have already done
    this to chime in.
    thanks in advance.

    If you want almost all of the below features for about $9.00
    a month go to
    Gate.com and pick your package. I use them for several web
    sites and have
    never been dissatisfied with their services or features.
    They will register your domain and I've done it both ways,
    but have never
    had problems with them but it does make a lot of sense to
    register it
    yourself and keep full ownership....
    "Sonjay" <[email protected]> wrote in message
    news:C19368C5.A15FD%[email protected]...
    > There's probably not a dime's worth of difference
    between the Dot5 hosting
    > and the NetSol hosting, but I wouldn't recommend either
    of those companies
    > for hosting.
    >
    > $30/month seems high unless you have very specific needs
    -- there's plenty
    > of good hosting around for $8 or $10 a month. The thing
    you need to do is
    > decide what your requirements are: php? asp? MySQL?
    Access? dot.net?
    > E-mail?
    > Telnet or SSH access? Do you need/want a control panel
    that makes it easy
    > for you set up your own e-mail accounts, password
    protect directories, and
    > that sort of thing, or will basic FTP access be all you
    need? Do you want
    > a
    > statistics package included with your hosting? Do you
    need to run more
    > than
    > one domain under the same account? If all of the above
    makes you shake
    > your
    > head and say "I don't need any of that," then you can
    probably manage just
    > fine with any of the $5-$10 month basic packages, with a
    reputable host.
    >
    > Whatever you do, register your domain separately from
    your hosting, and
    > only
    > use an ICANN-accredited registrar, none of those
    resellers that tend to
    > disappear and/or register people's domains in their own
    name. I have
    > nothing
    > good to say about NetSol as a registrar, going back to
    the years when they
    > were the only game in town, and I will never use them
    again, but any other
    > ICANN-accredited registrar should do you just fine.
    >
    > --
    > Sonjay
    >
    > On 11/29/06 3:51 PM, "Progressive_Learning" wrote:
    >
    >>
    >>
    >> i was hoping i could get some information from some
    of you that have
    >> personal
    >> experience with registering your site and picking a
    hosting provider.
    >>
    >> im wondering what the difference is between
    say....Dot5 hosting at 5.00 a
    >> month and .. network solutions at 29.99 a month?
    >>
    >> my local provider here in sacramento wants 30 a
    month as well......299.oo
    >> a
    >> yr.
    >>
    >> should I go with a local provider? or go with ...
    say GoDaddy or some
    >> other
    >> company?
    >>
    >> also, registering. Im about to register my site
    name. however, some
    >> companies include it in the "packages" they offer.
    should I register it
    >> myself
    >> or let the hosting company I choose do it?
    >>
    >> sorry for the newb questions....but I cant find any
    good info on this and
    >> I
    >> was hoping maybe some of you that have already done
    this to chime in.
    >>
    >> thanks in advance.
    >>
    >
    >

  • PEAP config with ACU and 350 Nic

    I am trying to config PEAP with a 350 Nic on a Win2K SP4 machine. I can get LEAP to work, but I never see the option to choose PEAP under the Network Security Tab.
    I am using ACU verizon 6.3.011, latest version from Cisco. I removed it completely, the shutdown, then reinstalled choosing PEAP from the custom setup menu. However, I never see PEAP as a choice.
    I am running ACS ver 3.2 and have PEAP setup with a self generated Cert.
    How do I choose PEAP from ACU? of is it supposed to be chosen from withing Win, if so, where, I looked everywhere.
    Seth

    I have this config running in production right now. PEAP was difficult to setup and get working. Mainly due to the certificates. I had to load a Microsoft CA server and generate certs for both my ACS servers. Then you have to import them into the pc's using the MMC.exe. Make sure you add the certs to the "computer account" .
    Steps are:
    1) goto RUN and enter mmc.exe
    2) ctrl+m (add snap-in)
    3) Add certificates snap-in under computer account and local computer
    4) Expand the list on the left, highlight "Trusted root certification authorities" , left-click, all tasks, import.
    5) Follow the wizard, browse your cert file and import under "Trusted Root certification Authorities"
    6) Import all the certs this way, you should have two if you have two ACS servers for redundancy, as I do.
    7) Then once in the PEAP setup in the windows auth tab, you'll need to select these certs to activate them. They should now be in that list after the import.
    There are also some sticky settings on the ACS servers. This took me about 8months to get working correctly with trial-n-error, testing, production runs and TAC cases. Feel free to email me if you want to take this offline.
    I feel your pain.
    jk

  • Apple Bluetooth Headset - Paring with Windows and Other Questions

    Love my new Apple Bluetooth Headset, works great. My first one did have a problem with poor range but this one is a lot better. I've been wanting to use the headset as a mic. Windows XP finds the headset find but I can't tell if it's connecting or not. How do I tell the Headset what device to connect to? It's paired to my iPhone too so it picks up on my iPhone every time I try to connect.
    Basically how do scroll through on the Headset what devices to connect to? Usually Bluetooth Headsets can be paired with multiple devices and you do certain button combinations to scroll through the paired devices.

    unlike some of the sony ericssons, the apple headset can only be paired with one phone at a time. that doesn't stop you from repairing it when need be, however...

  • Formatted search with UDF and syntax question

    Can you explain the syntax with when to use the dollar sign and negative in writing a query for a formatted search based on user entry?
    I now want to create a formatted search to pull values based on the user's entry into a UDF on the item master screen.
    User entry into UDF U_Customer Code
    to create Formatted search for UDF U_Rep01
    I tried the following, but it does not work.
    SELECT T0.U_REP01 FROM dbo.OCRD T0
    WHERE T0.CARDCODE = $http://$OITM.U_CUSTOMERCODE
    Thanks.
    Please advise.

    The right syntax would be like this:
    SELECT T0.U_REP01 FROM dbo.OCRD T0
    WHERE T0.CARDCODE = $[OITM.U_CUSTOMERCODE\]
    However, the logic of query may not be correct.  Select something must be already in the system and Where should also be locatable.
    Thanks,
    Gordon

  • WRT160N v2 - problems with WPA2 and some questions about N

    Hi guys
    WRT160N V2 (F/W 2.0.03)
    So I've been operating on Wireless G with WEP for a good while because of the problems I had in the past. The other day I decided to try again with the "N" and the WPA2... and spent 4 hours going around in circles; now I'm on B/G Mixed/WPA-PSK.
    When I tried to use "N", (by enabling "Mixed" with everything else set to "Auto") even my HTC Sensation would only pick up a "G" connection... and all my laptops (which are not "N" capable) would not connect at all. So I ditched that and looked at the encryption and authentication.
    When I enabled "WPA2" "AES/TKIP", my machines and phones would either not connect at all, failed to get an IP address, or connected fine with an IP address but routing wasn't working... and these symptoms seemingly occurred randomly - no direct device correlation and one device might show all the symptoms at different times.
    I dropped down to WPA, and (touch wood) everything seems to be working at the moment... but I don't trust it. Can you tell me what I need to do to get this working on N and WPA2? Have I missed a firmware update?
    p.s. Is this model 2.4GHz or 5GHz please?
    Cheers

    That's 2.4.. G network would only work in this case since you don't have N cards on your computers
    Check out this article so you know what security you can set on your computers, some devices are not WPA capable so you might want to think about that too.
    Setting-Up WEP, WPA or WPA2 Wireless Security on a Linksys Wireless Router
    "Sometimes your knight in shining armor is just a retard in tin foil.."-ARCHANGEL_06

  • Sharing config with Servlet and Web Services

    Hi,
    I am building a Servlet wrapper and a jaxrpc wrapper for my application, so that my client can invoke either servlet or web services to access my application.
    my main application library is at WEB-INF/lib and both the servlet and
    webservices are in WEB-INF/classes.
    I am trying to make them sharing the same configuration file web.xml so that common attributes such as log file location can be read. I know Servlet can read the context and parameters but how to make my web services app to read it, since the web services are not servlet itself but it is invoked by the JAXRPC servlet????
    Thanks

    The early post may answer your question:
    http://forum.java.sun.com/thread.jsp?forum=331&thread=266102

  • Extreme with n and modem question

    Hi, my Airport extreme base station (n) has just arrived. I was about to set it up and notice on the little diagram that there is a modem attached! I thought this was a wireless router that I was buying.
    Now have I got this wrong but do I now have to go and buy an external modem as well?
    I have three wireless apple laptops that will be accessing this. No wired machines at all.
    My 6 year old wirless router that has just become a little unstable is a slim upright model that sits there on my shelf. If I do have to now go and buy an external modem as well I will have the base station, the adaptor and a modem on the shelf. Mmmmm. Hope the answer to this is that I don't have to have that.
    Thanks in advance for your help.

    I wish I had realised this before as I wouldn't have bought it, I made the mistake of presuming that it would just work in the same way as my old one.
    I now have to work out what the actual definitions of a base station and router are. Perhaps if I had understood these terms I may have saved myself some dosh.
    Thanks for your reply, much appreciated.

Maybe you are looking for