How to monitor GPS Receivers of logged-in registered users 24x7 ?

In the web server application, many users are registered. During the registration process application gets the unique ID of user's GPS Device and also user's mobile number. There will be a midlet installed in each and every registered user's mobile/PDA.
How can the server-side application be made to fetch the GPS data (longitude/latitude/speed of movement) in NMEA standard from the registered user's mobile very periodically ?
The midlet can be made to send the GPS data via SMS to the application running in web server.
demerits:
1.user will be forced to pay for each and every SMS, sent through GPRS to the web server.
2. the time took by SMSC (Short Message Service Center) to transfer the SMS from mobile to the web server might be long
3. Since it uses WDP protocol which is built on top of UDP, messages might be broken
I'm aware that any registered user can be tracked through LBS (Location Based Services) and also through user's Mobile Service Provider. I'm trying to track the registered user only with the help of user's GPS Device.
Are there any possibilites to establish connection between J2SE/J2EE application and a satellite receiver, and then get the GPS parameters of a specific GPS receiver?
Is it possible to determine the name/location of a satellite for a specific region so that it can be queried for GPS parameters of a specific GPS device?
If yes, how it can be accomplished?
PS: When the registered user invokes midlet, he/she knows that he/she will be tracked by the remote application. User will be tracked one and only if that specific midlet is invoked explicitly by the user.

Hello Sagar,
You have to write an application in that u have to use the follwing code
<i>Step 1:</i>
import the Files like
<b>import com.sap.security.api.IUser;</b>
<b>IPortalComponentRequest request = IPortalComponentRequest)this.getRequest();
IUser usrSO =request.getUser();
strSOID = usrSO.getUniqueName();</b>
<i>Step 2:</i>
Create a table at DB with the fields like userid Time and required filelds...
<i>Step 3 :</i>
Deploy your application and create a iview from PAR
then create a invisible iview or attach the iview at the end of the page and attach this in every user role
when the user logged in auto matically his ID will stored in the DB..
Try to attch this iview in visible mode into System Admin role ..see the Number of users logged in
But u have to write a efficient application for this
Don't forget to award points ....
Sreedhar G

Similar Messages

  • How to get password of a logged in portal user in webdynpro.

    hi,
    i want to get the password of the logged in portal user through webdynpro. i already know how to get the user id and other information through webdynpro (using WDClientUser), but i want to get the password as well.
    this is an urgent requirement. Immediate help will be highly appreciated and points will be awarded for helpful answer.
    thanks in advance.

    Hi
    User Management APIs don't give the liberity to obtain the password, instead you can verify a password. Please check if your requrirement can be modified to check for password.
    Please use code mentioned below and the one suggested before.
    loggedInUser = WDClientUser.getCurrentUser();
    user = loggedInUser.getSAPUser();
    if (user != null)
    IUserAccount[] acct = user.getUserAccounts();
    if(acct[0] != null)
    b = acct[0].checkPassword(password);
    Thanks
    Srikant

  • How to Monitor the size of log file (Log4j) During its Generation.

    i have made a program using log4j technology. Now i want to know that is there any method that i can restrict the size of the log file. for example if the size of generating log file exceeds the restricted size then it should be placed in backup and a new file should be automatically generate and remaining contents should be written in that file.
    is there any method that can monitor the size of file during the generation of that (say) log file.
    Waiting for ur Urgent response

    I have wrote that code
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
    <appender name="appender" class="org.apache.log4j.FileAppender">
    <param name="File" value="c:\\abc.txt"/>
    <param name="MaxFileSize" value="100B"/>
    <param name="MaxBackupIndex" value="3"/>
    <param name="Append" value="false"/>
    <layout class="org.apache.log4j.SimpleLayout"></layout>
    </appender>
    <root>
    <priority value ="debug"/>
    <appender-ref ref="appender"/>
    </root>
    </log4j:configuration>
    When i run it it gave me error Message
    log4j:WARN No such property [maxFileSize] in org.apache.log4j.FileAppender.
    log4j:WARN No such property [maxBackupIndex] in org.apache.log4j.FileAppender.

  • How to monitor the successful archive log shipment to the standby database

    Hello,
    From the primary database, which data dictionary do I view to get information whether the standby database has received and processed the archive logs from the primary database. Both databases are 11202 on linux. Another question, which views on the primary database contain a flag sent by the standby database to the primary database to let the primary database knows that the standby database is up and functional? My purpose is to query the primary database for infomation that tell me the standby database is alive and functioning. I want to only query the primary database for these information about the standby database. Thank you in advance.

    watson2011 wrote:
    Hello,
    From the primary database, which data dictionary do I view to get information whether the standby database has received and processed the archive logs from the primary database. Both databases are 11202 on linux. Another question, which views on the primary database contain a flag sent by the standby database to the primary database to let the primary database knows that the standby database is up and functional? My purpose is to query the primary database for infomation that tell me the standby database is alive and functioning. I want to only query the primary database for these information about the standby database. Thank you in advance.You can troubleshoot standby by views as
    v$managed_standby (standby)
    v$dataguard_status
    v$dataguard_stats
    Some of the new views are introduced from 11g, check below link too
    http://docs.oracle.com/cd/B28359_01/server.111/b28294/views.htm#i79129

  • How can i store latitude and longitude (of registered user locations) in sql server and how can i query it for finding locations inside X radius from point y (or any user)?

    Hello
    In my app (WP 8.1) i have to store user location (lat,lon) in sql db so how can i store that location detail? And i also have to find all the location which are inside certain radius X from another user location, How can i do this?
    Any Sample project or code or any blog post?
    P.S. I use sql server 2012.

    If you need to do spatial queries like the one you mentioned you'd need to store it as a spatial geography type. For points, a simple SQL INSERT statement using the Point() method would do it. Example here:
    http://msdn.microsoft.com/en-us/library/bb933811.aspx For locations inside a radius, you'd use STDistance() method. All of the methods for the geography data type are documented here:
    http://msdn.microsoft.com/en-us/library/bb933802.aspx and can be used in ordinary T-SQL statements.
    If you need to use the SQL Server spatial library in your .NET application direct, Alastair has some nice blog posts, like this one:
    https://alastaira.wordpress.com/2011/08/19/spatial-applications-in-windows-azure-redux-including-denali/ , he even wrote a book. Or search the answers in this forum.
    Hope this helps, Bob

  • How do I add a NAS as a registered user and not a guest?

    I have just bought a lenovoez media and backup center.
    I have a time capsule which it is plugged into, it shows up and I am writting all my files to it now. However it is on the shared network as a guest and not as a registered user like the time capsule.
    I am being asked my password but it wont accept it.
    Any help or ideas?
    Philip

    I presume you are on Mavericks?
    Is the firmware of the NAS rated for 10.9 ?? When I checked it was only up to 10.8 and there have been changes.
    Changing permissions on network drives is not that easy.. it is by nature a Guest device unless you create a folder with a proper use name and password.
    Asking for username is just Mavericks being stupid, if that is what you use.
    Simply mount the disk manually.
    As SMB2 is often broken.. the recommendation I have seen is to mount it CIFS  so in Finder, Go, Connect to Server.
    CIFS://NASname or you can use its IP address.
    You will then be asked the password. I have no idea what a guest account password for this device is. Often just type in admin will keep things happy.. or actually set a password.
    Good luck.

  • How to monitor user logs,security logs,trace file,and performance monitori

    Hi guys,
    pls tel me how to monitor user logs,security logs,trace file,and performance monitoring.
    thanks
    regards
    kamal

    Hi,
    you can have a look in the Netweaver administration :
    http://<portal>:<port>/nwa
    Go to monitoring, Java system reports, etc..., you will find what you want.
    Fabien.

  • How do I monitor the number of logged on users in EP6.0 SP11?

    Hi folks,
    We are on SAP Enterprise Portal 6.0 SP11.
    I want to know the procedure by way of which I can monitor the number of logged on users in the Portal. Again, the logged on users can mean two things:
    1) Number of unique users at any given time
    2) Number of user sessions at any given time
    Now, here are certain things I know:
    1) EP6.0 SP2 had the Logged On Users iView. It's taken out in SP11 though.
    2) The Portal Activity Report can be used for this purpose in SP11. However, we don't have any plans to implement that right now.
    3) The Visual Admin can be used to monitor the user sessions and I am fine with that. However, my requirement is to collect user-load metrics every hour and I cannot really afford to monitor the Visual Admin that frequently.
    4) If I use the J2EE Telnet Admin, I can come to know the number of user sessions.
    As is apparent, I have no trouble getting the total number of user sessions. So, I guess the real question is - Is there any way by which I can know the number of unique users that are logged on to the Portal at any given time?
    Kindly let me know if there is a way for that (other than maybe the Portal Activity Report), and I promise to reward generously
    Thanks in advance!
    Regards,
    Sagar

    Hello Sagar,
    You have to write an application in that u have to use the follwing code
    <i>Step 1:</i>
    import the Files like
    <b>import com.sap.security.api.IUser;</b>
    <b>IPortalComponentRequest request = IPortalComponentRequest)this.getRequest();
    IUser usrSO =request.getUser();
    strSOID = usrSO.getUniqueName();</b>
    <i>Step 2:</i>
    Create a table at DB with the fields like userid Time and required filelds...
    <i>Step 3 :</i>
    Deploy your application and create a iview from PAR
    then create a invisible iview or attach the iview at the end of the page and attach this in every user role
    when the user logged in auto matically his ID will stored in the DB..
    Try to attch this iview in visible mode into System Admin role ..see the Number of users logged in
    But u have to write a efficient application for this
    Don't forget to award points ....
    Sreedhar G

  • How to monitor OSD TS failure and get alert or report?

    How to monitor OSD TS failure and get some alert or generate an report?
    We have SCCM 2012 R2 CU1 with MDT 2013.
    I have checked the OSD reports in SCCM and everyone is emty, where do SCCM get data to the what to activate?
    (I thinking of "Task Sequence - Deployment Status" reports)
    I am not sure people read report manually or lock at the MDT monitor view. So best I think that generate an email or incident in Service Manager when an TS fails.
    We do have SCOM, SCSM, SCO.
    Is there anyone that can point what way or what option I have?
    /SaiTech

    Specifically you could use this Status Message Query syntax to monitor your Task Sequences for errors:
    select stat.*, ins.*, att1.*, att1.AttributeTime from SMS_StatusMessage as stat left join SMS_StatMsgInsStrings as ins on stat.RecordID = ins.RecordID left join SMS_StatMsgAttributes as att1 on stat.RecordID = att1.RecordID inner join SMS_StatMsgAttributes
    as att2 on stat.RecordID = att2.RecordID where att2.AttributeID = 401 and att2.AttributeValue = "DOJ200A1" and stat.SiteCode = "DOJ" and att2.AttributeTime >= ##PRM:SMS_StatMsgAttributes.AttributeTime## order by att1.AttributeTime desc
    Just replace DOJ200A1 with the Deployment ID of your Task Sequence and DOJ with your SiteCode.
    If you want to generate an alert if the TS fails then you could run a script that calls a utility (or similar) which sends a pre-configured email to a specified address (as an alternative to Torten's response). This could be placed in the built in error
    logging section of the SCCM integrated MDT Task Sequence when it fails which I assume you are using (right at the bottom, called Gather Logs and StateStore on failure).
    There are heaps of ways of generating an email from a TS and controlling error logging just do a search - as you have Service Manager you could even use your instance of Orchestrator and call a run book in your TS which does the email?
    Cheers
    Damon

  • How to monitor disk space in BW

    can some body help me out on the following issues.
    1)How to monitor disk space in BW?
    2)How can I delete Application logs in BW?

    When I research with DB02 transaction code in BW, I encountered following tables having lot of log , please some body can help me, how to delete the following log data?
    ARFCSDATA     ARFC Call Data (Callers)          
    BALDAT          Application Log: Log data     
    BSRWBSTORE     Storage for binary large objects (Excel)

  • How to monitor RFC processing in XI

    Hi Friends,
    In the IDoc to RFC scenario please tell me How to monitor RFC processing in XI..
    Thanks and Regards
    Sri

    Sri,
      You can monitor in SXI_MONITOR/SXMB_MONI. If its Syncronous then u can see the request and response messages in the above mentioned transaction.
      To get more details you can go for RWB and select ur message and check for audit log's.
    Best regards,
    raj.

  • How to monitor page hit rates?

    I see a lot of references in docs and white papers to cache hit rates for the Parallel Page Engine, but I've not found any documentation on how to monitor this system-wide (only how to turn on portlet statistics and get a manual page-by-page look at cache success/failure).
    Is there any way to determine the cache hit rate for the PPE?

    Stephen,
    I'm sorry you seem to be experiencing some problems with the support and documentation of the portal software.
    The link above was posted on May 1st 2002, and was posted as an absolute link rather than a dynamic product link. As the document name is revved the link will change, hence why an old link from the forums will no longer work.
    The document you seek is here. I assume that by referring to webcache you mean that when you add the XLF logging format options webcache complains about x-ecid (for example). This indicates that you have not applied the core iAS patchset which is required to allow webcache to understand these extended log parameters. I believe that the document refers to this as a requirement to get 'full functionality' - perhaps that is a little esoteric, I'll change it in the next rev.
    If you continue to be unsuccessful in deploying this note please let me know what errors you're seeing and I'll see what I can do. I'm working on an end-to-end performance kit at the moment that will supercede this document so I'll take your comments on board when revving this area.
    Regards
    Jason Pepper
    Principal Product Manager
    Oracle9iAS Portal

  • How to monitor SQL Apply for 10.2.0.3 logical standby database

    We have a logical standby database setup for reporting purposes. Users want to monitor whether sql apply is working or failed closely as it has reporting repercations.
    In case of 9i databases , there was "Data Not Applied (logs)" metric which we used for alerting and paging, in case a backlog of more than 5 log files developed.
    With 10.2.0.3 onwards, the metric no more exists.
    I would like to learn from other, how to monitor the setup, so that if the backlog in logs shipping or applying develops, we get page.
    Regards.

    regather the statistics on the table with method_opt=>for all columns or for all indexed columns or whatever size 1
    The 'size 1' directive will remove the histogram statistics.
    Sorry, didn't read ur post in a hurry. Below article (http://www.freelists.org/post/oracle-l/Any-quick-way-to-remove-histograms,13) removes histogram without re-analyzing the table. Hope that helps!!!
    On 3/16/07, Wolfgang Breitling <breitliw@xxxxxxxxxxxxx> wrote:
    I also did a quick check and just using
    exec
    dbms_stats.set_column_stats(user,'table_name',colname=>'column_name',d
    istcnt=>
    <num_distinct>);
    will remove the histogram without removing the low_value andhigh_value.
    At 01:40 PM 3/16/2007, Alberto Dell'Era wrote:
    On 3/16/07, Allen, Brandon <Brandon.Allen@xxxxxxxxxxx> wrote:
    Is there any faster way to remove histograms other than
    re-analyzing
    >
    the table? I want to keep the existing table, index & columnstats,
    >
    but with only 1 bucket (i.e. no histograms).You might try the attached script, that reads the stats using
    dbms_stats.get_column_stats and re-sets them, minus the histogram,
    using dbms_stats.set_column_stats.
    I haven't fully tested it - it's only 10 minutes old, even if Ihave
    slightly modified for you another script I've used for quite some
    time - and the spool on 10.2.0.3 seems to confirmthat the histogram
    is, indeed, removed, while all the other statistics are preserved.I
    have also reset density to 1/num_distinct, that is the value youget
    if no histogram is collected.regards,
    naren
    Edited by: fuzzydba on Oct 25, 2010 10:52 AM

  • How to monitor idoc in PI

    Hi Gurus,
    how to monitor idoc and how many IDOC s come to in XI /PI ?
    Regards
    sreeni

    Hi Sreeni,
    How to monitor the idocs:
    To monitor the idocs we have many transactions in R/3
    we02: Gives the list of idocs based on your selection criteria
    we05: Gives the list of idocs based on your selection criteria
    BD87: List of idocs which are ready to be sent out of R3
    SM58: If the idocs are sent out of R3 but still in the TRFC queue
    Coming to XI/PI:
    You can check the idoc in trnsaction IDX5 which is the idoc mionitoring tool.
    How to check the count of idocs in XI/PI:
    The direction of the IDOCs which are sent out of R3 is always 1. Hence if you can go to transaction we02 and give the appropriate selection parameters and select direction as 1 you would get all the IDOCs sent out of R3 to respective receivers.
    Hope this helps.
    Regards,
    Sarvesh Desai

  • How to monitor sigtran links on a 7604 using mibs

    I've been looking the manuals but I was not able to find how to monitor sigtran links using mibs on a 7604.
    Some Cisco manuals points to URLs that doesn't exist. I would like also to know how to create traps about theses mibs.

    Simply do your integration as instructed by the guides, make sure all user/device/line associations are in place, add someone who doesn't have Jabber to your contact list, he will always show offline and will only show as on a call when he pickups the handset.
    EDIT: this will also happen for people who DO use Jabber, but do not log in.

