Is iphone JAVA-capable for Cingular Remote Monitoring?

AT&T/Cingular has a service called Remote Monitor that lets you put up cameras, motion sensors etc at a site and monitor them remotely using the internet or a java-based application that you can download to a Cingular phone. Great for monitoring a 2nd home.
Somehow I don't think it's possible to use the java-based application on the iphone. I may be able to use the Safari connection and use the internet for it, although this is slower and non-dedicated. Does anyone have any experience with this? Is Safari on the iphone capable of viewing live video?

no right now you cant but this would make a great thrid party app from Apple for the iPhone... Suggest it
Apple strives to bring the best personal computing experience to students, educators, creative professionals and consumers around the world through its innovative hardware, software and Internet offerings. Apple welcomes your feedback on its products (in accordance with the Unsolicited Idea Submission Policy). To comment on the iPhone, visit http://www.apple.com/feedback/iphone.html.

Similar Messages

  • Java comm package to remotely monitor a zigbee device

    hai...
    I have a java program to poll a sensor device every 2 min.... The program uses java comm to read and write data to it. I have java servlet program that has to access the serial port at the same time as the polling program to read/write data from it..... I.It works individually....it is not possible to access the serial port at the same time..... Can any time slice help..... or anything which could get it done
    plz can anyone help with it....
    the project has to completed within a week
    Thanks in advance
    smn

    A servlet? Really? And it's supposed to be doing something every two minutes? That's a pretty weird idea to start with. Next you're going to be telling us that it needs to access the serial port on the client system rather than the one on the server. Go on, am I right?

  • Iphone with ios6 as a remote for apple tv - song sometimes skips

    I use iphone with ios6 as a remote for apple tv but sometimes a song skips while playing. What can I do to stop this?  Very annoying as I'd like to use it for a party. Thx

    Sure.
    https://itunes.apple.com/ca/app/remote/id284417350?mt=8

  • Java API for running entire ".sql" files on a remote DB ( mySQL or Oracle)?

    Hi,
    Would anyone happen to know if there's a java API for executing entire ".sql" files (containing several different SQL commands), on a remote database server ?
    It's enough if the API works with MySQL and/or Oracle.
    Just to demonstrate what i'm looking for:
    Suppose you've created sql file "c:/test.sql" with several script lines:
    -- test.sql:
    insert into TABLE1 values(3,3);
    insert into TABLE1 values(5,5);
    create table TABLE2 (name VARCHER) ENGINE innoDB; -- MYSQL specific
    Then the java API should look something like:
    // Dummy java code:
    String driver="com.mysql.jdbc.Driver";
    String url= "jdbc:mysql://localhost:3306/myDb";
    SomeAPI.executeScriptFile( "c:/test.sql", driver, url);
    Thanks.

    No such a API, but it's easy to parse all sqls in a file, then run those command:
    For instance:
    import java.sql.*;
    import java.util.Properties;
    /* A demo show how to load some sql statements. */
    public class testSQL {
    private final static Object[] getSQLStatements(java.util.Vector v) {
    Object[] statements = new Object[v.size()];
    Object temp;
    for (int i = 0; i < v.size(); i++) {
    temp = v.elementAt(i);
    if (temp instanceof java.util.Vector)
    statements[i] = getSQLStatements( (java.util.Vector) temp);
    else
    statements[i] = temp;
    return statements;
    public final static Object[] getSQLStatements(String sqlFile) throws java.
    io.IOException {
    java.util.Vector v = new java.util.Vector(1000);
    try {
    java.io.BufferedReader br = new java.io.BufferedReader(new java.io.
    FileReader(sqlFile));
    java.util.Vector batchs = new java.util.Vector(10);
    String temp;
    while ( (temp = br.readLine()) != null) {
    temp = temp.trim();
    if (temp.length() == 0)
    continue;
    switch (temp.charAt(0)) {
    case '*':
    case '"':
    case '\'':
    // System.out.println(temp);
    break; //Ignore any line which begin with the above character
    case '#': //Used to begin a new sql statement
    if (batchs.size() > 0) {
    v.addElement(getSQLStatements(batchs));
    batchs.removeAllElements();
    break;
    case 'S':
    case 's':
    case '?':
    if (batchs.size() > 0) {
    v.addElement(getSQLStatements(batchs));
    batchs.removeAllElements();
    v.addElement(temp);
    break;
    case '!': //Use it to get a large number of simple update statements
    if (batchs.size() > 0) {
    v.addElement(getSQLStatements(batchs));
    batchs.removeAllElements();
    String part1 = temp.substring(1);
    String part2 = br.readLine();
    for (int i = -2890; i < 1388; i += 39)
    batchs.addElement(part1 + i + part2);
    for (int i = 1890; i < 2388; i += 53) {
    batchs.addElement(part1 + i + part2);
    batchs.addElement(part1 + i + part2);
    for (int i = 4320; i > 4268; i--) {
    batchs.addElement(part1 + i + part2);
    batchs.addElement(part1 + i + part2);
    for (int i = 9389; i > 7388; i -= 83)
    batchs.addElement(part1 + i + part2);
    v.addElement(getSQLStatements(batchs));
    batchs.removeAllElements();
    break;
    default:
    batchs.addElement(temp);
    break;
    if (batchs.size() > 0) {
    v.addElement(getSQLStatements(batchs));
    batchs.removeAllElements();
    br.close();
    br = null;
    catch (java.io.FileNotFoundException fnfe) {
    v.addElement(sqlFile); //sqlFile is a sql command, not a file Name
    Object[] statements = new Object[v.size()];
    for (int i = 0; i < v.size(); i++)
    statements[i] = v.elementAt(i);
    return statements;
    public static void main(String argv[]) {
    try {
    String url;
    Object[] statements;
    switch (argv.length) {
    case 0: //Use it for the simplest test
    case 1:
    url = "jdbc:dbf:/.";
    if (argv.length == 0) {
    statements = new String[1];
    statements[0] = "select * from test";
    else
    statements = argv;
    break;
    case 2:
    url = argv[0];
    statements = getSQLStatements(argv[1]);
    break;
    default:
    throw new Exception(
    "Syntax Error: java testSQL url sqlfile");
    Class.forName("com.hxtt.sql.dbf.DBFDriver").newInstance();
    //Please see Connecting to the Database section of Chapter 2. Installation in Development Document
    Properties properties = new Properties();
    Connection con = DriverManager.getConnection(url, properties);
    Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    //Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
    // stmt.setMaxRows(0);
    stmt.setFetchSize(10);
    final boolean serializeFlag = false;//A test switch to serialize/deserialize the resultSet
    ResultSet rs;
    for (int i = 0; i < statements.length; i++) {
    if (statements[i] instanceof java.lang.String) {
    String temp = (java.lang.String) statements;
    switch (temp.charAt(0)) {
    case 'S':
    case 's':
    case '?':
    System.out.println(temp);
    rs = stmt.executeQuery(temp);
    if (serializeFlag) {
    // serialize the resultSet
    try {
    java.io.FileOutputStream fileOutputStream = new
    java.io.FileOutputStream("testrs.tmp");
    java.io.ObjectOutputStream
    objectOutputStream = new java.io.
    ObjectOutputStream(fileOutputStream);
    objectOutputStream.writeObject(rs);
    objectOutputStream.flush();
    objectOutputStream.close();
    fileOutputStream.close();
    catch (Exception e) {
    System.out.println(e);
    e.printStackTrace();
    System.exit(1);
    rs.close(); //Let the CONCUR_UPDATABLE resultSet release its open files at once.
    rs = null;
    // deserialize the resultSet
    try {
    java.io.FileInputStream fileInputStream = new
    java.io.FileInputStream("testrs.tmp");
    java.io.ObjectInputStream objectInputStream = new
    java.io.ObjectInputStream(
    fileInputStream);
    rs = (ResultSet) objectInputStream.
    readObject();
    objectInputStream.close();
    fileInputStream.close();
    catch (Exception e) {
    System.out.println(e);
    e.printStackTrace();
    System.exit(1);
    ResultSetMetaData resultSetMetaData = rs.
    getMetaData();
    int iNumCols = resultSetMetaData.getColumnCount();
    for (int j = 1; j <= iNumCols; j++) {
    // System.out.println(resultSetMetaData.getColumnName(j));
    /* System.out.println(resultSetMetaData.getColumnType(j));
    System.out.println(resultSetMetaData.getColumnDisplaySize(j));
    System.out.println(resultSetMetaData.getPrecision(j));
    System.out.println(resultSetMetaData.getScale(j));
    System.out.println(resultSetMetaData.
    getColumnLabel(j)
    + " " +
    resultSetMetaData.getColumnTypeName(j));
    Object colval;
    rs.beforeFirst();
    long ncount = 0;
    while (rs.next()) {
    // System.out.print(rs.rowDeleted()+" ");
    ncount++;
    for (int j = 1; j <= iNumCols; j++) {
    colval = rs.getObject(j);
    System.out.print(colval + " ");
    System.out.println();
    rs.close(); //Let the resultSet release its open tables at once.
    rs = null;
    System.out.println(
    "The total row number of resultset: " + ncount);
    System.out.println();
    break;
    default:
    int updateCount = stmt.executeUpdate(temp);
    System.out.println(temp + " : " + updateCount);
    System.out.println();
    else if (statements[i] instanceof java.lang.Object[]) {
    int[] updateCounts;
    Object[] temp = (java.lang.Object[]) statements[i];
    try {
    for (int j = 0; j < temp.length; j++){
    System.out.println( temp[j]);
    stmt.addBatch( (java.lang.String) temp[j]);
    updateCounts = stmt.executeBatch();
    for (int j = 0; j < temp.length; j++)
    System.out.println((j+1)+":"+temp[j]);
    for (int j = 0; j < updateCounts.length; j++)
    System.out.println((j+1)+":" +updateCounts[j]);
    catch (java.sql.BatchUpdateException e) {
    updateCounts = e.getUpdateCounts();
    for (int j = 0; j < updateCounts.length; j++)
    System.out.println((j+1)+":"+updateCounts[j]);
    java.sql.SQLException sqle = e;
    do {
    System.out.println(sqle.getMessage());
    System.out.println("Error Code:" +
    sqle.getErrorCode());
    System.out.println("SQL State:" + sqle.getSQLState());
    sqle.printStackTrace();
    while ( (sqle = sqle.getNextException()) != null);
    catch (java.sql.SQLException sqle) {
    do {
    System.out.println(sqle.getMessage());
    System.out.println("Error Code:" +
    sqle.getErrorCode());
    System.out.println("SQL State:" + sqle.getSQLState());
    sqle.printStackTrace();
    while ( (sqle = sqle.getNextException()) != null);
    stmt.clearBatch();
    System.out.println();
    stmt.close();
    con.close();
    catch (SQLException sqle) {
    do {
    System.out.println(sqle.getMessage());
    System.out.println("Error Code:" + sqle.getErrorCode());
    System.out.println("SQL State:" + sqle.getSQLState());
    sqle.printStackTrace();
    while ( (sqle = sqle.getNextException()) != null);
    catch (Exception e) {
    System.out.println(e.getMessage());
    e.printStackTrace();

  • I would like to know if there is such an app that allows my iPhone to act as a remote for my iPad ie if I'm recording something on my iPad I can use my iPhone to press record/play/pause/forward or rewind my iPad via my iPhone

    I would like to know if there is such an app that allows my iPhone to act as a remote for my iPad ie if I'm recording something on my iPad I can use my iPhone to press record/play/pause/forward or rewind my iPad via my iPhone

    As the King says, if your friends wifi router was relatively new, it likely has not been picked up by Apple's location based information database system and thus there is no location information associated with it.  So your iPad had no way of getting its location.
    The wifi location databases are traditionally updated by wardriving - literally companies employ people to drive around sniffing out active wifi signals and associating an approximate location to it.  Some companies also have web sites to submit that information if owners wish to (Apple does not seem to have one though), and the various companies with wifi location databases buy and sell their information.  Bottom line is though, it can take weeks, months or sometimes even longer for a residential router to get picked up - depends on where you live (more rural, likely the longer time it takes).
    When I moved from VA to NC it took up to 6 months for mine to reflect my new location (I checked it once the week I moved in, and then periodically thereafter, and it finally was getting it right after about 6 months) and I live in a pretty densley populated area (triangle NC).

  • Is there any possibility to develope java application for IPhones

    Is there any possibility to develope java application for IPhones

    921326 wrote:
    Just look to the next thread!I did that after I replied to the last person to ask this question. I spotted this thread:
    Developing iPhone apps with JavaFX 2 (Demo)
    Not much there, but apparently people are trying to hack it together using JavaFX 2 already. I believe I read an article where Oracle itself had given a presentation about a JavaFX2 app on an iPhone; I believe the gist of it is that they want to make it so you can bundle the Java runtime with your application, which makes it legal to sell a Java application through the appstore.

  • Discovering IIS with GC 11g for remote monitoring .

    Hi ,
    I'm trying to take benefit form GC to monitor IIS on some windows server 2003,2008 . The plugin deployed fine with any issue and add local instance for IIS .
    I follow documentation http://docs.oracle.com/cd/E11857_01/install.111/e14543/piiis.htm#autoId7
    for remote monitoring without installtion agent on remote server that have IIS installed .
    The below information has been entered and implemented .
    Name — IIS_INST2
    Host — XX.XX.XXX.XX
    Username — XX\XX
    Password — *******
    Agent Location — remote
    and apply this
    ========================= Link Above ===================================
    Go to the Windows Control Panel and select Administrative Tools, then Services.
    Select the Oracle Enterprise Manager Agent service from the listed computer where the Agent is running.
    Right-click the service, then select Properties.
    Click the Log On tab. By default, this service is started with the Local System account.
    Change the default account by selecting the This account radio button, and provide an account and password that exist on both computer A and computer B.
    Note that the account should be a member of the Administrators group, and the account should have administrative privileges on computer B.
    Click OK, then restart the Agent service.
    Ensure that the Windows Management Instrumentation Service is up and running on both computers.
    =================================================
    The test connection failed with
    target IIS_INST2, microsoft_iis} is broken: cannot compute dynamic properties in time.
    Response - em_error=Could not connect. Error code = 0x80070776 em_error=Failed while connecting to WMI.
    Thank in advance .

    The problem solved . RPC port 135 was closed .wbemtest help me to diagnose problem .
    Just type WMI on my oracle support.

  • IMovie for IOS Cannot export 60p despite iPhone 6 capability to shoot 60p

    Hi,
    iMovie for IOS Cannot export 60p despite iPhone 6 capability to shoot 60p
    I am obliged to use Pinnacle Studio for IOS 8
    I have bought a superb iPhone 6 Plus, shooting in 1080/60p, I cannot edit my clips to build a 60p Master.
    I understand the choice for shared video streams to use 720/30p 5Kb/s from my 1080/60p 25Kbps clips as it has to be streamed even on small PC.
    But if I want a master file 1080/60p at 25Kbps, and send it by mail with the superb new Cloud Mail to my mac mates, I cannot do it
    I need a master hacker to poke this 60 number I nee somewhere into iMovie, it should be somewhere in the compressor frameworks used by iMovie in the app Package for exporting.
    SAME PROBLEM WITH I MOVIE 10.0.6 FOR OSX YOSEMITE,
    Best regards to the community

    I appreciate you taking the time to copy and paste boilerplate responses to increase your points in this forum, but I've already read all those support articles in depth; but you have barely read my post at all. Please don't guess a fix. Only someone with the latest versions of iMovie, iOS, iPhone, Yosemite, and MacBook Pro is qualified to troubleshoot this, because anyone would immediately see that the following option no longer exists:
    Open iMovie on your Mac, and choose File > Import > iMovie for iOS Project.
    Read my post before you reply: It clearly says in the title and within my post that I can neither export nor import through iTunes without receiving an error message. So your response neither solved my question nor helped me whatsoever.

  • I want to be able to monitor my teen daughter's computer from home using screen sharing.  Anyone know how to set up screen sharing when my daughter's school has her computer set up for Apple Remote Desktop?

    I want to be able to monitor my teen daughter's computer from home using screen sharing.  Anyone know how to set up screen sharing when my daughter's school has her computer set up for Apple Remote Desktop? 

    ARD won't be as smooth as you think  over the Internet and be a security risk for your daughter.
    Your best bet would be to install nannyware, then when she's asleep you can review the logs.
    This is the best and Mac friendly
    http://www.internetsafety.com/

  • Everytime I want to remote my itunes from my iphone, itunes search for radio-stream updates. I often use remote when I'm not connected to Internet so itunes tell me that I should connect to Internet. This is new since 10.5. Can I turn this off?

    Everytime I want to remote my itunes from my iphone, itunes search for radio-stream updates. I often use remote when I'm not connected to Internet so itunes tell me that I should connect because the radio-stream update can't be made. This is new since 10.5. Can I turn off the search for Radio-Stream or does someone else has an Idea how to fix the problem?

    weird very weird. today i did this again today after already being unsuccessful earlier. exactly the same thing as i have done before, exactly. didn't try to import. didn't say damaged library, copied everything in including date. have tried it about 10 times no luck. today it just worked.
    how weird is that?
    oh well JG - maybe you mixed a magic potion for me?
    anyway, thank you for all the help.
    to anyone else reading this all i can say is keep trying, you never know. follow the above advice. you may feel exasperated and think you have done it already, but keep trying.
    cheers
    P

  • I'm in need of java runtime for my iphone 4s5.0.1. where could i find it?

    i'm in need of java runtime for my iphone 4s5.0.1. where could i find it?

    Hi.
    JAVA on iOS, I heard that
    iPhone will never support JAVA.

  • AT&T Remote Monitoring

    I have an iPhone 2G and AT&T RM (ATTRM is to remotely monitor your business http://www.attrm.com) To access it on a computer requires Java. They have a mobile version (http://www.attrm.com/mobile) but that is only refreshing images. If someone could make an iphone app (maybe someone from ATT)that would stream live video. Im sure its possible (in C++ or something like that). I mean the iPhone has
    built-in Quicktime. If a Jailbreak solution erupts first, i'm jailbreaking my iPhone (hope i dont have to do something like that). I hope an App for the App Store is made soon.

    Press the ATT button. Watching is in the ATT mode. THe mode must have been inadvertantly changed. The volume works in all modes.

  • Is the iPhone 5 capable of sending and receiving texts via Bluetooth in a ford vehicle equipped with sync with My Ford touch

    I have a new vehicle with  Ford Sync with my ford touch technology and am thinking of getting the iPhone 5 my current phone is not capable of sending or receiving text messages via Bluetooth in my vehicle is the iPhone 5 capable of doing this

    I have iphone 5, and ford scny, everything BUT texting is working.  Siri works good for reading and sending texting.
    I also have ordered BT remote
    http://www.amazon.com/gp/product/B00824948U/ref=oh_details_o00_s00_i00?ie=UTF8&p sc=1
    This has a buttom for Siri so I will not use my phone.  In my state its legal to hold a phone and drive...
    Some people have gotten it work I cannot.

  • Remote monitoe supervisor not appearing in remote monitor window

    Hi All, So I want to use the remote monitor application to monitor either a CSQ or an agent. Setup the CSQ's, agents and supervisors for normal applications and all works fine. I have setup the remote monitor app and I receive the necessary prompts whe I dial it BUT in the remote monitor window, I dont see any supervisors at all - and ideas would be great as its driving me crazy.
    Thanks

    Hi Paul,
    Unique identifier of the user for which the spoken name is to be uploaded.
    Note        The User Id must be numerical.
    Yes it is required to have the Supervisor ID in numbers to be visible under the Remote Monitoring page. For the Test purpose I created multple user with the Supervisor Capability, and only the Supervisors with the numbers in the User ID are visible in this page as seen below.
    Please open the Help for this page on the Remote Monitoring and click on the section "Creating a Remote Monitoring Supervisor" , you will see the above requirement.
    Hope this helps, also please rate the helpful posts.
    Thanks,
    Anand

  • Remote Monitoring System

    Hello Everybody!
    I had been assigned a project on Remote Monitoring System. In this I have to develop a Software in which I can put my software on the server and can put a check on the client side. As well I can communicate with the client by normal messages and by voice messaging. The administrator could be able to have a total control on the client. My project guide had sugested to go for VC++. But I want to ahead with Java.
    So if anybody can help me out how to proceed in Java.

    Lots of ways to proceed.
    One of the easier ways would be to write two programs (client and server) that use sockets to communicate.
    I'd write it something like this:
    Server listens for UDP (Datagram) packets on port X.
    Client sends a packet to server port X, and listens on port Y using ServerSocket.
    Server receives packet and connects to client port Y using Socket.
    They exchange information.
    Once the server knows who the client is (from the UDP packet), you can arrange any other streams you want, including streaming voice data and text messages.
    Look at the java.net classes for a starting point.

Maybe you are looking for

  • Field calculation doesn't auto update

    Hello - I have a complicated PDF Form that has several pages of fields that are totaled and averaged on the last page. I'm using Acrobat X on the Mac. Basically, on the last page there are 2 subtotal fields that are calculated based on other (direct-

  • FIRE WIRE WHAT IS IT??

    HOW DO I KNOW IF MY PC HAS ONE..??

  • Why Albania isn't listed on the iTunes online store?

    I have been using mac products for many years and recently I moved from Greece to Albania for work purposes. When I heard that Albania isn't listed in the iTunes store i couldn't believe it until i saw it my self. Why isn't it listed.. big telecomuni

  • Chinese in jsp

    I have tried to store a chinese character in an array in JSP. It displays unwanted code like ?/. How can I do ? Why ? Thanks a lot. String var = "????"; <%=var%>

  • What exactly is LAME encoding and how would I use

    Just as the topic says Is there a program that'll simplify the process? Is this only used for ripping tracks from a CD? Also, do I have any alternati'ves to Napster with which you can only download WMAs at 28? Are there any music sites out there that