ADAM schema design - newbie help!!

I have a requirement to make one of our application directory enabled with
ActiveDirectory Application Domain(ADAM). The application has to store the user
and their profiles in ADAM. The requirement is that
- there is a Network which is divided into 5 area centers
- at each level there are users like Admin,Manager,Operator etc
- There are a set of profiles available for users at every level
An g. profile for an operator at network level looks like view, search
equipment objects in the whole network (Nocc_OPR)
An eg. Profile for an admin user at the network level looks something
like all operations possible by an operator at network level plus
add, modify equipment objects in the whole network (Nocc_ADM)
Where equipment objects are objects in our application
An eg. Profile for an operator at area center level looks like view, search
equipment objects with the area center (Area1_OPR)
�     Create a top node (MyOrg) and create the following under the top node
o     5 area centers as containers
o     Admin, Manager,operator, ViewOnlyOperator, AtmSimUsr, VPN Owner, DutyOfficer, TrainingCenterLead as Groups
                    NOCC
                    |------------AreaCenter1
                    |------------ AreaCenter2
                    |------------ AreaCenter3
                    |------------ AreaCenter4
                    |------------ AreaCenter5
                    |------------NoccAdmin
                    |------------NoccOperator
�     Under every area center create a group for each user group type and thus create the following
o     Under AreaCenter1, create Area1-Manager, Area1-Operator group.
Under AreaCenter2, creaArea2-Manager, Area2-Operator group
�     Create privilege set as group under top node and under every area center. Attach the attributes to respective privilege group and assign the privilege group to the respective Active directory group.
o     NOCC
|-------Nocc_ADM (Privilege group)
|-------Nocc_OPR
o     AreaCenter1
     |--------Area1-Operator
          |--------Area1_ OPR
Now my question is ,
1)     While creating the profiles as a Group class, should I create the profile specific stuff as attributes. Eg. viewNetwork , modify network as new attributes??
2)     If so ,is the default schema that comes with ADAM enough or should I extend the schema and how do go about it??
Since Iam a novice using ADAM, any help in this area would be greatly appreciated.I did go through the admin, step-by-step guide. But I could not get the specific answer that Iam looking for.

There are actually techniques you could use to keep all the information about an article in the same object. This may be attractive in particular if the information is rarely updated (frequently updating a large object is costly and, unless every attribute changes with every update, breaking up the object graph making some of the objects into separate cache items is then preferable).
With the later Coherence releases there are for instance PofExtractor that allow you to extract selected parts of an object without de-serializing the whole object. You could probably use this to only extract the "price list"for a product. Combine this with a custom aggregator (that aggregates over all products a customer want to get a quote on) that could extract just that customers price from the "price list" and you would have a quite efficient solution...
As for indexes you COULD put the price list and other info from the large object in indexes but be aware that Coherence indexes are always stored on heap (other data can nowadays be stored off-heap) and also occupy a lot of space (Coherence always creates both index and reverse index and since Java objects are used to implement them there is quite a lot of overhead)... I would first look into either a 3NF-like solution with mainly primary indexes or a single cacnhe solution using PofExtractors etc...
/Magnus

