CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: ajax pc mobile

  1. #1
    Join Date
    Sep 2009
    Posts
    3

    ajax pc mobile

    Hello, my name is Leo and I need to know if i can use ajax to do the following

    i connect my mobile to my computer. i launch an app on my computer. i enter my login info. i click connect and i see "Connecting..." <= What happens is that the application connects to my mobile and retrieves a list of pictures from my picture AND retrieves a list from a webserver. left column is webserver list. right column is mobile list. column in between tells me if they match or not. if they dont match i click on update and the pic from the webserver that doesnt match the one in my phone will be downloaded to my phone. The criteria for deciding if they match or not is DATE MODIFIED. nothing related to image processing. just a tag. Obviously the older one will b replaced with the latest copy.
    Also, this application will allow me to browse through the list of pidcs i have in my cellphone, sort them, and search.
    This leads to my guess that my mobile will have to have some application with a directory of its own that will store these pics in it. they shouldnt b in the images section of a cellphone where ur pics get stored in when you take a pic or recieve one. UNLESS my app can access that public section and only show me pics with particular tags or file extensions.
    Which brings me to my final function. The mobile app i just mentioned should also allow me to browse, sort, and search for my business cards without connecting it to the pc and doing it from the pc. Also, i should b able to send pics from my cell to someone else's cell who obviously will have to b using the same app as mine.

    Can I do this with ajax? If not or if i need programming languages to do this, can u plz provide me with some guidelines? thank you.

  2. #2
    Join Date
    Sep 2009
    Posts
    10

    Re: ajax pc mobile

    You could do something like this - atleast pass the names of the files to be syncronized via ajax from one machine to the other and then innitiate a typical download. It seems pretty elaborate to me though... you would need a program running on each machine to send messages back and forther. You would also need to make sure this program could constantly listen for signals from the other device.

    Once either of the devices sends an ajax request (more probably a web service request) to its counterpart the other machine would response and then together they would communicate to diagnose what differences exist and then iniitiate the transfer.

    Obviously I dont want to discourage you from going about this project because it does sound exciting. Be aware though that it would require some decent coding on your part. It will also likely take a nice chunk of time.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured