Need some help getting started with Mobility Services Engine

Someone has ordered several 3602 access points, a 5508 controller, and a MSE 3310 for one of our remote locations. The access points and controller are in place and are working fine (we use lightweight APs at many other locations), but I'm not sure how to approach the MSE. I've gone through the set up, and it's onsite, on the network, and I've added it to our WCS server. It's got a 2000 user context-aware services license. But I'm not sure where to go from here. It doesn't seem to actually be doing much of anything. Is there some quick start guide as to where to go from this point? The wireless users are mostly mini netbooks and iPads.

Well, I'm no expert, but I did spend the night...
Ok.  In the WCS on the Services tab, Mobility Services, your MSE is recognized and reachable with matching SW Versions.
So, on the home tab, ContextAware tab, you see your MSE and it is showing Zero's  for data in most if not all fields?
Back to the Services tab, Synchronize Services...  is this empty?
The MSE can only 'SEE' what you tell it to 'LOOK' at.  That is, buildings and floor areas.  I haven't tried just a building.
Check the left hand box for all the floor areas of interest.  Scroll to the bottom an slect 'Change MSE Assignment"
select which (of the many or the one) MSE you wish to have monitor the area.  Check the 'CAS' box and save.
Up on the upper levt is a Synchronization block..  push the Synchronize button and sit back..
All MSE data is presented only to the WCS (or Pi).
Good Luck
David