Similar Messages

  • URGENT!!!!! Schema design help

    Iam trying to design a schema with ActiveDirectory Application mode with the following requirements:
    Profile1: CM_VIEW  view equipment, search equipment
    Profile 2: CM_USR  All operations possible by CM_VIEW + create equipment objects, modify inventory, create and modify facilities attributes
    Profile 3: CM_FULL  All operations possible by CM_USR + delete equipment , facilities
    Profile 4: CM_ADM  All operations possible by CM_FULL + admin privilege for security management
    There are a list of user groups. This level is more like a container and no privilege is controlled at this level
    User Group1 : Admin
    User Group2: Manager
    User Group3: Operator
    Now this list of User groups can have one or more subgroups. The profiles need to be assigned at this level.
    Admin group: Admin1
    Manager group: NW Manager , Area1 Manager, Area2 Manager etc�
    Operator Group: NW Operator, Area1 Operator, Area2 Operator
    There is a single network which is divided into 5 area centers. User groups are given access to the whole network or specific area center.
    Whole NW access : Admin1, NW Manager with whatever profiles assigned to them
    Area1 access : Area1 Manager, Area1 Operator with whatever profiles assigned to them
    As Iam a novice with ADAM, I seek some help to get my schema designed. Iam very confused about
    - whether the default AD schema would suffice
    - do I need to create my own class
    - do I need to add my own attributes to existing classes
    - If so, should I consider all the operations defined in the profile as user defined attributes?
    I could not get specific information for the stuff Iam searching for and Iam struggling to get the shema designed. It is quite urgent and Any help in this area would be greatly appreciated

    There would be several ways to solve this problem.
    First of all, the schema. You have threee choices;
    1. Extend an existing class.This is when the existing class meets your requirements (searching, differentiation) but needs a few more attributes
    2. Derive a new subclass from an existing class. This is when you want to differentiate your class, but inherit features from an existing class.
    3. Create a new class, when no existing class meets your requirements
    For option 1, best way to do this is create an auxilliary class and add it to the existing class. (Eg. create an auxilliary class called clothing sizes, add attributes height, waist, hat size,shoe size,and then add the class to the existing user class)
    For option 2, you may want a class called football player, so you create a new class called footballplayer, derived fromthe existing user class.You may add new attributes such as football team, playing position.
    For option 3, you may want to create an entirely newclass to represent a football stadium, with both existing attributes such as address, city and new attributes such as seating capacity
    So in your case, users & administrators would normally just be user or inetOrgPerson class objects. Equipment & facilities may require their own classes.
    Next thing is to use organisationaUnits (OU's) as the boundaries for delegating administrative permissions. For each area, Area 1, Area 2, ...,Area n, create an organizational unit.
    Then you have two methods to enforce role based access control.
    The first is to use is to use the Windows security model to enforce the object access.
    Create groups to represent CM_VIEW, CM_USR, CM_FULL, CM_ADM roles, perhaps even groups such as Area_1_CM_USR
    Then grant the following permissions on the OU.
    CM_VIEW - read/list eqpt class objects
    CM_USR - read/write/list/create/delete eqpt class objects, read/list/write/create facilities
    CM_FULL - read/write/list/create/delete eqpt class objects, read/list/write/create/delete facilities
    CM_ADM - full permissions on the OU.
    You can either define these ACL's on the OU's so the permissions apply to all objects in the OU, or define them on the schema definitions so that as new objects are instantiated they have the default permissions applied. As you want to differentiate access at the OU level, don't worry about the default schema permissions, just set the ACL's on each OU.
    The problem you would have is using Java/JNDI to manage the ACL's (writing the security descriptors on the OU or object classes.).Far easier to use either the WIndows API's, Windows scripting interfaces (ADSI), LDIF files or Windows UI components (ADSIEdit).
    You may want to do all the schema extension and ACL's with Windows tools,coz they're easier and use Java/J2EE for your application development.
    The second approach is to apply the role based access controls within your application. The security risk with this approach is that it may be possible for someone to subvert the security in your application by accessing the directory directly.

  • Hi I am trying to change the margins and layout of an existing in design document, help!

    Hi I am trying to change the margins and layout of an existing in design document, help!

    This is an open forum, not Adobe support... you need Adobe support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    or
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • Database design for Help Desk application.

    Hello does any one know
    Database design for Help Desk application.
    ERD
    Business rules and features
    ?

    The best way to approach a database design is to write a
    specification for the application. Document what processes the help
    desk technicians will do. In the process, identify what pieces of
    information they work with. When you have the complete
    specification written, you can then begin grouping the pieces of
    information they work with together. For example, a ticket may have
    a number, status, priority and a person to whom it is assigned. The
    person to whom the ticket is assigned will have a name, phone
    number, e-mail address and a list of technical skills.
    So in this overly-simplified example, we could have a table
    that contains ticket information, a table that has information
    about technicians and a table of skills. Then ask your self
    questions like "Can one ticket be handled by more than one
    technician?" "Can one technician handle more than one ticket?" Can
    a technician have more than one skill?" In this way, you can begin
    seeing the one-to-one, one-to-many and many-to-many relationships
    that exist.

  • LDAP Schema Designer

    I am looking for a kind of LDAP Schema Designer , utility that can check consistency of my schema , detect redundancies ....
    Any suggestions?
    Thanks

    I don't know of any tool like that. The problem is actually not quite that simple, since LDAP does not implement a relational database per se, or have concepts about 1st, 2nd, 3rd, etc normal forms.
    If you want me to review and refine your schema for you, then you can hire me as a consultant. I have extensive experience in designing schema and modeling directory objects and DIT.
    Click my handle for my email address if interested.
    podzap

  • I purchased a file that advised it works with Illustrator intalled via extension manager and it only shows in my 'others products'? I cant even open the file in illustrator or in design? Help    =)

    I purchased a file that advised it works with Illustrator intalled via extension manager and it only shows in my 'others products'? I cant even open the file in illustrator or in design? Help    =)

    What's the product name please?

  • XML Schema Design question

    Hello all,
    I am a new to XML Schema design and struggling with designing my first XML Schema. Here is my problem.
    I have almost 200 elements in my database which I have to use to design XSDs, I have customer name ( last name, first name, dob etc) and customer address ( office address, home address etc) and at the same time I have other player such as Patient name ( last name, first name, dob etc) and patient address( home address, office address).
    And then we have some dollor related data such as patient insurance amount, copay amount , total amount and many more $.
    What I wanted to know is that what would be best approach to design a XML schema for such kind of system, should I create one schema (xsd) for all the 200 attributes or I should create seperate schema for customers ( including names and addresses along with other dollor amount data ) and a similar xsd for Patient data. Some of the XML documents which I will create from these schemas would be based on customers and patient information both .
    Thank you.
    Regards
    Suhail Ahmad

    It's hard to tell what is the best design. But in order to simplify access to these data through other program APIs such as JAXB, you may start from defining objects such as the schema types/elements for customer, patient and the addresses
    Then you can assoicate the related data to these object.

  • Difference between database design and schema design

    Hi i have visited so many database websites and i found so many people saying we can design a data base for you. Is schema designing and database designing is the same. so many palces i find people saying we have to design data base first in order to create a physical databse. so i am little bit confused. are they same? and also what is the difference between data model and schema?

    > the definition i found for logical data model, physical data model and the definition you
    gave for logical database design, physical database design are the same.
    Not correct. The physical design is the implemetation of the logical design. These two designs are at different levels. Also, the logical design will be the same. irrespective of the RDBMS product use.
    What is incorrect is a designer/architect designing a logical design specifically for Oracle.. or specifically for SQL-Server. A logical design has nothing to do with the RDBMS product (or h/w platforms. app servers, web severs and operating systems used).
    So the logical design will always be the same - it is RDBMS independent.
    The physical design is fully dependent on the RDBMS product used. The same logical design will be implemented as different physical designs for Oracle and for SQL-Server.

  • Newbie help with cache design/custom filter

    Hello,
    I'm very new to Coherence, so you'll have to forgive me if these are easy questions. I have an application that contains 1.5 million products. Each product has a map of prices for our client list. So internally, each product object I'm caching contains a pricelist map with up to 100 entries (clients):
    private String productId ;
    private String productName ;
    private Map<String, Integer> priceList; //where the String is the client id and the Integer is the price for that clientHere's my question(s):
    1. Is there any type of query that would return the product info and just the price for the 1 client (there really is no need to send all 100 of them for the individual quries)? How could this be done efficiently?
    2. I need to sort by price. To do so, I've created a filter on the product keys, and a comparator that contains the client ID. This works fine, but it seems to take a long time to sort based on price using the comparator. Is there any other method of sorting that might be more efficient on the Coherence side of things? Sorting by product name is also a bit slow - is there a way to speed that up? The product name is the same for all clients, and thus is a simple string in the object being cached.
    3. Indexing: Is there any way to index the internal Map of the price list? And would that help in performance?
    Since this is a new implementation, the object design for the cache is open for change as well - if there are other structures that would enhance the performance. Any help would be most appreciated!
    Sincerely,
    Chris

    There are actually techniques you could use to keep all the information about an article in the same object. This may be attractive in particular if the information is rarely updated (frequently updating a large object is costly and, unless every attribute changes with every update, breaking up the object graph making some of the objects into separate cache items is then preferable).
    With the later Coherence releases there are for instance PofExtractor that allow you to extract selected parts of an object without de-serializing the whole object. You could probably use this to only extract the "price list"for a product. Combine this with a custom aggregator (that aggregates over all products a customer want to get a quote on) that could extract just that customers price from the "price list" and you would have a quite efficient solution...
    As for indexes you COULD put the price list and other info from the large object in indexes but be aware that Coherence indexes are always stored on heap (other data can nowadays be stored off-heap) and also occupy a lot of space (Coherence always creates both index and reverse index and since Java objects are used to implement them there is quite a lot of overhead)... I would first look into either a 3NF-like solution with mainly primary indexes or a single cacnhe solution using PofExtractors etc...
    /Magnus

  • Schema Design

    Hello All,
    I couldn't find a better forum to post this but if you know of one, please tell me. I need to design a flexible schema for storing product catalog data. I can see 3 possible approaches although I'm sure there are others. 1) create a very specific relational model that's tightly coupled with the attributes of the products in the catalog 2) create a more generalized model where the attributes of the products are defined as name/value pairs 3) use XMLDB to store the definition of each product in an xml type schema.
    The problem with #1 is that it's very inflexible and can become complicated. If we have to add new products to the catalog that have different attributes than what we already store, we'll have to make a schema change. The problem with #2 is the obvious issue with name/value pairs (very large tables, indexing problems, data typing problems, etc). The problem with #3 is that I don't know a lot about it and I'm not sure it makes sense. I'm doing a lot of reading but would like to hear what others have to say about it.
    Can anyone offer any advice or point me to a good resource on the subject of designing schemas for this type of data. I'm wondering how places like Amazon and other large e-commerce shops store their product catalog data but haven't found anything to help me.
    Thanks,
    Mark

    my bad I didnt explain that correctly
    there is a activity template table and a activity schedule table
    a schedule holds many activy schedules, an activity template copies info (name, description, etc) into the activity schedule (that way if the template changes, schedules already made with that activity dont change)
    and then each activity schedule has 24 hour values

  • STAR schema designing

    Hi,
    What are the factors or the things that we should consider while designing star schema ?
    Thanks
    Vaishali

    Vaishali,
             The major things to be considered while designing start could be ..
    1. Proper maintenance of Master data which will be shared across all the infocubes.
    2. Deciding upon dimensions. Which characteristics should be assigned to which dimension? Try to reduce the number of dimensions.
    3. Design deimensions based upon the characteristic relation 1:M...
    4. If the char has more no of values for eg, document number which come in huge volumes to BW that can be designed as Line item dimension instead of assigning it to a dimension.....
    Hope this helps you.....

  • Web Application Designer need help ASAP

    Hi All,
    I have a requirement to customize the analysis item in a web application designer.
    I have created new templetes and added a analysis with a query view as data provider .
    in the output I require to hide some rows of the query view and also change the color of the text i.e the numbers.
    How to modify the output of the analysis item which is coming from a query view or is there any way where I can modify the output of the web templete.
    Thanking You,
    Rukmini

    Dear Devi,
    If you do not want to use the default display and behavior of the Analysis Web item, you can use the Modification parameter to change them. You can modify the table structure and the table cells.
    The Modification parameter provides modules whose use can be controlled using additional parameters.
    This function enables you to use similar options to those available in earlier releases with the Web Design API for Tables. Unlike the Web Design API for Tables, modifications enable you to make targeted changes to the display and behavior without any programming.
    Prerequisites
    The modules are the main prerequisites for making modifications to the Analysis Web item. The modules are implemented in Java. The SAP Basis infrastructure in SAP NetWeaver 7.0 does not support any customer modifications or extensions to Java coding. Customers are therefore not able to develop their own modules for modifications to the Analysis Web item.
    SAP delivers a number of sample modules. You can use parameters to modify the display and behavior of these modules.
    Procedure
    You use the modules as follows:
           1.      Select a module from the sample modules.
           2.      Specify the module in the Modification parameter of the Analysis Web item.
           3.      Control the display and behavior of the module by specifying the module-specific parameters.
    Result
    The table of the Analysis Web item is displayed in an individual manner using the modules. The behavior of the table may also be different. For example, you can define commands for table cells.
    Example
    For example, you can define a fixed column width or display comments in cells.
    For more info :
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/1a/456a3badc1b315e10000000a114084/frameset.htm
    Hope this helps u..
    Best Regards,
    VVenkat..

  • Dispatcher getting stopped due to possible user/schema mismatch.Plz help

    Hello All,
    I have SAP Netweaver 7.01 ABAP AS installed on windows 2003. Was working fine but I had to have a bug fixed in win 2003 and restarted my SAP machine. Now, dispatcher is not running. Stops after a while. I have tried restarting SAP and the machine but dispatcher is not running. I looked at the dispatcher trace and dev_w0 but could not figure out the reason as I am new to SAP, please provide any pointers to solve this issue. Any general tips is also welcome. Timely help is greatly appreciated!
    I have pasted parts of dev_disp and dev_w0 below. If you require more details, please let me know. Thank you very much!
    -Arvind
    dev_disp:
    =========
    trc file: "dev_disp", trc level: 1, release: "701"
    sysno      00
    sid        NSP
    systemid   560 (PC with Windows NT)
    relno      7010
    patchlevel 0
    patchno    29
    intno      20020600
    make:      multithreaded, Unicode, optimized
    pid        3784
    Fri Jun 10 19:25:12 2011
    kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    length of sys_adm_ext is 576 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3784) [dpxxdisp.c   1261]
         shared lib "dw_xml.dll" version 29 successfully loaded
         shared lib "dw_xtc.dll" version 29 successfully loaded
         shared lib "dw_stl.dll" version 29 successfully loaded
         shared lib "dw_gui.dll" version 29 successfully loaded
         shared lib "dw_mdm.dll" version 29 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Fri Jun 10 19:25:18 2011
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5529]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >egsap701_NSP_00                         <
    DpShMCreate: sizeof(wp_adm)          13632     (1704)
    DpShMCreate: sizeof(tm_adm)          4415616     (21968)
    DpShMCreate: sizeof(wp_ca_adm)          1664     (80)
    DpShMCreate: sizeof(appc_ca_adm)     1600     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1544)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 07050040, size: 5042120)
    DpShMCreate: allocated sys_adm at 07050040
    DpShMCreate: allocated wp_adm at 07052170
    DpShMCreate: allocated tm_adm_list at 070556B0
    DpShMCreate: allocated tm_adm at 070556E0
    DpShMCreate: allocated wp_ca_adm at 0748B760
    DpShMCreate: allocated appc_ca_adm at 0748BDE0
    DpShMCreate: allocated comm_adm at 0748C420
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0750D2E0
    DpShMCreate: allocated gw_adm at 0750D320
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0750D350
    DpShMCreate: allocated wall_adm at 0750D358
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    rdisp/queue_size_check_value :  -> off
    ThTaskStatus: rdisp/reset_online_during_debug 0
    *** ERROR => ztta/cua_area is 180000. [sapinit.c    975]
    *** ERROR => ztta/cua_area adjusted to 500000. [sapinit.c    979]
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 1023 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1656]
    ***LOG Q0K=> DpMsAttach, mscon ( egsap701) [dpxxdisp.c   12362]
    DpStartStopMsg: send start message (myname is >egsap701_NSP_00                         <)
    DpStartStopMsg: start msg sent
    CCMS: alert/MONI_SEGM_SIZE = 0   monitoring and alerting switched off.
    DpMsgAdmin: Set release to 7010, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1048]
    DpMsgAdmin: Set patchno for this platform to 29
    Release check o.K.
    Fri Jun 10 19:25:58 2011
    my types changed after wp death/restart 0xbf --> 0xbe
    my types changed after wp death/restart 0xbe --> 0xbc
    my types changed after wp death/restart 0xbc --> 0xb8
    my types changed after wp death/restart 0xb8 --> 0xb0
    my types changed after wp death/restart 0xb0 --> 0xa0
    my types changed after wp death/restart 0xa0 --> 0x80
    *** DP_FATAL_ERROR => DpWPCheck: no more work processes
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1565
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri Jun 10 19:26:08 2011
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    max_rq_id          11
    wake_evt_udp_now     0
    wake events           total     7,  udp     7 (100%),  shm     0 (  0%)
    since last update     total     7,  udp     7 (100%),  shm     0 (  0%)
    Workprocess Comm. Area Blocks               Fri Jun 10 13:56:08 2011
    =============================
    Slots: 20, Used: 1, Max: 0
    +------+--------------+----------+-------------+
    |   id | owner        |   pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    |    0 | DISPATCHER   |       -1 | *WPCAAD000* |
    <SNIP>
    [DpProcDied] Process died  (PID:3492  HANDLE:1540)
    DpStartStopMsg: send stop message (myname is >egsap701_NSP_00                         <)
    DpStartStopMsg: Write AD_STARTSTOP message with type=  0, name=egsap701_NSP_00     , sapsysnr= 0, hostname=egsap701                                                       
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    <SNIP>
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/20/8
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 14)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 1496
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 3784) [dpxxdisp.c   10924]
    Good Bye .....
    dev_w0
    ========
    trc file: "dev_w0", trc level: 1, release: "701"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ

    B Fri Jun 10 19:25:18 2011
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' ...
    B  Library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' loaded
    B  Version of 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' is "700.08", patchlevel (0.24)
    B  New connection 0 created
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7010
    M patchlevel 0
    M patchno    29
    M intno      20020600
    M make:      multithreaded, Unicode, optimized
    M pid        2768
    M
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2768) [dpxxdisp.c   1323]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          13632     (1704)
    M  DpShMCreate: sizeof(tm_adm)          4415616     (21968)
    M  DpShMCreate: sizeof(wp_ca_adm)          1664     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     1600     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1544)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 07050040, size: 5042120)
    M  DpShMCreate: allocated sys_adm at 07050040
    M  DpShMCreate: allocated wp_adm at 07052170
    M  DpShMCreate: allocated tm_adm_list at 070556B0
    M  DpShMCreate: allocated tm_adm at 070556E0
    M  DpShMCreate: allocated wp_ca_adm at 0748B760
    M  DpShMCreate: allocated appc_ca_adm at 0748BDE0
    M  DpShMCreate: allocated comm_adm at 0748C420
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 0750D2E0
    M  DpShMCreate: allocated gw_adm at 0750D320
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 0750D350
    M  DpShMCreate: allocated wall_adm at 0750D358
    M  rdisp/queue_size_check_value :  -> off
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    Y  *** ERROR => ztta/cua_area is 180000. [sapinit.c    975]
    Y  *** ERROR => ztta/cua_area adjusted to 500000. [sapinit.c    979]
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host egsap701

    M Fri Jun 10 19:25:19 2011
    M  calling db_connect ...

    C  DBSDBSLIB : version 700.08, patch 0.024 (Make PL 0.29)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.024) Default value for max. input variables is 2000 (note 655018)
    C    (0.024) Profile parameter to define max. input variables (note 655018)
    C    (0.024) Switch SQLMODE after CREATE INDEX SERIAL (note 1267841)
    C    (0.024) Input parameters for SQL statements increased (note 655018)
    C    (0.018) Create index serial for MaxDB 7.6 (note 1267841)
    C    (0.018) More trace in case of packed to string conversion error (note 1262799)
    C    (0.016) R3trans export aborts with signal 6 (note 1262245)
    C    (0.009) IA64 alignment errors (note 1245982)
    C    (0.007) Support DB-Type 'SAP DB' by UPDSTAT (note 1225668)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC SDK Version : SQLDBC.H  7.6.0    BUILD 002-121-083-965
    C  SQLDBC Library Version : libSQLDBC 7.6.5    BUILD 011-123-196-300
    C  SQLDBC client runtime is MaxDB 7.6.5.011 CL 196300
    C  SQLDBC supports new DECIMAL interface : 0
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports keepAlive indicator   : 0
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  Attach to SAP DB : Kernel    7.7.06   Build 007-123-197-046
    C  Database release is SAP DB 7.7.06.007
    C  INFO : Database 'NSP' instance is running on 'egsap701'
    C  DB max. input host variables  : 2000
    C  INFO : SAP DB Packet_Size = 131072
    C  INFO : SAP DB Min_Reply_Size = 4096
    C  INFO : SAP DB Comm_Size = 126976
    C  INFO : DBSL buffer size = 126976
    C  INFO : SAP DB MaxLocks = 300000
    C  INFO : Connect to DB as 'SAPNSP'
    C  *** ERROR => the connected user (SAPNSP) does not work with the right user/schema
    [dbslsdb.cpp  4818]
    C  *** ERROR => application has to work with schema SAPR3 (dbs/ada/schema)
    [dbslsdb.cpp  4820]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1449]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10563]

    M  Info for wp 0

    M    pid = 2768
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server egsap701_NSP_00 on host egsap701 (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Fri Jun 10 19:25:19 2011
    M  *  RELEASE     701
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10783
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >BtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   723]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2768) [dpnttool.c   334]

    Hello Rattandeep and Markus,
    Thanks for explaining the error to me. I'm still facing the issue though!
    My start profile is START_DVEBMGS00_egsap701 and instance profile is NSP_DVEBMGS00_egsap701 (they are included below).
    In both profiles, the dbs/ada/schema has been currently deactivated. I get the same errors even after deactivating the parameter in both profiles. I also tried your suggestions by setting parameter values to SAPNSP and then to SAPR3 in both profiles but I'm still getting the same errors.
    > the above log shows that you have to change the parameter with schema user SAPR3 instead of SAPNSP
    You mean that the SAP system is started by SAPNSP user and since the profile is executed by SAPNSP user, we are getting the error? I don't know about the SAPR3 user or the user's credential. I only use bcuser/ddic RFC user to logon to SAP.
    I don't know how to check the table space for SAPR3 database. As far as I know, BRTools is only for Oracle backends. So, I used Max DB database manager tool instead and found that the default NSP database has utilized about 50% data area (disk space). Overwrite mode is on and I have about 100% free log area (also determined through database manager tool). Still have not clue as to how to solve this. Please help. Thanks for your tips so far!
    The start profile is as follows :
    #.*       Start profile START_DVEBMGS00_EGSAP701                                                                               *
    #.*       Version                 = 000004                                                                                *
    #.*       Generated by user = DDIC                                                                                *
    #.*       Generated on = 27.04.2011 , 11:02:57                                                                                *
    SAPSYSTEMNAME = NSP
    SAPGLOBALHOST = egsap701
    SAPSYSTEM = 00
    INSTANCE_NAME = DVEBMGS00
    DIR_CT_RUN = $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTI386
    DIR_EXECUTABLE = $(DIR_INSTANCE)\exe
    DIR_PROFILE = $(DIR_INSTALL)\profile
    _PF = $(DIR_PROFILE)\NSP_DVEBMGS00_egsap701
    # Copy SAP Executables
    Start_Program_00 = immediate $(DIR_CT_RUN)\sapcpe$(FT_EXE) pf=$(_PF)
    # Start ABAP database
    _DB = $(DIR_CT_RUN)\strdbs.cmd
    Start_Program_01 = immediate $(_DB) NSP
    # Start SAP message server
    _MS = $(DIR_EXECUTABLE)\msg_server$(FT_EXE)
    Start_Program_02 = local $(_MS) pf=$(_PF)
    # Start application server
    _DW = $(DIR_EXECUTABLE)\disp+work$(FT_EXE)
    Start_Program_03 = local $(_DW) pf=$(_PF)
    rsdb/dbid = NSP
    #dbs/ada/schema = SAPNSP
    Instance profile is as follows:
    #.*       Instance profile NSP_DVEBMGS00_EGSAP701                                                                              *
    #.*       Version                 = 000006                                                                                *
    #.*       Generated by user = DDIC                                                                                *
    #.*       Generated on = 27.05.2011 , 11:30:39                                                                                *
    SAPSYSTEMNAME = NSP
    SAPGLOBALHOST = egsap701
    SAPSYSTEM = 00
    INSTANCE_NAME = DVEBMGS00
    DIR_CT_RUN = $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTI386
    DIR_EXECUTABLE = $(DIR_INSTANCE)\exe
    rdisp/wp_no_dia = 3
    rdisp/wp_no_btc = 1
    icm/server_port_0 = PROT=HTTP,PORT=80$$
    # SAP Message Server parameters are set in the DEFAULT.PFL
    ms/server_port_0 = PROT=HTTP,PORT=81$$
    rdisp/wp_no_enq = 1
    rdisp/wp_no_vb = 1
    rdisp/wp_no_vb2 = 1
    rdisp/wp_no_spo = 1
    PHYS_MEMSIZE = 128
    em/initial_size_MB = 10240
    em/max_size_MB = 1024
    abap/buffersize = 100000
    #old_value: 0                                                                                changed: DDIC 27.04.2011 11:04:52
    #old_value: 60000000                                                                           changed: DDIC 27.05.2011 11:29:55
    alert/MONI_SEGM_SIZE = 0
    enque/table_size = 2000
    #parameter deactivated                      by: DDIC         27.05.2011 11:11:00
    #rspo/local_print/method = 2
    rsdb/ntab/entrycount = 5000
    rsdb/ntab/ftabsize = 3000
    rsdb/ntab/sntabsize = 100
    rsdb/ntab/irbdsize = 1000
    rsdb/cua/buffersize = 500
    rsdb/obj/buffersize = 2048
    rsdb/obj/max_objects = 500
    rsdb/otr/buffersize_kb = 1000
    rsts/ccc/cachesize = 6000000
    rtbb/buffer_length = 500
    rtbb/max_tables = 50
    sap/bufdir_entries = 200
    zcsa/presentation_buffer_area = 350000
    zcsa/calendar_area = 300000
    zcsa/table_buffer_area = 3000000
    zcsa/db_max_buftab = 500
    ztta/roll_area = 1000000
    ztta/diag_area = 128000
    ztta/dynpro_area = 150000
    ztta/cua_area = 180000
    rdisp/PG_SHM = 100
    rdisp/PG_MAXFS = 256
    rdisp/ROLL_SHM = 100
    rdisp/ROLL_MAXFS = 2048
    #old_value: 0                                                                                changed: DDIC 27.04.2011 11:04:52
    #old_value: 300                                                                                changed: DDIC 27.05.2011 11:29:38
    rdisp/autoabaptime = 0
    rdisp/wp_ca_blk_no = 20
    rdisp/appc_ca_blk_no = 20
    rdisp/max_wprun_time = 30000
    icm/min_threads = 5
    icm/max_threads = 10
    icm/max_conn = 20
    mpi/total_size_MB = 10
    rsdb/dbid = NSP
    #parameter deactivated                      by: DDIC         27.05.2011 11:11:22
    #dbs/ada/schema = SAPNSP

  • Newbie help me obi wans: ...coded locked by template or translator

    Hi Folks,
    I'm such a newbie to DW   I've been using it for a few years actually, but in a very basic sense.
    I dloaded a template, added some graphics, made some buttons etc.. and of course text, but when it comes to coding,
    I've only figure out how to add spaces  lol
    I'm trying to add a flash video to my samples page.  I can add images, but every time I add the .flv, I receive the subject message.
    So here are 2 issues:
    1. I don't know if this related to #2, but I can't erase the 3rd column...or even use it. it's locked - I see a circle with a line through it.  The template I bought did say it was 3 columns, but I don't understand why I can't touch it.  I've attached a tiff of what it looks like right now.
    2. as the subject says "changing code is locked by the template is locked a template or translator" is giving me grief.
    I've reviewed the previous posts on the subject, but I'm afraid my newbie-ness has left me not knowing what to do.  ie. I can't find a time/date to change...I see the <head> and <script>, but they're greyed out on the one page I'm trying to edit.  They're not greyed out on the template page however.
    I also tried saving my .dwt as a new template, but that didn't work either.
    Here is code for my Samples page.  I'll post the code for the template page under that.
    <html><!-- #BeginTemplate "/Templates/Main2.dwt" --><!-- DW6 -->
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>dvdslideshow</title>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <!-- #EndEditable -->
    <LINK REL=STYLESHEET TYPE="text/css" HREF="../style.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000" onLoad="MM_preloadImages('../oldafter.jpg','../hockey new 281.jpg','../sp40 fixed.jpg','../redeyegone.jpg','../yellowfinal.jpg','../sp900_800.jpg','../soloedited.jpg ','../breton_done_web.jpg')">
    <table width="0%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="128" rowspan="8" valign="top" bgcolor="#EBEBE3"> <table width="128" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="../images/menutop.gif" width="128" height="18"></td>
            </tr>
            <tr>
              <td><p><a href="../index.htm"><img name="Image35" border="0" src="../images/menu/home.gif" width="128" height="19"></a><br>
                  <a href="../services.htm"><img name="Image36" border="0" src="../images/menu/products.gif" width="128" height="19"></a><br>
                  <a href="../samples.htm"><img name="Image37" border="0" src="../images/menu/services.gif" width="128" height="19"></a><br>
                  <a href="../pricing.htm"><img name="Image38" border="0" src="../images/menu/aboutus.gif" width="128" height="19"></a><br>
                  <a href="../the_process.htm"><img name="Image39" border="0" src="../images/menu/company.gif" width="128" height="19"></a><br>
                  <a href="../testimonials.htm"><img name="Image40" border="0" src="../images/menu/links.gif" width="128" height="19"></a><br>
                  <a href="../faq.htm"><img name="Image41" border="0" src="../images/menu/guestbook.gif" width="128" height="19"></a><br>
                  <a href="../disclaimers.htm"><img name="Image42" border="0" src="../images/menu/photo.gif" width="128" height="19"></a><br>
                  <a href="../contact me.htm"></a><a href="../contact_me.htm"><img name="Image45" border="0" src="../images/menu/email.gif" width="128" height="19"></a>
                  <a href="../contact me.htm"></a><a href="../contact me.htm"></a></p></td>
            </tr>
            <tr>
              <td><a href="../specials.htm"><img src="../images/menubottom2.jpg" width="128" height="18" border="0"></a></td>
            </tr>
            <tr>
              <td><img src="../images/sidetop.gif" width="128" height="17"></td>
            </tr>
            <tr>
              <td align="center"><strong>Celebrate a milestone birthday or anniverary
                with a <u>DVD Photo Slideshow</u>. <a href="slideshows2dvd.htm">Click
                here for more details.</a></strong></td>
            </tr>
            <tr>
              <td align="center"> <table width="96%" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td class="news"><br>
                      <a href="audiotransfers.htm"><img src="../LPcassettes.jpg" width="180" height="152" border="0"></a>
                    </td>
                  </tr>
                </table></td>
            </tr>
          </table>
          <p align="center"><font size="+2">Donations!</font></p>
          <p align="center"> 5% of Memories2dvd's annual revenue will be donated equally
            between the <a href="http://www.cancer.ca/ccs/internet/cancer/0,,3172,00.html"><strong>Canadian
            Cancer Society</strong></a> and the <a href="http://junobeach.org/Centre/index.html"><strong>Juno
            Beach Memorial</strong></a></p>
          <p> </p></td>
        <td width="3" rowspan="7"><img src="../images/clearpixel.gif" width="3" height="1"></td>
        <td width="16" height="56" bgcolor="#6D9A50"><img src="../images/topleft.gif" width="16" height="56"></td>
        <td width="100%" valign="bottom" bgcolor="#6D9A50"><img src="../name.gif" width="360" height="50"></td>
        <td width="16"><img src="../images/topright.gif" width="16" height="56"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="6" colspan="3" bgcolor="#006D15"><img src="../images/clearpixel.gif" width="1" height="6"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="21" bgcolor="#EBEBE3"><img src="../images/lightleft.gif" width="16" height="21"></td>
        <td align="right" bgcolor="#EBEBE3"><div align="left"><strong><a href="mailto:[email protected]">CONTACT
            INFORMATION: Phone: 613-324-2383___ E-MAIL</a> | <a href="../about_me.htm">About
            Me</a></strong> </div></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="11"><img src="../images/clearpixel.gif" width="1" height="11"></td>
        <td align="right" valign="top"><img src="../images/lightcorner.gif" width="10" height="11"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="11"></td>
      </tr>
      <tr>
        <td height="650" colspan="2"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="16" rowspan="2"><img src="../images/innertopleft.gif" width="16" height="16"></td>
              <td bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
              <td width="16" rowspan="2"><img src="../images/innertopright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
            </tr>
            <tr>
              <td background="../images/leftbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
              <td width="100%" valign="top"> <div align="center">
                  <table width="100%" border="0" cellspacing="2" cellpadding="2">
                    <!--DWLayoutTable-->
                    <!-- #BeginEditable "Body" -->
                  <tr>
                    <td width="267" height="145" valign="top"><p><img src="../pg t samples.jpg" width="119" height="34"></p>
                        <p>It's one thing to read about my services, but once you
                          actually see the results, you will realize that personalization
                          is the key to your DVD project. Aside from your photos,
                          video and favourite music, I completely personalize every
                        aspect of your DVD right from the packaging to the DVD menus.</p>
                        <p>Click <a href="testimonials.htm"><strong>here</strong></a> to read client testimonials.</p>
                        <p>Click on the thumbnails below to view various samples from
                          recent projects.</p>
                        <p><em>All samples have been reduced in quality to be internet
                          friendly. Original versions are of superior quality and
                          full-TV size. </em></p>
                        <p>You will need Apple's Quicktime player to view the movie
                          files. The free download is available by clicking <a href="http://www.apple.com/quicktime/products/qt"><strong>here</strong></a>.</p>
                      <p> </p>                    </td>
                    <td width="290" align="center" valign="top"><p> </p>
                        <p> </p>
                        <p align="center">Follow these links to read about other services:</p>
                        <div align="left">
                          <ul>
                            <li><strong><a href="homedvds.htm"><font size="+1">Video
                            and Reel Transfers</font></a></strong></li>
                            <li><font size="+1"><strong><a href="slideshows2dvd.htm">Photo
                              Slideshows</a></strong></font></li>
                            <li><font size="+1"><strong><a href="../photorestorations.htm">Photo
                              Transfers and Restorations</a></strong></font></li>
                            <li> <font size="+1"><strong><a href="audiotransfers.htm">Audio
                              Transfers</a></strong></font></li>
                          </ul>
                        </div>
                        <p> </p>
                        <p align="right"> </p>
                      <p> </p></td>
                  </tr>
                  <tr valign="top">
                    <td height="232" colspan="2" valign="top"> <p align="left"><strong><font size="+1">PHOTOSLIDESHOW
                          SAMPLES:</font></strong></p>
                      <p align="left"> </p>
                      <p align="left">The following slideshow was recently done for a surprise birthday party.</p>
                      <p align="center"><a href="Sshowsample.mp4"><img src="Sshowsample2.jpg" width="163" height="89"></a></p>
                      <p align="left">Photographs with voice over narration and
                          text titles were combined to create a presentation that
                          will provide generations with a history on their forefather
                          in this biography.</p>
                        <p align="center"><a href="../biography.wmv"><img src="../bio111.jpg" width="111" height="73" border="0"></a></p>
                        <p align="left"> </p>
                        <p align="left">This couple were married by a lake in a beautiful
                          wedding. I compiled camcorder footage along with photographs
                          into a memorable DVD, complete with a bonus music video.
                        <p align="center"><a href="../ceremusicvidsam.mp4"><img src="../arbour.jpg" width="111" height="72" border="0"></a>
                        <p align="left"><strong><font size="+1">8mm REEL COLOUR CORRECTION
                          SAMPLE:</font></strong>
                        <p align="left">Are you videos dark, too bright or discoloured?
                          I can edit your tapes and film to repair colour issues,
                        bringing your movies back to life.                   
                        Click <a href="http://homepage.mac.com/memories2dvd/iMovieTheater30.html"><strong>HERE</strong></a> to view samples.
                        <p align="left"><strong><font size="+1">PHOTO RESTORATION
                          SAMPLES</font></strong>
                        <p align="left">These samples illustrate the various types
                          of blemishes which can be dealt with to restore your photographs.</p>
                        <p align="left"> <strong><u><font size="3">Simply move your
                          mouse cursor over each photo to see the difference.</font></u></strong></p>
                        <p align="left"><strong>General Dust/Blemish Removal</strong></p>
                        <p align="left"> </p>
                        <p> </p>
                        <div align="center">
                          <p align="left"> </p>
                        </div>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('sp40 fix','','../sp40 fixed.jpg',1)"><img src="../sp40_orig.jpg" name="sp40 fix" width="600" height="418" border="0"></a></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image56','','../hockey new 281.jpg',1)"><img src="../hockey old 281.jpg" name="Image56" width="270" height="163" border="0"></a></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('oldsue','','../oldafter.jpg',1)"><img src="../oldbefore.jpg" name="oldsue" width="320" height="501" border="0"></a></p>
                        <p align="left"><strong>Red Eye Removal</strong></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image55','','../redeyegone.jpg',1)"><img src="../redeye.jpg" name="Image55" width="231" height="416" border="0"></a></p>
                        <p align="left"><strong>Colour &amp; Stain Removal</strong></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('yellow','','../yellowfinal.jpg',1)"><img src="../yelloworig.jpg" name="yellow" width="270" height="395" border="0"></a></p>
                        <p align="left"><strong>Contrast &amp; Exposure Adjustments
                          and Crack Removals </strong>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('breton','','../breton_done_web.jpg',1)"><img src="../breton base_web.jpg" name="breton" width="539" height="1000" border="0"></a>                   
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('cracks','','../sp900_800.jpg',1)"><img src="../sp9orig.jpg" name="cracks" width="600" height="410" border="0"></a>
                        <p align="left"><strong>Isolation of Main Subject</strong>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('isolation','','../soloedited.jpg',1)"><img src="../15sisters.jpg" name="isolation" width="300" height="500" border="0"></a>
                        <p align="left"> </p>
                        <p><br>
                          <img src="../images/clearpixel.gif" width="430
    " height="1"> </p>                    </td>
                  </tr>
                  <!-- #EndEditable -->
                    <tr valign="top">
                      <td height="88" colspan="4" align="center" class="menu"> <p><img src="../images/hr.gif" width="361" height="1"></p>
                        <p class="menu" ><a href="../index.htm"><strong>home</strong></a><strong>
                          | <a href="../services.htm">services</a> | <a href="../sample.htm">samples</a>
                          | <a href="../pricing.htm">pricing</a> | <a href="../testimonials.htm">testimonials</a>
                          | <a href="../the_process.htm">the process</a><br>
                          <a href="../faq.htm"> f.a.q.</a> | <a href="../disclaimers.htm">disclaimers</a>
                          | <a href="../contact_me.htm">contact me</a> | <a href="../about_me.htm">about
                          me</a></strong></p>
                        <p class="menu" >Copyright Memories2dvd<a href="http://www.ibswebdesign.com/" target="_blank"></a>
                          2003 - 2009 All Rights Reserved</p></td>
                    </tr>
                    <tr>
                      <td height="5"></td>
                      <td></td>
                      <td width="211"></td>
                      <td></td>
                    </tr>
                  </table>
                </div></td>
              <td width"23" background="../images/rightbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
            </tr>
            <tr>
              <td width="16" rowspan="2"><img src="../images/innerbottomleft.gif" width="16" height="16"></td>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
              <td width="16" rowspan="2"><img src="../images/innerbottomright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="1" bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
            </tr>
          </table></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="5" colspan="3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
      </tr>
      <tr>
        <td height="20" bgcolor="#006D15"><img src="../images/bottomleftcorner.gif" width="16" height="20"></td>
        <td colspan="3" bgcolor="#006D15"> </td>
        <td bgcolor="#006D15"><img src="../images/bottomrightcorner.gif" width="16" height="20"></td>
      </tr>
    </table>
    </body>
    <!-- #EndTemplate --></html>
    CODE FOR THE TEMPLATE PAGE:
    <html>
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>Untitled Document.</title>
    <!-- #EndEditable -->
    <LINK REL=STYLESHEET TYPE="text/css" HREF="../style.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <table width="0%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="128" rowspan="8" valign="top" bgcolor="#EBEBE3"> <table width="128" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="../images/menutop.gif" width="128" height="18"></td>
            </tr>
            <tr>
              <td><p><a href="../index.htm"><img name="Image35" border="0" src="../images/menu/home.gif" width="128" height="19"></a><br>
                  <a href="../services.htm"><img name="Image36" border="0" src="../images/menu/products.gif" width="128" height="19"></a><br>
                  <a href="../samples.htm"><img name="Image37" border="0" src="../images/menu/services.gif" width="128" height="19"></a><br>
                  <a href="../pricing.htm"><img name="Image38" border="0" src="../images/menu/aboutus.gif" width="128" height="19"></a><br>
                  <a href="../the_process.htm"><img name="Image39" border="0" src="../images/menu/company.gif" width="128" height="19"></a><br>
                  <a href="../testimonials.htm"><img name="Image40" border="0" src="../images/menu/links.gif" width="128" height="19"></a><br>
                  <a href="../faq.htm"><img name="Image41" border="0" src="../images/menu/guestbook.gif" width="128" height="19"></a><br>
                  <a href="../disclaimers.htm"><img name="Image42" border="0" src="../images/menu/photo.gif" width="128" height="19"></a><br>
                  <a href="../contact%20me.htm"></a><a href="../contact_me.htm"><img name="Image45" border="0" src="../images/menu/email.gif" width="128" height="19"></a>
                  <a href="../contact%20me.htm"></a><a href="../contact%20me.htm"></a></p></td>
            </tr>
            <tr>
              <td><a href="../specials.htm"><img src="../images/menubottom2.jpg" width="128" height="18" border="0"></a></td>
            </tr>
            <tr>
              <td> </td>
            </tr>
            <tr>
              <td align="center"><strong>Celebrate a milestone birthday or anniverary
                with a <u>DVD Photo Slideshow</u>. <a href="../slideshows2dvd.htm">Click
                here for more details.</a></strong></td>
            </tr>
            <tr>
              <td align="center"> <table width="96%" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td class="news"><br>
                      <a href="../audiotransfers.htm"><img src="../LPcassettes.jpg" width="180" height="152" border="0"></a>
                    </td>
                  </tr>
                </table></td>
            </tr>
          </table>
          <p align="center"><font size="+2">Donations!</font></p>
          <p align="center"> 5% of Memories2dvd's annual revenue will be donated equally
            between the <a href="http://www.cancer.ca/ccs/internet/cancer/0,,3172,00.html"><strong>Canadian
            Cancer Society</strong></a> and the <a href="http://junobeach.org/Centre/index.html"><strong>Juno
            Beach Memorial</strong></a></p>
          <p> </p></td>
        <td width="3" rowspan="7"><img src="../images/clearpixel.gif" width="3" height="1"></td>
        <td width="16" height="56" bgcolor="#6D9A50"><img src="../images/topleft.gif" width="16" height="56"></td>
        <td width="100%" valign="bottom" bgcolor="#6D9A50"><img src="../name.gif" width="360" height="50"></td>
        <td width="16"><img src="../images/topright.gif" width="16" height="56"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="6" colspan="3" bgcolor="#006D15"><img src="../images/clearpixel.gif" width="1" height="6"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="21" bgcolor="#EBEBE3"><img src="../images/lightleft.gif" width="16" height="21"></td>
        <td align="right" bgcolor="#EBEBE3"><div align="left"><strong><a href="mailto:[email protected]">CONTACT
            INFORMATION: Phone: 613-831-9365___ E-MAIL</a> | <a href="../about_me.htm">About
            Me</a></strong> </div></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="11"><img src="../images/clearpixel.gif" width="1" height="11"></td>
        <td align="right" valign="top"><img src="../images/lightcorner.gif" width="10" height="11"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="11"></td>
      </tr>
      <tr>
        <td height="650" colspan="2"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="16" rowspan="2"><img src="../images/innertopleft.gif" width="16" height="16"></td>
              <td bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
              <td width="16" rowspan="2"><img src="../images/innertopright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
            </tr>
            <tr>
              <td background="../images/leftbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
              <td width="100%" valign="top"> <div align="center">
                  <table width="100%" border="0" cellspacing="2" cellpadding="2">
                    <!--DWLayoutTable-->
                    <!-- #BeginEditable "Body" -->
                    <tr>
                      <td width="329" height="189" valign="top"><p><img src="../pg%20t%20instrucnl.jpg" width="300" height="27"></p>
                        <p align="left">From teachers to health care professionals
                          to corporate trainers, I can help you create a compelling
                          instructional video. Using techniques such as Picture in
                          Picture will deliver your educational knowledge with extra
                          value. The ease of navigation of DVD makes instruction more
                          efficient and effective.</p></td>
                      <td width="4" valign="top"><img src="images/hr.gif" width="1" height="125"> </td>
                      <td colspan="2" valign="top"><p><img src="../pg%20t%20blank.jpg" width="204" height="27
    "></p>
                        <p>Follow these links to read about other services:</p>
                        <div align="left">
                          <ul>
                            <li><a href="../homedvds.htm">classic home videos</a></li>
                            <li> <a href="../weddings2dvd.htm">weddings2dvd</a></li>
                            <li> <a href="../sports2dvd.htm">sports2dvd</a></li>
                            <li> <a href="../slideshows2dvd.htm">DVD photo slideshows</a></li>
                            <li> <a href="../reunions2dvd.htm">reunions2dvd</a></li>
                            <li> <a href="instructionaldvds.htm">instructional DVD</a></li>
                          </ul>
                        </div></td>
                    </tr>
                    <tr>
                      <td height="3
    50" colspan="3" valign="top"><p align="center"><img src="../images/hr.gif" width="361" height="1"></p>
                        <p align="left">  </p>
                        <p align="left">Please click <a href="../sample.htm"><strong>here</strong></a>
                          to view real samples from recent projects.<br>
                        </p></td>
                      <td width="2" valign="top"><!--DWLayoutEmptyCell--> </td>
                    </tr>
                    <!-- #EndEditable -->
                    <tr valign="top">
                      <td height="88" colspan="4" align="center" class="menu"> <p><img src="../images/hr.gif" width="361" height="1"></p>
                        <p class="menu" ><a href="../index.htm"><strong>home</strong></a><strong>
                          | <a href="../services.htm">services</a> | <a href="../sample.htm">samples</a>
                          | <a href="../pricing.htm">pricing</a> | <a href="../testimonials.htm">testimonials</a>
                          | <a href="../the_process.htm">the process</a><br>
                          <a href="../faq.htm"> f.a.q.</a> | <a href="../disclaimers.htm">disclaimers</a>
                          | <a href="../contact_me.htm">contact me</a> | <a href="../about_me.htm">about
                          me</a></strong></p>
                        <p class="menu" >Copyright Memories2dvd<a href="http://www.ibswebdesign.com/" target="_blank"></a>
                          2003 - 2009 All Rights Reserved</p></td>
                    </tr>
                    <tr>
                      <td height="5"></td>
                      <td></td>
                      <td width="211"></td>
                      <td></td>
                    </tr>
                  </table>
                </div></td>
              <td width"23" background="../images/rightbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
            </tr>
            <tr>
              <td width="16" rowspan="2"><img src="../images/innerbottomleft.gif" width="16" height="16"></td>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
              <td width="16" rowspan="2"><img src="../images/innerbottomright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="1" bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
            </tr>
          </table></td>
        <td bgcolor="#EBEBE3"><!-- TemplateBeginEditable name="EditRegion1" --><!-- TemplateEndEditable --></td>
      </tr>
      <tr>
        <td height="5" colspan="3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
      </tr>
      <tr>
        <td height="20" bgcolor="#006D15"><img src="../images/bottomleftcorner.gif" width="16" height="20"></td>
        <td colspan="3" bgcolor="#006D15"> </td>
        <td bgcolor="#006D15"><img src="../images/bottomrightcorner.gif" width="16" height="20"></td>
      </tr>
    </table>
    </body>
    </html>
    Any help is hugely appreciated.
    Cheers
    keebler

    thanks for the quick reply!
    I found the 2 things to change, but when I go back to my page...everything is gone!  eek
    (fear no panic - I did back up my website prior to making any changes
    (file attached).
    it looks like there is only 1 column instead of 3 sections. I was hoping to lose just the one on the right.
    here is the new code from my Samples page (not the template)  I"ll post that below.
    <!-- #BeginTemplate "/Templates/Main2.dwt" --><!-- DW6 --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>dvdslideshow</title>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <!-- #EndEditable -->
    <LINK REL=STYLESHEET TYPE="text/css" HREF="public_html/style.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000" onLoad="MM_preloadImages('sp40 fixed.jpg','hockey new 281.jpg','oldafter.jpg','redeyegone.jpg','yellowfinal.jpg','breton_done_web.jpg','sp900_8 00.jpg','soloedited.jpg')">
    <table width="0%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="128" rowspan="8" valign="top" bgcolor="#EBEBE3"> <table width="128" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="public_html/images/menutop.gif" width="128" height="18"></td>
            </tr>
            <tr>
              <td><p><a href="public_html/index.htm"><img name="Image35" border="0" src="public_html/images/menu/home.gif" width="128" height="19"></a><br>
                  <a href="public_html/services.htm"><img name="Image36" border="0" src="public_html/images/menu/products.gif" width="128" height="19"></a><br>
                  <a href="public_html/samples.htm"><img name="Image37" border="0" src="public_html/images/menu/services.gif" width="128" height="19"></a><br>
                  <a href="public_html/pricing.htm"><img name="Image38" border="0" src="public_html/images/menu/aboutus.gif" width="128" height="19"></a><br>
                  <a href="public_html/the_process.htm"><img name="Image39" border="0" src="public_html/images/menu/company.gif" width="128" height="19"></a><br>
                  <a href="public_html/testimonials.htm"><img name="Image40" border="0" src="public_html/images/menu/links.gif" width="128" height="19"></a><br>
                  <a href="public_html/faq.htm"><img name="Image41" border="0" src="public_html/images/menu/guestbook.gif" width="128" height="19"></a><br>
                  <a href="public_html/disclaimers.htm"><img name="Image42" border="0" src="public_html/images/menu/photo.gif" width="128" height="19"></a><br>
                  <a href="public_html/contact me.htm"></a><a href="public_html/contact_me.htm"><img name="Image45" border="0" src="public_html/images/menu/email.gif" width="128" height="19"></a>
                  <a href="public_html/contact me.htm"></a><a href="public_html/contact me.htm"></a></p></td>
            </tr>
            <tr>
              <td><a href="public_html/specials.htm"><img src="public_html/images/menubottom2.jpg" width="128" height="18" border="0"></a></td>
            </tr>
            <tr>
              <td> </td>
            </tr>
            <tr>
              <td align="center"><strong>Celebrate a milestone birthday or anniverary
                with a <u>DVD Photo Slideshow</u>. <a href="public_html/slideshows2dvd.htm">Click
                here for more details.</a></strong></td>
            </tr>
            <tr>
              <td align="center"> <table width="96%" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td class="news"><br>
                      <a href="public_html/audiotransfers.htm"><img src="public_html/LPcassettes.jpg" width="180" height="152" border="0"></a>
                    </td>
                  </tr>
                </table></td>
            </tr>
          </table>
          <p align="center"><font size="+2">Donations!</font></p>
          <p align="center"> 5% of Memories2dvd's annual revenue will be donated equally
            between the <a href="http://www.cancer.ca/ccs/internet/cancer/0,,3172,00.html"><strong>Canadian
            Cancer Society</strong></a> and the <a href="http://junobeach.org/Centre/index.html"><strong>Juno
            Beach Memorial</strong></a></p>
          <p> </p></td>
        <td width="3" rowspan="7"><img src="public_html/images/clearpixel.gif" width="3" height="1"></td>
        <td width="16" height="56" bgcolor="#6D9A50"><img src="public_html/images/topleft.gif" width="16" height="56"></td>
        <td width="100%" valign="bottom" bgcolor="#6D9A50"><img src="public_html/name.gif" width="360" height="50"></td>
        <td width="16"><img src="public_html/images/topright.gif" width="16" height="56"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="public_html/images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="6" colspan="3" bgcolor="#006D15"><img src="public_html/images/clearpixel.gif" width="1" height="6"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="public_html/images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="21" bgcolor="#EBEBE3"><img src="public_html/images/lightleft.gif" width="16" height="21"></td>
        <td align="right" bgcolor="#EBEBE3"><div align="left"><strong><a href="mailto:[email protected]">CONTACT
            INFORMATION: Phone: 613-831-9365___ E-MAIL</a> | <a href="public_html/about_me.htm">About
            Me</a></strong> </div></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="11"><img src="public_html/images/clearpixel.gif" width="1" height="11"></td>
        <td align="right" valign="top"><img src="public_html/images/lightcorner.gif" width="10" height="11"></td>
        <td bgcolor="#EBEBE3"><img src="public_html/images/clearpixel.gif" width="1" height="11"></td>
      </tr>
      <tr>
        <td height="650" colspan="2"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="16" rowspan="2"><img src="public_html/images/innertopleft.gif" width="16" height="16"></td>
              <td bgcolor="#006D15" height="1"><img src="public_html/images/clearpixel.gif" width="1" height="1"></td>
              <td width="16" rowspan="2"><img src="public_html/images/innertopright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="100%"><img src="public_html/images/clearpixel.gif" width="1" height="15"></td>
            </tr>
            <tr>
              <td background="public_html/images/leftbg.gif"><img src="public_html/images/clearpixel.gif" width="16" height="8"></td>
              <td width="100%" valign="top"> <div align="center">
                  <table width="100%" border="0" cellspacing="2" cellpadding="2">
                    <!--DWLayoutTable-->
                    <!-- #BeginEditable "Body" -->
                  <tr>
                    <td width="267" height="145" valign="top"><p><img src="pg%20t%20samples.jpg" width="119" height="34"></p>
                        <p>It's one thing to read about our services, but once you
                          actually see the results, you will realize that personalization
                          is the key to your DVD project. Aside from your photos,
                          video and favourite music, I completely personalize every
                          aspect of your DVD right from the packaging to the DVD menus.</p>
                        <p>Click on the thumbnails below to view various samples from
                          recent projects.</p>
                        <p><em>All samples have been reduced in quality to be internet
                          friendly. Original versions are of superior quality and
                          full-TV size. I can supply demo DVDs upon request.</em></p>
                        <p>You will need Apple's Quicktime player to view the movie
                          files. The free download is available by clicking <a href="http://www.apple.com/quicktime/products/qt"><strong>here</strong></a>.</p>
                        <p> </p>                    </td>
                    <td width="290" align="center" valign="top"><p> </p>
                        <p> </p>
                        <p align="center">Follow these links to read about other services:</p>
                        <div align="left">
                          <ul>
                            <li><strong><a href="homedvds.htm"><font size="+1">Video
                              Transfers</font></a></strong></li>
                            <li><font size="+1"><strong><a href="public_html/slideshows2dvd.htm">Photo
                              Transfers</a></strong></font></li>
                            <li><font size="+1"><strong><a href="photorestorations.htm">Photo
                              Restorations</a></strong></font></li>
                            <li> <font size="+1"><strong><a href="public_html/audiotransfers.htm">Audio
                              Transfers</a></strong></font></li>
                          </ul>
                        </div>
                        <p> </p>
                        <p align="right"> </p>
                      <p> </p></td>
                  </tr>
                  <tr valign="top">
                    <td height="232" colspan="2" valign="top"> <p align="left"><strong><font size="+1">PHOTOSLIDESHOW
                          SAMPLES:</font></strong></p>
                        <p align="left">Photographs with voice over narration and
                          text titles were combined to create a presentation that
                          will provide generations with a history on their forefather
                          in this biography.</p>
                        <p align="center"><a href="biography.wmv"><img src="bio111.jpg" width="111" height="73" border="0"></a></p>
                        <p align="left">The following sample was part of a 50th birthday
                          celebration. Three hundred photographs were scanned and
                          mixed with video clips to make the ultimate surprise movie.                    </p>
                        <p align="center"><a href="sample1.mov"><img src="sample1.jpg" width="111" height="82" border="0"></a></p>
                        <p align="left"> This sample was taken from a couple's vacation.
                          The couple travelled throughout SouthEast Asia and South
                          America and amassed approximately 750 digital photos. I
                          organized the DVD by country and added their favourite music
                          so they could instantly re-visit their adventures.
                        <p align="center"><a href="sample2.mov"><img src="boats.jpg" width="111" height="81" border="0"></a>
                        <p align="left">This couple were married by a lake in a beautiful
                          wedding. I compiled camcorder footage along with photographs
                          into a memorable DVD, complete with a bonus music video.
                        <p align="center"><a href="ceremusicvidsam.mp4"><img src="arbour.jpg" width="111" height="72" border="0"></a>
                        <p align="left"><strong><font size="+1">8mm REEL COLOUR CORRECTION
                          SAMPLE:</font></strong>
                        <p align="left">Are you videos dark, too bright or discoloured?
                          I can edit your tapes and film to repair colour issues,
                          bringing your movies back to life. Click <a href="http://homepage.mac.com/memories2dvd/iMovieTheater30.html"><strong><font size="+1">HERE</font></strong></a>
                          to view samples.
                        <p align="left"><strong><font size="+1">PHOTO RESTORATION
                          SAMPLES</font></strong>
                        <p align="left">These samples illustrate the various types
                          of blemishes which can be dealt with to restore your photographs.</p>
                        <p align="left"> <strong><u><font size="3">Simply move your
                          mouse cursor over each photo to see the difference.</font></u></strong></p>
                        <p align="left"><strong>General Dust/Blemish Removal</strong></p>
                        <p align="left"> </p>
                        <p> </p>
                        <div align="center">
                          <p align="left"> </p>
                        </div>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('sp40 fix','','sp40 fixed.jpg',1)"><img src="sp40_orig.jpg" name="sp40 fix" width="600" height="418" border="0"></a></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image56','','hockey new 281.jpg',1)"><img src="hockey%20old%20281.jpg" name="Image56" width="270" height="163" border="0"></a></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('oldsue','','oldafter.jpg',1)"><img src="oldbefore.jpg" name="oldsue" width="320" height="501" border="0"></a></p>
                        <p align="left"><strong>Red Eye Removal</strong></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image55','','redeyegone.jpg',1)"><img src="redeye.jpg" name="Image55" width="231" height="416" border="0"></a></p>
                        <p align="left"><strong>Colour &amp; Stain Removal</strong></p>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('yellow','','yellowfinal.jpg',1)"><img src="yelloworig.jpg" name="yellow" width="270" height="395" border="0"></a></p>
                        <p align="left"><strong>Contrast &amp; Exposure Adjustments
                          and Crack Removals </strong>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('breton','','breton_done_web.jpg',1)"><img src="breton base_web.jpg" name="breton" width="539" height="1000" border="0"></a>                   
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('cracks','','sp900_800.jpg',1)"><img src="sp9orig.jpg" name="cracks" width="600" height="410" border="0"></a>
                        <p align="left"><strong>Isolation of Main Subject</strong>
                        <p align="left"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('isolation','','soloedited.jpg',1)"><img src="15sisters.jpg" name="isolation" width="300" height="500" border="0"></a>
                        <p align="left"> </p>
                        <p><br>
                          <img src="images/clearpixel.gif" width="430
      " height="1"> </p>                    </td>
                  </tr>
                  <!-- #EndEditable -->
                    <tr valign="top">
                      <td height="88" colspan="4" align="center" class="menu"> <p><img src="public_html/images/hr.gif" width="361" height="1"></p>
                        <p class="menu" ><a href="public_html/index.htm"><strong>home</strong></a><strong>
                          | <a href="public_html/services.htm">services</a> | <a href="public_html/sample.htm">samples</a>
                          | <a href="public_html/pricing.htm">pricing</a> | <a href="public_html/testimonials.htm">testimonials</a>
                          | <a href="public_html/the_process.htm">the process</a><br>
                          <a href="public_html/faq.htm"> f.a.q.</a> | <a href="public_html/disclaimers.htm">disclaimers</a>
                          | <a href="public_html/contact_me.htm">contact me</a> | <a href="public_html/about_me.htm">about
                          me</a></strong></p>
                        <p class="menu" >Copyright Memories2dvd<a href="http://www.ibswebdesign.com/" target="_blank"></a>
                          2003 - 2009 All Rights Reserved</p></td>
                    </tr>
                    <tr>
                      <td height="5"></td>
                      <td></td>
                      <td width="211"></td>
                      <td></td>
                    </tr>
                  </table>
                </div></td>
              <td width="23" background="../images/rightbg.gif<img src="../images/clearpixel.gif" width="16" height="8"></td>
            </tr>
            <tr>
              <td width="16" rowspan="2"><img src="public_html/images/innerbottomleft.gif" width="16" height="16"></td>
              <td width="100%"><img src="public_html/images/clearpixel.gif" width="1" height="15"></td>
              <td width="16" rowspan="2"><img src="public_html/images/innerbottomright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="1" bgcolor="#006D15" height="1"><img src="public_html/images/clearpixel.gif" width="1" height="1"></td>
            </tr>
          </table></td>
        <td bgcolor="#EBEBE3"><!-- #BeginEditable "EditRegion1" --><!-- #EndEditable --></td>
      </tr>
      <tr>
        <td height="5" colspan="3"><img src="public_html/images/clearpixel.gif" width="1" height="5"></td>
        <td bgcolor="#EBEBE3"><img src="public_html/images/clearpixel.gif" width="1" height="5"></td>
      </tr>
      <tr>
        <td height="20" bgcolor="#006D15"><img src="public_html/images/bottomleftcorner.gif" width="16" height="20"></td>
        <td colspan="3" bgcolor="#006D15"> </td>
        <td bgcolor="#006D15"><img src="public_html/images/bottomrightcorner.gif" width="16" height="20"></td>
      </tr>
    </table>
    </body>
    <!-- #EndTemplate --></html>
    TEMPLATE CODE:
    <html>
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>Untitled Document.</title>
    <!-- #EndEditable -->
    <LINK REL=STYLESHEET TYPE="text/css" HREF="../style.css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <table width="0%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="128" rowspan="8" valign="top" bgcolor="#EBEBE3"> <table width="128" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td><img src="../images/menutop.gif" width="128" height="18"></td>
            </tr>
            <tr>
              <td><p><a href="../index.htm"><img name="Image35" border="0" src="../images/menu/home.gif" width="128" height="19"></a><br>
                  <a href="../services.htm"><img name="Image36" border="0" src="../images/menu/products.gif" width="128" height="19"></a><br>
                  <a href="../samples.htm"><img name="Image37" border="0" src="../images/menu/services.gif" width="128" height="19"></a><br>
                  <a href="../pricing.htm"><img name="Image38" border="0" src="../images/menu/aboutus.gif" width="128" height="19"></a><br>
                  <a href="../the_process.htm"><img name="Image39" border="0" src="../images/menu/company.gif" width="128" height="19"></a><br>
                  <a href="../testimonials.htm"><img name="Image40" border="0" src="../images/menu/links.gif" width="128" height="19"></a><br>
                  <a href="../faq.htm"><img name="Image41" border="0" src="../images/menu/guestbook.gif" width="128" height="19"></a><br>
                  <a href="../disclaimers.htm"><img name="Image42" border="0" src="../images/menu/photo.gif" width="128" height="19"></a><br>
                  <a href="../contact%20me.htm"></a><a href="../contact_me.htm"><img name="Image45" border="0" src="../images/menu/email.gif" width="128" height="19"></a>
                  <a href="../contact%20me.htm"></a><a href="../contact%20me.htm"></a></p></td>
            </tr>
            <tr>
              <td><a href="../specials.htm"><img src="../images/menubottom2.jpg" width="128" height="18" border="0"></a></td>
            </tr>
            <tr>
              <td> </td>
            </tr>
            <tr>
              <td align="center"><strong>Celebrate a milestone birthday or anniverary
                with a <u>DVD Photo Slideshow</u>. <a href="../slideshows2dvd.htm">Click
                here for more details.</a></strong></td>
            </tr>
            <tr>
              <td align="center"> <table width="96%" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                    <td class="news"><br>
                      <a href="../audiotransfers.htm"><img src="../LPcassettes.jpg" width="180" height="152" border="0"></a>
                    </td>
                  </tr>
                </table></td>
            </tr>
          </table>
          <p align="center"><font size="+2">Donations!</font></p>
          <p align="center"> 5% of Memories2dvd's annual revenue will be donated equally
            between the <a href="http://www.cancer.ca/ccs/internet/cancer/0,,3172,00.html"><strong>Canadian
            Cancer Society</strong></a> and the <a href="http://junobeach.org/Centre/index.html"><strong>Juno
            Beach Memorial</strong></a></p>
          <p> </p></td>
        <td width="3" rowspan="7"><img src="../images/clearpixel.gif" width="3" height="1"></td>
        <td width="16" height="56" bgcolor="#6D9A50"><img src="../images/topleft.gif" width="16" height="56"></td>
        <td width="100%" valign="bottom" bgcolor="#6D9A50"><img src="../name.gif" width="360" height="50"></td>
        <td width="16"><img src="../images/topright.gif" width="16" height="56"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="6" colspan="3" bgcolor="#006D15"><img src="../images/clearpixel.gif" width="1" height="6"></td>
      </tr>
      <tr>
        <td colspan="3" height="2"><img src="../images/clearpixel.gif" width="1" height="2"></td>
      </tr>
      <tr>
        <td height="21" bgcolor="#EBEBE3"><img src="../images/lightleft.gif" width="16" height="21"></td>
        <td align="right" bgcolor="#EBEBE3"><div align="left"><strong><a href="mailto:[email protected]">CONTACT
            INFORMATION: Phone: 613-831-9365___ E-MAIL</a> | <a href="../about_me.htm">About
            Me</a></strong> </div></td>
        <td bgcolor="#EBEBE3"> </td>
      </tr>
      <tr>
        <td height="11"><img src="../images/clearpixel.gif" width="1" height="11"></td>
        <td align="right" valign="top"><img src="../images/lightcorner.gif" width="10" height="11"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="11"></td>
      </tr>
      <tr>
        <td height="650" colspan="2"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="16" rowspan="2"><img src="../images/innertopleft.gif" width="16" height="16"></td>
              <td bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
              <td width="16" rowspan="2"><img src="../images/innertopright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
            </tr>
            <tr>
              <td background="../images/leftbg.gif"><img src="../images/clearpixel.gif" width="16" height="8"></td>
              <td width="100%" valign="top"> <div align="center">
                  <table width="100%" border="0" cellspacing="2" cellpadding="2">
                    <!--DWLayoutTable-->
                    <!-- #BeginEditable "Body" -->
                    <tr>
                      <td width="329" height="189" valign="top"><p><img src="../pg%20t%20instrucnl.jpg" width="300" height="27"></p>
                        <p align="left">From teachers to health care professionals
                          to corporate trainers, I can help you create a compelling
                          instructional video. Using techniques such as Picture in
                          Picture will deliver your educational knowledge with extra
                          value. The ease of navigation of DVD makes instruction more
                          efficient and effective.</p></td>
                      <td width="4" valign="top"><img src="images/hr.gif" width="1" height="125"> </td>
                      <td colspan="2" valign="top"><p><img src="../pg%20t%20blank.jpg" width="204" height="27
      "></p>
                        <p>Follow these links to read about other services:</p>
                        <div align="left">
                          <ul>
                            <li><a href="../homedvds.htm">classic home videos</a></li>
                            <li> <a href="../weddings2dvd.htm">weddings2dvd</a></li>
                            <li> <a href="../sports2dvd.htm">sports2dvd</a></li>
                            <li> <a href="../slideshows2dvd.htm">DVD photo slideshows</a></li>
                            <li> <a href="../reunions2dvd.htm">reunions2dvd</a></li>
                            <li> <a href="instructionaldvds.htm">instructional DVD</a></li>
                          </ul>
                        </div></td>
                    </tr>
                    <tr>
                      <td height="3
      50" colspan="3" valign="top"><p align="center"><img src="../images/hr.gif" width="361" height="1"></p>
                        <p align="left">  </p>
                        <p align="left">Please click <a href="../sample.htm"><strong>here</strong></a>
                          to view real samples from recent projects.<br>
                        </p></td>
                      <td width="2" valign="top"><!--DWLayoutEmptyCell--> </td>
                    </tr>
                    <!-- #EndEditable -->
                    <tr valign="top">
                      <td height="88" colspan="4" align="center" class="menu"> <p><img src="../images/hr.gif" width="361" height="1"></p>
                        <p class="menu" ><a href="../index.htm"><strong>home</strong></a><strong>
                          | <a href="../services.htm">services</a> | <a href="../sample.htm">samples</a>
                          | <a href="../pricing.htm">pricing</a> | <a href="../testimonials.htm">testimonials</a>
                          | <a href="../the_process.htm">the process</a><br>
                          <a href="../faq.htm"> f.a.q.</a> | <a href="../disclaimers.htm">disclaimers</a>
                          | <a href="../contact_me.htm">contact me</a> | <a href="../about_me.htm">about
                          me</a></strong></p>
                        <p class="menu" >Copyright Memories2dvd<a href="http://www.ibswebdesign.com/" target="_blank"></a>
                          2003 - 2009 All Rights Reserved</p></td>
                    </tr>
                    <tr>
                      <td height="5"></td>
                      <td></td>
                      <td width="211"></td>
                      <td></td>
                    </tr>
                  </table>
                </div></td>
              <td width="23" background="../images/rightbg.gif<img src="../images/clearpixel.gif" width="16" height="8"></td>
            </tr>
            <tr>
              <td width="16" rowspan="2"><img src="../images/innerbottomleft.gif" width="16" height="16"></td>
              <td width="100%"><img src="../images/clearpixel.gif" width="1" height="15"></td>
              <td width="16" rowspan="2"><img src="../images/innerbottomright.gif" width="18" height="16"></td>
            </tr>
            <tr>
              <td width="1" bgcolor="#006D15" height="1"><img src="../images/clearpixel.gif" width="1" height="1"></td>
            </tr>
          </table></td>
        <td bgcolor="#EBEBE3"><!-- TemplateBeginEditable name="EditRegion1" --><!-- TemplateEndEditable --></td>
      </tr>
      <tr>
        <td height="5" colspan="3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
        <td bgcolor="#EBEBE3"><img src="../images/clearpixel.gif" width="1" height="5"></td>
      </tr>
      <tr>
        <td height="20" bgcolor="#006D15"><img src="../images/bottomleftcorner.gif" width="16" height="20"></td>
        <td colspan="3" bgcolor="#006D15"> </td>
        <td bgcolor="#006D15"><img src="../images/bottomrightcorner.gif" width="16" height="20"></td>
      </tr>
    </table>
    </body>
    </html>

  • Wireless design guide/help

    Hi guys........just have  few qestions about designing WLC 5508
    The  scenario is  that currently one of the client has a firewall Tiering T1 internet facing and T2 internal whioch has multiple DMZ connected.
    T2 firewall has a DMZ switch connected which has a router which connects to MPLS cloud to different site across the country. (around 10 sites) all static routing.
    Now the client is thinking to deploy wireless at all 10 sites using H-REAP. The issue is that client has only one WLC and they are not willing to buy other as i was thinking to deploy two WLC one for corporate and one for guest users. (one in internal network and on in DMZ)
    Now my question is as follwow.
    1- Keeping in mind that there is only one WLC where should i physically put it?
    2- How guest users will work ? How the authentication will be done?
    3-There are 8 SFP ports in WLC how physical topology will look like?
    4-How many Vlans i have to make for wirless users  will that be 10? (1 at each site) ?
    my last question is that how these ports work on WLC are they just like swicth e.g  one port can be assigned to different vlan....just confuse about interfaces and vlans on WLC (interfces concept)
    Thanks guy and hope to get a response ASAP.

    1- Keeping in mind that there is only one WLC where should i physically put it?
    Well since you will also be supporting Corporate and I'm guessing that is where the WLC sites, it should be in the inside network.  You would just need to allow udp 5246 & 5247
    2- How guest users will work ? How the authentication will be done?
    Guest users can use webauth in which the credentials will be stored on the WLC.
    3-There are 8 SFP ports in WLC how physical topology will look like?
    This is the tricky part.  You can either lag or not lag.  You can't split up the lag (etherchannel).  So you can either use all 8 if you with and create an etherchannel and then acl the guest traffic out the internet or you can put the guest on a layer 2 vlan in which you would connect that out to the dmz.  Or you can use one port for the management and also have a backup port, one for your internal wireless and also have a backup port and the same for guest.  SO it would look like this:
    Management primary port 1 backup port 2
    SSID primary port 3 backup port 4
    Guest primary port 5 guest port 6
    OR
    Management & SSID's primary port 1 backup port 2
    Guest primary port 3 guest port 4
    4-How many Vlans i have to make for wireless users will that be 10? (1 at each site) ?
    If you use local switching which I would think you would, the vlans for the SSID at the remote site will be created locally at each remote site.  If you want to centrally switch, means all traffic will come back to the WLC, then you will need at least one.  Now you can use a large subnet or have a subnet for each site, its up to you.  You would use AP Groups for that.
    my last question is that how these ports work on WLC are they just like switch e.g one port can be assigned to different vlan....just confuse about interfaces and vlans on WLC (interface concept)
    Thanks,
    Scott
    Help out other by using the rating system and marking answered questions as "Answered"

Maybe you are looking for

  • Asset accounting configuaration

    Hi all In Asset accounting my client doing the depreciation in different way. For the first 6 months he is doing different depreciation and remaining 6 month he is doing different depreciation. So can pls tell me how to configure this type of depreci

  • Since installing mavericks I can't seem to restore my time machine backups

    It only seems to show back ups it's done since mavericks. However I can see another computer's sparse bundle that also used the time capsule. Any tips? Quite worried that it may have wiped over my old backups

  • Importing non-included files

    I am trying to import a class that I wrote in another class I wrote. And I cannot get the main class to use any of the methods of the imported class. I assume it is a problem with importing, can someone help me out?

  • Robohelp 9: Error when using search terms including the word "not"

    We are moving from Robohelp 7 to Robohelp 9.  We realize that Boolean operators such as NOT are supposed to be working now, but we do have times when we might find ourselves using search terms that include the word "not" on its own. The problem that

  • Use INDEXCOL only for localization (without LOOKUP)

    Hi, I've to setup data localization in OBIEE 11. The manuals say to use LOOKUP and INDEXCOL. Anyhow LOOKUP seems not a mandatory step to me. Lets say I have to translate a dimension PRODUCTS which at first only have 2 columns: CODE and DESCRIPTION. I