Maybe you are looking for

  • Deploying ear file to glassfish server

    Hello Frnds, I am trying to deploy my ear file to glassfish server and i am gettin the following error. Can any one tell me having any idea on this.? Message ID  Exception occured in J2EEC Phase com.sun.enterprise.deployment.backend.IASDeploymentExce

  • 32bit client on windows 2003 server R2 64bit running oracle 10g release 2

    Hello, could you please help me ? I have a windows 2003 r2 sp2 64 bit server on witch oracle 10g release 2 64 bit is installed. So far no issue. I need to have a 32bit client installed on the same server to be able to run some applications on the ser

  • Plug in guitar on iPad 3 but have no sound ?

    I've plugged in with a big jack to headphone jack converter, then selected a guitar amp. The guitar is being picked up as I have recorded a few bars, however I have no way to hear the guitar until after it has recorded ? The headphone input seems to

  • OBIEE 11g SSO using OAM and AD (authentication provider)

    Hi I am authenticating my OBIEE users thru Microsoft Active Directory and it works fine. I would like to set up sso, so as to achieve seamless navigation from my Peoplesoft system to OBIEE. If anyone has done this before, then could you point me to s

  • Ipad mini USB error into MPB

    I get this warning now when I try and sync my ipad or anything that involves plugging it in to the laptop. Because a USB device was drawing too much power from your computer, one or more of your USB devices have been disabled. To prevent damaging you