Remote Control App that Doesn't Require Java Server - T-Mobile myTouch 4G Slide

I'm looking for something that emulates touch pad and keyboard but that doesn't require a java runtime on the machine being controlled.
Java is banned from my computer and especially from my media center.
Can someone make a recommendation if this exists?

If it would be possible, it would be the much more ability for a hacking. So, for security reason it's not possible. I develop the android app for remote control windows pc and investigate any ability to do this — it's not possible.

piligrimm said:
it would be the much more ability for a hacking
Click to expand...
Click to collapse
That's what passwords are for.

Related

[Q]Must a WP7 App base on Silverlight?

Can I build non-silverlight UI for WP7?
Or how to use as less silverlight as we can in a WP7 app?
These questions probably sound silly... I am actually thinking about the difficulty of migrating a software from other platform.
Yes, you can code wp7 apps in c# or xna (but xna really only applies to games)
Dyskmaster said:
Yes, you can code wp7 apps in c# or xna (but xna really only applies to games)
Click to expand...
Click to collapse
Thanks~~ but does it means I can use win forms.net or lower api to draw the UI?
cswords said:
Can I build non-silverlight UI for WP7?
Or how to use as less silverlight as we can in a WP7 app?
These questions probably sound silly... I am actually thinking about the difficulty of migrating a software from other platform.
Click to expand...
Click to collapse
RTFM, developer.windowsphone.com is your friend.
There is no WinForms for WP7, it's either Silverlight or XNA, that's it.
perdurabo2 said:
RTFM, developer.windowsphone.com is your friend.
There is no WinForms for WP7, it's either Silverlight or XNA, that's it.
Click to expand...
Click to collapse
Thanks a lot. So I am hoping WP7 to support HTML5... Then I can minimize the part of silverlight.
cswords said:
Thanks a lot. So I am hoping WP7 to support HTML5... Then I can minimize the part of silverlight.
Click to expand...
Click to collapse
If you were going to do an HTML5 app, this would likely live in the browser. I suppose you could do a native app with a webview and do most of your logic in html/css/js but that seems like a convoluted way of doing things.
You can use XNA libraries for user controls. There are a lot of them and some of them are free.
cswords said:
These questions probably sound silly... I am actually thinking about the difficulty of migrating a software from other platform.
Click to expand...
Click to collapse
Just thought I'd mention in case you don't know. Microsoft has put together some resources and documentation to help people convert apps from other platforms (e.g. iOS, Android, WebOS) to Windows Phone.
As an example, see below for Android:
http://windowsteamblog.com/windows_...tise-to-build-windows-phone-applications.aspx
And iPhone:
http://windowsteamblog.com/windows_...se-to-build-windows-phone-7-applications.aspx

[Q] Best architecture for a standalone Windows 7 tablet

We need to develop a standalone application on a Windows 7 tablet (Motion Computing CL900). Initially Java was the language of choice to develop this application. One criteria is that the tablet is not going to be in Wi-Fi range and will have to be on its own in the field.
if I write it in J2EE/JSP, then I would need a servlet container like tomcat loaded on the device itself. Or I think I could go the Swing route to make it standalone.
But then another person thought, Java is an overkill and just plain HTML5, CSS3, JavaScript (Webkit) will get the job done. The application consists of a form, a signature capture and an image capture using the inbuilt camera.
Since this is my first app on a tablet, I thought I would check around for ideas / pointers. Any feedback would be sincerely appreciated. Thanks.
Since you are doing it for W7, how about using Silverlight?
OndraSter said:
Since you are doing it for W7, how about using Silverlight?
Click to expand...
Click to collapse
The management wants me to develop in a language that we already have the skillsets for. So there are people who know Java and then there are people who are familiar with HTML/CSS/JavaScript. We do not have any developers who are familiar with Silverlight
There is no difference between this and a standard desktop app. Pick the language based on the familiarity of your developers and the quality of the tools.
Can you do things like image captures in standard HTML5?
PG2G said:
There is no difference between this and a standard desktop app. Pick the language based on the familiarity of your developers and the quality of the tools.
Can you do things like image captures in standard HTML5?
Click to expand...
Click to collapse
I don't know much about HTML5, but looks like HTML5/CSS3/JavaScript (library) will form a pretty powerful light-weight combo. I am googling to see if I can do an image capture using HTML5 / HTML & JavaScript

Android apps on windows phone

Hi guys,
I'm currently using an iPhone as my primary phone and android as a secondary one. I want to shift to windows phone (mango) but there are a few apps on the android not available on winmo which I can't live without. Is there any way to run android apps on the windows mobile the same way(or ANY way) its done on the blackberry play book?
Thanks
I don't think there's any. But there are alternate apps.
Android apps on WP7 would be incredibly difficult, though theoretically it could be done with enough effort.
Most Android apps use Dalvik (a dialect of Java). This is totally incompatible with the Silverlight/C# that WP7 apps use, but there are enough similarities between them that it might be possible to build a tool that either translates the Dalvik instructions to MSIL (the binary that compiling C# produces) at launch, or dynamically interprets it (the latter would be very slow, though).
However, even with purely Dalvik apps, there are other problems. WP7 apps are limited to a very restrictive sandbox, with no access to the vast majority of the filesystem (for example). Android apps, by comparison, have a great deal of access to the device they run on, so even a very simple app may expect to have permissions that wouldn't be available on WP7. Instead, attempts to access restricted parts of the filesystem would have to be "virtually" redirected within the sandbox. This is possible in many cases, but a *lot* of work to code and has all kinds of weird edge cases.
Additionally, Android apps have a very different runtime model from WP7 apps. The biggest change is in how they handle leaving the foreground; WP7 apps are either suspended or dehydrated, while Android apps often just keep running (they can elect to suspend, but aren't required to). WP7 does support background tasks (with strict limitations, at least if you stick to the official APIs), but moving the Android app runtime into those background tasks would be quite difficult.
Finally, there's the issue of hybrid apps (apps that use native code in addition to managed runtimes like Sliverlight or Dalvik). These are much more common on Android than on WP7 (at least, than on WP7 outside this webite). Android runs on a Linux kernel, using POSIX system calls and APIs. WP7 runs on a CE kernel, using win32 system calls and APIs. There's a very loose mapping from one to the other (see the Wine project for running Win32 apps on desktop Linux) but it adds a lot of overhead and would be another layer, at least as tricky as the managed part, to the difficulty of this project.
Short version: nope, sorry.
GoodDayToDie said:
Android apps on WP7 would be incredibly difficult, though theoretically it could be done with enough effort.
Most Android apps use Dalvik (a dialect of Java). This is totally incompatible with the Silverlight/C# that WP7 apps use, but there are enough similarities between them that it might be possible to build a tool that either translates the Dalvik instructions to MSIL (the binary that compiling C# produces) at launch, or dynamically interprets it (the latter would be very slow, though).
However, even with purely Dalvik apps, there are other problems. WP7 apps are limited to a very restrictive sandbox, with no access to the vast majority of the filesystem (for example). Android apps, by comparison, have a great deal of access to the device they run on, so even a very simple app may expect to have permissions that wouldn't be available on WP7. Instead, attempts to access restricted parts of the filesystem would have to be "virtually" redirected within the sandbox. This is possible in many cases, but a *lot* of work to code and has all kinds of weird edge cases.
Additionally, Android apps have a very different runtime model from WP7 apps. The biggest change is in how they handle leaving the foreground; WP7 apps are either suspended or dehydrated, while Android apps often just keep running (they can elect to suspend, but aren't required to). WP7 does support background tasks (with strict limitations, at least if you stick to the official APIs), but moving the Android app runtime into those background tasks would be quite difficult.
Finally, there's the issue of hybrid apps (apps that use native code in addition to managed runtimes like Sliverlight or Dalvik). These are much more common on Android than on WP7 (at least, than on WP7 outside this webite). Android runs on a Linux kernel, using POSIX system calls and APIs. WP7 runs on a CE kernel, using win32 system calls and APIs. There's a very loose mapping from one to the other (see the Wine project for running Win32 apps on desktop Linux) but it adds a lot of overhead and would be another layer, at least as tricky as the managed part, to the difficulty of this project.
Short version: nope, sorry.
Click to expand...
Click to collapse
That was quite disheartening for the OP
But I liked the thorough explanation.
for curiosity, which apps are you looking for?
Thanks a million for the detailed reply. I can give up on this now otherwise would have gone crazy searching. As for the apps I wanted to use Rako which basically controls the lighting in my house and creston media which controls my theatre. These I can't live without.
Additional ones would be anonymous email and sms bomb.( to bug my friends)
as for the lighting you got me..
but for media the xbox (if you have one) companion controls my whole xbox media experience from audio (zune), movies (integrated movie player streaming from my pc)..
What about this - http://wp7mapping.interoperabilitybridges.com/Library?source=Android
Can't this be used?!
buffalosolja42 said:
but for media the xbox (if you have one) companion controls my whole xbox media experience from audio (zune), movies (integrated movie player streaming from my pc)..
Click to expand...
Click to collapse
Crestron controls my theater as a whole i.e lights, projector, blu ray etc. I just need to press 1 button and lights dim, screen comes down, blurry starts playing and so on. For the xbox controller its only for the xbox
buffalosolja42 said:
but for media the xbox (if you have one) companion controls my whole xbox media experience from audio (zune), movies (integrated movie player streaming from my pc)..
Click to expand...
Click to collapse
drupad2drupad said:
What about this - http://wp7mapping.interoperabilitybridges.com/Library?source=Android
Can't this be used?!
Click to expand...
Click to collapse
Okay im a noob and i have noooo idea what that is
drupad2drupad said:
What about this - http://wp7mapping.interoperabilitybridges.com/Library?source=Android
Can't this be used?!
Click to expand...
Click to collapse
That is just for developers who want to port their app.
jessenic said:
That is just for developers who want to port their app.
Click to expand...
Click to collapse
Exactly! So yes, Android app can come to WP, only if developers are hard working to port it.
However, I haven't done more than making ROMs for WM, Themes for Android, but I am currently porting 2 apps from Android to WP. Honestly, all porting is made so dead easy that a little bit of English and Bing at hand, and you are off to a great start! It's slow process but anyone can port if they want to.

[Q] computer programs to android

Basically the company I work for has a computer program that one of our old IT guys wrote, now I am wondering if there is a easy way to just transfer the code over to an Android app so that it works on Android phones. or will it just be easier to rewrite the code? Thank you.
Depends on the Code it is written in, what it does, the scale of it and its documentation.
Dark3n said:
Depends on the Code it is written in, what it does, the scale of it and its documentation.
Click to expand...
Click to collapse
Thank you for that. the company I work for has actually decided just to remote into our windows servers using a RDP client on android. We have explored our other options but this seems to be the best way to move forward without redoing all our systems due to how they are all interlinked.
Thank you for your help

[App] Apache 2.0

For those interested...
I've put the native Windows RT binaries for Apache 2.0 on GitHub:
https://github.com/bfosterjr/windowsrtdev/blob/master/apps/Apache/2.0.65/bin/apache_2.0.65_arm.7z
Don't even bother asking me how to configure it. There are hundreds of wiki pages, documents, books, etc dedicated to Apache configuration.
Its probably missing some features (SSL comes to mind), but its a working web server for people to tinker with on the tablet. If someone can give me a _compelling reason_ for wanting a full blown Apache web server on a Windows RT tablet, I'm happy to spend more time on this and make it more fully featured.
Cheers!
bfosterjr said:
If someone can give me a _compelling reason_ for wanting a full blown Apache web server on a Windows RT tablet, I'm happy to spend more time on this and make it more fully featured.
Click to expand...
Click to collapse
I'm not sure about use-cases either, but still, this is seriously cool!
Reasons for maintaining a full-blown (at least partial, without HTTPS fancy stuff, but the essentials like mod_rewrite etc.) WAMP (so MySQL and PHP too) stack on Windows RT would be:
1. There would be a platform for developing and testing websites on a Windows RT tablet, much to the delight of potential web developers. We already have Notepad++ as a decent code editor.
2. Porting MySQL (+ libmysql) would be useful for other applications as a library itself, and then PHP is a (overly) popular scripting language which can also be used to develop console applications (php-cli is compiled along with PHP. along with the Apache extension for mod_php). There probably won't be many native Windows RT applications developed for it (the only library for PHP to develop really useful native GUI apps is Php-Gtk, but GTK+ isn't ported and the PHP-GTK project itself is very.. silent), but it is handy if quick stuff needs to be coded. Porting PHP is pretty much close to the reasons for porting Python, plus it can be used on a local web stack too.
3. When a MAMP stack was ported to iOS I remember someone made a working music player (PHPPod) with it, so it still might be useful if the resources are there. I'll personally think of some ideas for "apps" that can be run in the browser with the WAMP stack on Windows RT and try to code them if this is ported.

Categories

Resources