Similar Messages

  • HELP! I'm new at this and need some help getting started

    I am currently working on our website and was wondering how do I make a new page?
    for example.
    I want people to click on a link on the homepage to say a stockist list and see another page open with that information on.
    Also I need to know how to make the homepage have white strips on the left and right (for an example of what I mean please visit www.internationalrobes.com)
    I look forward to your replies!
    Carly

    Well, these are more web design related questions, but I will help as much as I can in the context.
    Going about adding a page:
    1) Navigate to Admin > Layout > Static pages
    2) Add a new static page here and enter your content
    3) Once it is saved, you should see an eyeglasses icon next to the page and you can copy that url and use it in a link.
    4) For example
    <a href="common/pagedetail.aspx?PageCode=test">My link here</a>
    As far as the white stripes, I think you mean centering a page?
    1) Edit the main master page under your theme
    2) Center the content using css, more info here: [http://www.thesitewizard.com/css/center-div-block.shtml]
    I think you would also benefit from the WebEx i created on implementing a layout into Webtools available here: [http://www.businessoneecommerce.com/developerdownloads/Implementing_a_Webtools_Theme.zip]

  • Need some help getting started

    This is my occi.c (test file)
    #include <occi.h>
    main()
    printf("hoho");
    Compile it
    gcc -I /u01/app/oracle/product/10.1.0/db_1/rdbms/public/ occi.c -o occi
    In file included from /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occi.h:39,
    from occi.c:1:
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:125:18: string: No such file or directory
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:129:18: vector: No such file or directory
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:134:16: list: No such file or directory
    In file included from /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occi.h:39,
    from occi.c:1:
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:145: error: syntax error before "oracle"
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:145: error: syntax error before '{' token
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:272: warning: data definition has no type or storage class
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:273: error: syntax error before "EnvironmentImpl"
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:273: warning: data definition has no type or storage class
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:274: error: syntax error before "Connection"
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:274: warning: data definition has no type or storage class
    /u01/app/oracle/product/10.1.0/db_1/rdbms/public/occiCommon.h:275: error: syntax error before "ConnectionImpl"
    There is a lot more of the error messages.
    What am I doing wrong? Or rather what is wrong? In this example I only include the header file and get lots of errors.
    Message was edited by:
    Marius

    I think I found the mistake, at least it feels that I'm closer:
    [oracle@akurei master]$ g++ -I/u01/app/oracle/product/10.1.0/db_1/rdbms/public/ -L/u01/app/oracle/product/10.1.0/db_1/lib -l occi10 occi.c -o occi
    occi.c: In function `int main()':
    occi.c:5: error: `Environment' undeclared (first use this function)
    occi.c:5: error: (Each undeclared identifier is reported only once for each function it appears in.)
    occi.c:5: error: `env' undeclared (first use this function)
    occi.c:5: error: `Environment' has not been declared
    occi.c:5: error: `createEnvironment' undeclared (first use this function)
    occi.c:6: error: `Connection' undeclared (first use this function)
    occi.c:6: error: `conn' undeclared (first use this function)
    occi.c:9: error: `Statement' undeclared (first use this function)
    occi.c:9: error: `stmt' undeclared (first use this function)
    occi.c:32: error: `Environement' has not been declared
    occi.c:32: error: `terminateEnvironment' undeclared (first use this function)
    With this file:
    #include <occi.h>
    main()
    Environment *env = Environment::createEnvironment();
    Connection *conn = env->createConnection("marius","passord","orcl");
    env->terminateConnection(conn);
    Statement *stmt = conn->createStatement("INSERT INTO test(empno) VALUES(:1)");
    int empno = 2;
    stmt->setInt(1,empno);
    stmt->executeUpdate();
    Environement::terminateEnvironment(env);
    I do not understand why environment is not declared. I though it should be as it is included through occi.h that include occiControl.h where it is declared.
    Can anyone point me in the right direction.

  • Need some help getting my G5 "SCSI" compatible

    Aloha:
    I need some help getting my G5 to work with my SCSI scanner.
    It has been suggested that I use an Adaptec PowerDomain 29160N to connect my Lacie SilverScanner III scanner, which is SCSI.
    http://www.adaptec.com/en-US/products/mac/scsi/APD-29160N/
    Does anyone have any experience with this unit or another SCSI adaptor that may be of help.
    I have a G5 using OS 10.4.8
    Any help would sure be of use!
    Thanks
    Dan Page
    Maui, Hawaii

    Dan Page-
    I've not used this card, but a quick scan of the web page says that it is compatible with Mac OSX 10.3.X. You may want to contact them to verify that it will work with your system.
    Luck-
    -DaddyPaycheck

  • Help Getting Started with the Zen Vision:M (Z

    Hi,I just got my ZVM and want to get started with it. I have a couple of questions, first:?. I have Windows Vista. Can I just plug in the ZVM and go without using the Installation CDs? Or do I still need to install something off of the installation discs?2. Why 2 installation discs? There is with a black cover that says Easy Start CD and has the Urge and Window Media Player logo at the bottom. The other is just in a plain white bordered sleeve with a light colored disc that says Zen Vision: M Installation CD at the bottom. I think I want to start with the light colored disc, but want to make sure. Thanks.

    I think that the White disk that says Zen on it is the one you want it has Creative Media Source on it and is a very useful tool for me, the other disk has Windows Media Player on it and will also install a connection to a website that you can purchase tracks from (which i took off as soon as i found this out) not the WMP though, for some reason i could not get my Zen to work properly without the WMP loaded on my pc, however i use the Creative Media Source instead of the WMP.

  • Beginner! Need help getting started with recording music.

    I am the definition of 'new' at the moment. I want to record my own music at home and I've been told that using an Apple Mac is one of the better ways to go about it at home.
    I have a number of questions, most of which have probably been asked before (apologies!) starting right from the beginning.
    1. What type of Mac would be best suited as a dedicated tool for recording music? Obviously speed and memory are big factors, but are there any other considerations here (available inputs, drivers, sound cards etc)? I'm hoping to keep the cost below AUS$3000 if possible.
    2. Do i need any other hardware for this application? (this is where you can tell how inexperienced I am haha) such as mixers etc? If I should need a mixer, is there a particular type or brand of mixer that works well with Macs?
    3. Will plugging a guitar amp into the mac improve sound quality over plugging the guitar directly into the Mac? I bought a Griggin Garage Band guitar cable a while ago to record some background music for a friend's DVD, and I found it worked well, but I'm looking for the best quality sound now.
    4. What would be the most effective software to use? I've briefly used Garage Band and found that to be simple and useful, but I've heard that there are better software packages available.
    I'm hoping to be able to record guitar, bass and vocals directly on to the Mac, and create drum tracks using samples and loops. I know how to play music but as you can tell I know very little about recording it! Any help or suggestions would be appreciated!
    Thanks..

    I would presume one line level input will suffice?
    Close, you need a Line Level AND Mic Level input since you'll want to record vocals.
    Thanks for the link to your Q&A page, I found some very useful info there.
    It's showing its age, and will hopeful get updated soon, but most of the info is good at least for a background.
    Anyway, I think I might recommend this Presonus INSPIRE over the FireBox, it'll save you about $100 and since PreSonus makes excellent equipment (and we have an active member here that uses the Inspire), I'm confident that it offers great quality.
    I think the firepod that you use looks great, but might be overkill
    I agree, the FirePod would be serious overkill for your needs. Again, an awesome interface, but you'd be paying for all those Mic PREs, and using 1. That wouldn't make sense, and since the FP isn't cheap...
    my talent and engineering knowledge is quite limited
    Then I would strongly suggest GB as the software, and then do lots of reading. The weakest link in music production is your engineering skills. Mixing and Mastering (especially the latter) are art forms. A bad engineer using a $10,000 bit of software and hardware would make a fantastic performance sound like garbage. With good engineering skills you can make a pro recording with GB.
    The learning curve with something like Logic is dramatically increased, and again, without the skills to take advantage of what it offers, your recordings are not going to sound any better. At the very least, start with GB to learn the skills of Recording/Editing/Mixing/Mastering. The "price of admission" is low enough that if in a year you find that you need a feature GB doesn't offer, your money will not have been wasted, it will have been valuable learning time.
    Hope those more specific answers help
    ~~HangTIme [Will Compute for Food] %-)>
    Note: I am an Amazon Associate, if you purchase this item via my link I will get a small commission)

  • Need help getting started with the ML505 Development Kit

    First of all, an admission...I am a newb to the FPGA world. A babe in the wilderness. I am trying to run a simple little logic design to get my feet wet. Four inputs using the WEST, CENTER, SOUTH, and EAST pushbuttons feeding two AND gates which feeds an OR gate which turns on the NORTH LED. I have tried to use the Platform Cable USB to download the project to the XCF32P Platform Flash PROM using the iMPACT software. As of yet I have been unable to get the program to run. The iMPACT program says the programming was successful but after pressing the PROG button, the DONE LED does not turn on. I've tried different settings with the Configuration Address and Mode DIP switches with no success. To anyone using the ML505, given the gear I have at my disposal, what would you recommend? What modes have you used that worked? Thanks in advance.

    Here is the latest setup I have used in trying to get my FPGA to read from the Platform FLASH PROM. Configuration Address/Mode DIP switches set to 01011001 as per "My Own Platform Image Demonstration" method in the "ML505/ML506/ML507 Getting Started Tutorial" The Platform Cable USB is plugged into the JTAG connector on the ML505. Its status LED is green. In iMPACT the Boundary Scan reveals the following chain... TDI ----- xcf32p -----xcf32p-----xc9s144x1-----xccace-----xc5vlx50t-----TDO   The same mcs file is loaded into both PROMs (xcf32p). I start the programming cycle. It completes and says "Programming Successful" I press the PROG button on the ML505 and the DONE LED does not turn on and the design does not work. With the same chain I add the bit file to the xc5vlx50t so I have the PROMs loaded with mcs files and the FPGA with the bit file. I run the program function again. "Programming successful" is again indicated. The DONE LED lights and the design works. I then press the PROG button. The DONE LED turns off and the design ceases to function. I have also tried this with only one PROM loaded with a mcs file with no success. What am I doing wrong? Am I missing something? Thanks in advance.

  • Business Catalyst Help | Getting started with Business Catalyst

    This question was posted in response to the following article: http://helpx.adobe.com/business-catalyst/using/getting-started-business-catalyst.html

    Hi,
    Welcome to Business Catalyst. 
    From the sounds of your requirement it looks very possible to acheive what you are after with a combination of perhaps APIs and using our import features + custom report generator. 
    Here's a list of our API calls -> http://kb.worldsecuresystems.com/635/bc_635.html
    Also the various import options within BC -> http://kb.worldsecuresystems.com/kb/importing-data.html
    Lastly our custom customer report generator -> http://kb.worldsecuresystems.com/kb/build-customer-report.html
    I would also if you haven't already go ahead and test out BC.  It appears identifiers are what would be "users" having back-end access to the system to either generate a report or email broadcast who may also need to analyze incoming data. 
    If still needing assistance please reach out to our direct support so we can help guide you further if needed.  -> http://helpx.adobe.com/contact.html
    Kind regards,
    -Sidney

  • Help getting started with Aperture

    Hello, Can anyone advise please. I am getting an imac, and have decided to work with Aperture & NIK plug-ins, and also change from NEF files from my D90 to DNG (I have been using Capture NX2, but have run out of patience with Nikon, and can't risk there being no future with Nikon software).
    I understand, or think I do, that I can change NEFs to DNGs within Aperture, and these are converted to TIFFs automatically after work in NIK (kindly correct me if I am wrong).   Also that Aperture keeps the original DNG, which holds any work done in Aperture, plus a TIFF copy that includes the sum of the work done in both Aperture & NIK
    3 questions please if I may:
    1) I wonder if I should do all possible work in Aperture first, so most is in the DNG, and only then open with NIK plug-in(s), at which time the TIFF is produced. Does this really matter, and is there any benefit/need to do any work, such as sharpening/noise reduction in NIK first, or could this sort of thing be done after working in Aperture - just keep hearing of importance of staying RAW as much as possible, so worried about going straight to TIFF and then doing ALL the editing in TIFF format
    2) In nikon View/NX2 I have been used to (and like) seeing my folder tree. I currently make folders for each different location I shoot at, Then sub-folders titled with date yymmdd and location name again + numbered 001,002 etc.
    Could/should I either a) have Aperture do this so I can easilly find/see my folders, and /or b) and/or copy my photos to manually made folder tree on my desk top or wherever on mac hard drive, and then copy or move from there into Aperture (or can Aperture be just 'pointed' to the folder tree
    3) Can you suggest best way for me to move files from either view nx/nx2, or from external hard drive where I have copies of my NEFS
    I appreciate your help, so I can get going with Aperture and my imac, Thanks

    I understand, or think I do, that I can change NEFs to DNGs within Aperture
    No you need to convert to DNG before importing into Aperture. But way are you converting, doesn;t Aperture handle the RAW files from your camera? I'm pretty sure the D90 is supported.
    When you edit an image using an external editor or plug-in Aperture creates a separate 'master' image and sends that to the external program. I the case of NIK plug-ins I do believe they work in TIFF. When the external program is done that 2nd image is stored in the Aperture library.
    To question 1, I would do the initial work in Aperture and then work in the external program.  I figure I want the best possible image to work on with the external app.
    For question 2 you will need some time to learn the layout and workings of the Aperture library. You will need to decide if you will be using a managed or referenced scheme for your masters. There are many good posts here on this subject. Look for posts by Kirby Krieger specifically he's covered these questions in depth.
    Not sure about 3 are you asking how to get your images into Aperture? Or something else?
    good luck
    regards

  • Need some help getting my iTunes over to my new Mabook pro

    Hi:
    I am trying to populate the iTunes application on my new laptop with my song from my G5 desk top. I failed trying to burn the songs to a DVD. I needed three dvd's to hold all my songs. The process failed on disk one. But it did totally fill the disk with something as the is now worthless. it is not recognized by iDVD.
    Help need some ideas.
    Thanks
    Dan Page
    Maui, Hawaii

    Hi:
    Thank you for the reply, most appreciated.
    Did you burn as a data disc? Yes, I used iTunes "file/back up to disc".
    Why are you using iDVD to import you music?
    I had to use a DVD because I have many songs.
    The only error I got was that the first of three DVD's was not usable. I did not burn the next two.
    Thanks
    Dan Page

  • HELP GETTING Started with Sun Access Manager without TEARS.

    I am new to Sun Access Manager.
    I am quite familiar with how Sun Java Identity Manager works.
    The following is the issue I am facing.
    I've downloaded the following images from the sun website
    java_es_05Q4-ga1-solaris-x86-1-iso
    and
    java_es_05Q4-ga1-solaris-x86-2-iso
    I've installed the components on sun solaris 10
    The following components were installed
    /opt/SUNWcomds
    I am not sure what this is for
    /opt/SUNWdsvmn
    I am not sure what it is.
    /opt/SUNWma
    What is this I was expecting SUNWam the access management software!
    /opt/SUNWwbsvr -- This is the Web Server.
    I know how to use it.
    Can anyone tell me on how to go about it?
    Is there any online tutorial for the same.
    What is the difference between sparc version and x86. Can i use any of these on solaris 10?
    Anyhelp getting started would be highly appreciated.
    I am looking at doing the following things.
    ssl,fed, auth, custauth etc
    Thanks a ton in Advance.
    Regards,
    Vinod

    I documented my installation procedure for Access Manager 7.0 (2005Q4) and Portal 7.0. Take a look at my wiki page:
    http://wiki.its.queensu.ca/display/JES/Access+Manager+installation
    It's a two node Access manager Legacy site and I also implemented session-failover using Message Queue and Berkeley Database.

  • Need some help getting iTunes installed

    I already know that I have a problem installing iTunes and its during the "publishing product information" part of the installation. I got my hands on a Windows XP Home Edition disc . . . I attempted to do the installation repair . . . part way through it I was asked to give the "administrators password" . . . this I do not know. After the third wrong password I was told that I needed to reboot and start over. I am trying to avoid the re-installing windows b/c of all the factory crap that I have on this comptuer.
    Is there anyone out there that can break this down to me big bird and barney style?? I have been on the phone waiting to talk to someone at compaq from more than 80 mins now!!
    Thanks
    Puck

    hi puckusmc!
    I attempted to do the installation repair . . . part way through it I was asked to give the "administrators password" . . . this I do not know.
    okay, it sounds like you've already found the correct KB doc for the "vanishing installation" problem:
    http://docs.info.apple.com/article.html?artnum=300361
    ... so you're on the right track.
    what administrative rights do you have on that PC?
    if you don't have administrative rights, can you contact the administrator to get them to do the install for you?
    love, b

  • Newby...need help getting started with 80g

    ok...
    with 30gb ipod video i could connect to any type of computer pc or mac and upload music...
    with the ipod classic is it one or the other...

    17 hours??! Just to do the factory restore? Or does that include repopulating an 80Gb library. Either way it still sounds excessive to me. I take it you have USB 2.0 and a broadband net connection. I'm sure I've seen some postings about moving from PC to Mac elsewhere in the forums. You might want to track these down for useful advice before commiting to such drastic action.
    Restoring will wipe the hard drive of the iPod removing all content so be sure that there is nothing you want on the iPod that you don't have backed up somewhere else before you proceed.
    tt2

  • Need Help Getting Started with New iPod

    I already had an 8g iPod, however, I just purchased a 64 on Amazon ... it was new but open box.  I hooked it into my computer and the only thing that shows on the screen is the power chord pointing up to iTunes.
    I have reinstalled iTunes, but my system will not recognize this iPod, nor can I get to any other screens on the iPod.
    Can someone please provide some direction?
    Thanks much!
    Shelli

    Start here:
    iOS: Device not recognized in iTunes for Windows
    The Users Guide is noice to have too.
    iPod touch User Guide (For iOS 5.0 Software)

  • New to sun/unix need some help getting my solaris express developers workin

    well it installed, detected my dvd but during the install process I was not asked any networking questions. I figured perhaps it meant I had to configure that after the fact but alas it says the network admin can't configure the network because the network auto-magic is configured. whatever that means...well I guess it means my ethernet was not found? also a right click screen resolution only gives my 50hz refresh rate and 640x480 so I am guessing that means my video card is not detected either? I have an asus 800se motherboard with built in graphics and ethernet so I guess I will need to get 2 pci cards?
    well if so I started to look at the very large hardware list and my head started spinning. so my question is...can anyone here suggest both an older video and ethernet card that I might say be able to find on ebay? because I really don't need anything fancy I am must out to learn sun...old but good and reliable???
    thank you.

    extendedping wrote:
    well it installed, detected my dvd but during the install process I was not asked any networking questions. I figured perhaps it meant I had to configure that after the fact but alas it says the network admin can't configure the network because the network auto-magic is configured. whatever that means...Please see the rest of the message on the network issue:
    Please see the nwamd(1M) manpage for more information on
    how to configure the system in this operational state.
    More information is also available at:
    http://www.opensolaris.org/os/project/nwam/phase0/
    Did you do a "man nwamd" to see the instructions on what you can do?
    -- Alan

Maybe you are looking for