Related
Hi,
I remember from owning an IPhone having to synchronise my ewallet (a password manager) files over the air from the desktop whilst the app was running on the phone. (I'll admit it was a minor annoyance).
Having moved to android and using a combination of dropbox and keepass, I don't really think about anymore - I just open dropbox and click the file and keepass opens up.
But, what about WP7? I realise that apps are only permitted to use their own storage. If I were to build a say, a keepass app for WP7, would I be back to building some desktop client software that allow syncing over the air whilst the app was running (like IPhone/ewallet), or hooking into any number of online sync services like Dropbox, Box.net, Pogoplug, etc, just to get the file some place the app can reach it.
I'm having trouble thinking of any other option given the lack of any common storage.
Thanks
If you did develop Keepass for WP7, you'd have your first customer here!
I'm actually tempted to try and port it myself, and I've come to the same conclusion as you regarding storage. The local KDB file would need to held in private storage and synchronised to an off-device copy, be that a desktop app or something like drop box.
A keepass app is one of the things I was considering. Not so sure about it now.
I'll have a look round for an elegant solution.
Well, isn't Skydrive the same as Dropbox? As I understood WP7 uses Skydrive to store your files 'in the cloud'; so why not put your Keepass file there?
Seven_PRX said:
Well, isn't Skydrive the same as Dropbox? As I understood WP7 uses Skydrive to store your files 'in the cloud'; so why not put your Keepass file there?
Click to expand...
Click to collapse
I'd not considered skydrive/mesh. I'll 'ave a look.
Thanks for the heads-up.
I'm thinking of writing a desktop synching app myself. That way any WP7 app could connect to it to import files from a PC.
I've thought about using skydrive myself, but it doesn't seem to offer a way to download the file directly.
The desktop counterpart integrates with explorer and allows you to right click on any file ex docs and pictures and send it to your windows phone! I am not sure how secure the cloud storage is at the moment but this is some nice innovation for a free app.
Read more here: http://wpcentral.com/send-wp7-hits-back-desktop-app
You can compose texts, emails and notes on the desktop and send it to the phone as well. The application utilizes windows 7 jumplists and works almost instantaneously.
I'm impressed.
Cloud is the future. Resistance is futile.
Well, well, well...I guess if Microsoft wasn't going to step in and make SkyDrive play nice on WP7 (access through browser doesn't count if you cannot sync), then someone had to. I like where Send To WP7 is going. It is quite impressive indeed.
It's just a shame that Microsoft, who probably has more data centres than 98% of all corporations in the world, and is in the best position to promote cloud services ( like Windows Live ) is still lagging behind.
I'm the author of Send to WP7, if you have any other suggestions for ways you can send stuff to your phone, do let me know. I'm open to pretty much anything that's technically possibly without costing me an arm and a leg in infrastructure.
The main complaint in the current implementation is that it uploads to a public hosting site. Live Mesh and SkyDrive don't have suitable APIs for doing this, as I would very much like to tie everything into Windows Live. In order to be useful, the files need to be accessible via an HTTP URL, without requiring a cookie or authentication (HTTP auth may be acceptable, but it needs to be opened in the browser to have access to docs and PDFs.
Also do note that this is a preview quality build, I just figured some people may already want to start using it.
If only you could make a "Send From WP7" app...
The ability to send to other Windows Phones would be nice.
kapanak said:
If only you could make a "Send From WP7" app...
Click to expand...
Click to collapse
No APIs to let me do this, unfortunately.
karelj said:
The ability to send to other Windows Phones would be nice.
Click to expand...
Click to collapse
I'm not so sure this is practical, you may as well just email a link, right? if you're talking about from the browser, using the bookmarklet for alternate phones is supported in all desktop browsers.
davux, i'm not sure if it's possible as you don't have socket support, but a possible way to get skydrive access to work is to pass windows phone through fiddler and work out what it does when it syncs a onenote note to skydrive. i'm pretty sure this would be socket base meaning you'd be stuck, but if it isn't, you may just have the information required to directly upload to skydrive, with proper credentials and all.
it's just an idea, but this is what i'd try as a developer (yes i am one, but no where near experienced enough at this stage).
The Gate Keeper said:
davux, i'm not sure if it's possible as you don't have socket support, but a possible way to get skydrive access to work is to pass windows phone through fiddler and work out what it does when it syncs a onenote note to skydrive. i'm pretty sure this would be socket base meaning you'd be stuck, but if it isn't, you may just have the information required to directly upload to skydrive, with proper credentials and all.
it's just an idea, but this is what i'd try as a developer (yes i am one, but no where near experienced enough at this stage).
Click to expand...
Click to collapse
I can actually access SkyDrive via WebDAV already, which is an HTTP protocol. I suspect OneNote sync does something similar, but I haven't checked it out. The primary issue with this approach is that it won't be all that useful. Images and text would transfer well like this, but if you wanted to send a PDF, or Office doc, there would be no way to open it. The only way to open these types of docs is through the browser. I figured a really important use-case is documents, so I decided to take another approach.
BTW - the current build of the desktop app now supports uploading to localhostr.com, serving up files via a local HTTP server, and using your Dropbox account.
davux said:
I can actually access SkyDrive via WebDAV already, which is an HTTP protocol. I suspect OneNote sync does something similar, but I haven't checked it out. The primary issue with this approach is that it won't be all that useful. Images and text would transfer well like this, but if you wanted to send a PDF, or Office doc, there would be no way to open it. The only way to open these types of docs is through the browser. I figured a really important use-case is documents, so I decided to take another approach.
BTW - the current build of the desktop app now supports uploading to localhostr.com, serving up files via a local HTTP server, and using your Dropbox account.
Click to expand...
Click to collapse
Thank you for directly conversing with us Dave. I agree getting documents to the phone is the ideal usage of this application. Keep up the good work!
sayonical said:
The desktop counterpart integrates with explorer and allows you to right click on any file ex docs and pictures and send it to your windows phone! I am not sure how secure the cloud storage is at the moment but this is some nice innovation for a free app.
Read more here: http://wpcentral.com/send-wp7-hits-back-desktop-app
You can compose texts, emails and notes on the desktop and send it to the phone as well. The application utilizes windows 7 jumplists and works almost instantaneously.
I'm impressed.
Cloud is the future. Resistance is futile.
Click to expand...
Click to collapse
just set it up. The push notifications are instant!!!
davux said:
I'm the author of Send to WP7, if you have any other suggestions for ways you can send stuff to your phone, do let me know. I'm open to pretty much anything that's technically possibly without costing me an arm and a leg in infrastructure.
The main complaint in the current implementation is that it uploads to a public hosting site. Live Mesh and SkyDrive don't have suitable APIs for doing this, as I would very much like to tie everything into Windows Live. In order to be useful, the files need to be accessible via an HTTP URL, without requiring a cookie or authentication (HTTP auth may be acceptable, but it needs to be opened in the browser to have access to docs and PDFs.
Also do note that this is a preview quality build, I just figured some people may already want to start using it.
Click to expand...
Click to collapse
Interesting stuff indeed. I for one, appreciate the work you are doing.
Wait a minute, you can use the Desktop app and upload to phone using your own local network? That is significantly easier to trust than a free cloud service.
kapanak said:
Wait a minute, you can use the Desktop app and upload to phone using your own local network? That is significantly easier to trust than a free cloud service.
Click to expand...
Click to collapse
Yes. Unfortunately I can't make it an SSL connection, I'm not willing to pay for a cert. I will see if a test-signed certificate will work, but that is not actually as secure.
davux said:
Yes. Unfortunately I can't make it an SSL connection, I'm not willing to pay for a cert. I will see if a test-signed certificate will work, but that is not actually as secure.
Click to expand...
Click to collapse
I've been trying out the desktop app with the local Wi-Fi method, and this seems to me the best way to get stuff to the phone. It's very quick too.
The dropbox integration isworking, and quite well. I'm wondering is there a way in future to upload to a private dropbox share?
Even though it's only an early preview, the dekstop app is great. I like the integration with Windows 7; I have it pinned to my taskbar. Might be useful to have a "Start with Windows" option in there. I'm sure you're aware of some of the bugs like the lack of proper icons in the jumplist Tasks and the filenaming issue that causes PDFs to be unreadable from WP7. To be expected with a preview.
From a UI point of view, I think the "Set Transfer Destination" option should not be in the jumplist and should be in the main config window instead. It's not a menu item you would need ever access to again after you've set your dropbox settings.
The WP7 app itself is also coming along great. I'm wondering if you will split the file list into categories, eg Notes, Links, Images, Files etc. Or failing that, have just "New" and "All" categories? Perhaps, for things like notes, you can Archive them into an Archive category... just an idea. Oh, and when a file is sent via the desktop app at the moment, for example a photo, instead of displaying just as "File", perhaps it could display as "File - {name}"?
Great stuff, getting great use out of this app so far, and its usefulness will explode when copy and paste arrives to WP7 devices. Thanks!
A big thanks to Dave for this excellent tool, it is also nice to see a thread wherevpeoplevare pushing the boundaries of what can be done with wp7 rather than just slanting it off.
wheresmybeaver said:
The dropbox integration isworking, and quite well. I'm wondering is there a way in future to upload to a private dropbox share?
Click to expand...
Click to collapse
Not likely, as I've been saying, the phone needs to be able to access a share via the web browser. As far as I know, Dropbox private folders won't do this. That's why I've included an option to mutate the name a bit, so someone can't just guess filenames in your public folder.
The WP7 app itself is also coming along great. I'm wondering if you will split the file list into categories, eg Notes, Links, Images, Files etc. Or failing that, have just "New" and "All" categories? Perhaps, for things like notes, you can Archive them into an Archive category... just an idea. Oh, and when a file is sent via the desktop app at the moment, for example a photo, instead of displaying just as "File", perhaps it could display as "File - {name}"?
Click to expand...
Click to collapse
Note that the phone app has absolutely no support for the desktop app at this time, I will bring support for it in an update. Views are likely, I haven't decided what to do yet. I wouldn't expect that update for a couple of weeks though.
adesonic said:
A big thanks to Dave for this excellent tool, it is also nice to see a thread wherevpeoplevare pushing the boundaries of what can be done with wp7 rather than just slanting it off.
Click to expand...
Click to collapse
Thanks.
Send to WP7 Desktop
Dave, thanks for this app. It works well so far & I'm sure I'll get a lot of use out of this. One problem though I'm not getting notifications & when I open the app on the phone I get a push notification error. 'Failed to open channel'. Great work mate. Keep it up. Will send a donation when I get a chance.
davux said:
I'm the author of Send to WP7, if you have any other suggestions for ways you can send stuff to your phone, do let me know. I'm open to pretty much anything that's technically possibly without costing me an arm and a leg in infrastructure.
The main complaint in the current implementation is that it uploads to a public hosting site. Live Mesh and SkyDrive don't have suitable APIs for doing this, as I would very much like to tie everything into Windows Live. In order to be useful, the files need to be accessible via an HTTP URL, without requiring a cookie or authentication (HTTP auth may be acceptable, but it needs to be opened in the browser to have access to docs and PDFs.
Also do note that this is a preview quality build, I just figured some people may already want to start using it.
Click to expand...
Click to collapse
I can not download it in Germany
weepatc said:
Dave, thanks for this app. It works well so far & I'm sure I'll get a lot of use out of this. One problem though I'm not getting notifications & when I open the app on the phone I get a push notification error. 'Failed to open channel'. Great work mate. Keep it up. Will send a donation when I get a chance.
Click to expand...
Click to collapse
I actually have this same problem on my device. I opened the same-named notification channel on a dev build, then I uninstalled that build while it had the channel open - now neither the marketplace build nor new dev builds will open the channel.
I don't know how you got into this situation, but my point is that I don't really know what I can do to help--I'm under the assumption that all I can do to fix my device is to do a master reset (so I'm waiting for the NoDo update). I'm hoping that this bug is fixed in the next update, but I don't know if it's even officially reported.
ceesheim said:
I can not download it in Germany
Click to expand...
Click to collapse
I've selected all possible countries, which I think includes Germany. I don't think there is anything else I can do for you--maybe I could post a link to the XAP and you could sideload it? My only issue with this is that I'll then have to maintain a secondary distribution channel, and will need to build some kind of updater.
you should be able to post a zune link and it should allow him to access it that way. no need to sideload.
The Zune:// link has always been on my product page.
http://www.daveamenta.com/products/chrome-to-wp7/
I have been trying to find out if windows 7 mobile is able to support my excel spreadsheet. Some retailers say yes no problem, others say my formulas are to complex, no one has been able to try it for me. How can I find out if my spreadsheet can be read, edited and it calculates properly before I buy?
Does the handset make any differance or is the win 7 the same on all? I haven't purchased a handset as of yet as I am still trying to find out what apps I can use on them. Any suggestions would be greatly appreciated. I very much want excel and word support, pdf reader is a must - creator would be a real plus. Gps would be real nice too.
Thus far I am leaning towards the htc surround, it seems to be one of the better options in my limited market.
before you buy the device,I have to let you know that,unless you are using microsoft sharepoint,if not the office application is kind of useless.
me as a student,I can't even transfer my lecture note to the device and revise it anywhere.
so,think twice before you buy a device
onenote is the only thing that you can sync to skydrive. so you can edit them on the web as well.
excel and word on the hand has to be emailed back and forth if you don't have sharepoint.
MS did demo a skydrive client at CES, which will be part of mango update, released in fall 2011, so that will be the resolve, but till then email is the only way to do it.
Thanks for the tips, I can see more research is in order.
You don't have to email word and excel documents in order to make them usable on a WP7 device. You can also choose to sync these items with either dropbox - which has several clients for WP7 - or software solutions like homepipe. Both work fine, either way.
But it's truely just a workaround until MS will provide full skydrive support. Which should have been part of WP7 from day one in the first place.
Transfering isn't a big deal, I would like to put the spreadsheet template on the handset, add in the data as needed and have excel do the calculations. Perhaps a quarterly backup to the computer would be fine. Will the handset excel sync with the desktop app, filling in the fields or would that have to be done manually?
Attila7 said:
Transfering isn't a big deal, I would like to put the spreadsheet template on the handset, add in the data as needed and have excel do the calculations. Perhaps a quarterly backup to the computer would be fine. Will the handset excel sync with the desktop app, filling in the fields or would that have to be done manually?
Click to expand...
Click to collapse
I never really tried that, because I hardly use excel. But the way I described works with word, so why should it be any different with excel? Just save the file created on your desktop PC to your dropbox folder (or any other folder you can sync with your handset), then download and open it from the client app on your device.
Attila7 said:
Transfering isn't a big deal, I would like to put the spreadsheet template on the handset, add in the data as needed and have excel do the calculations. Perhaps a quarterly backup to the computer would be fine. Will the handset excel sync with the desktop app, filling in the fields or would that have to be done manually?
Click to expand...
Click to collapse
Well, I just looked into my zune & LG Quantum transfer options, and I could not find any options regarding transferring any type of files that are not music, video or podcasts. EDIT: NM, miss understood your question. I don't believe the spreadsheets will sync. But using dropbox, this wouldn't be an issue, as you would always be opening the dropbox copy of the spreadsheet.
RE: seeing whether or not your excel spreadsheet will run properly, I am not sure how private/personal your spreadsheet is, but you could email it to a user here to test it and report back to you if it works.
Would the dropbox copy be the same as the computer copy? Would someone be willing to try the template for me to see if it will run and calculate properly? That is a great idea! The template is about 1.5 mb. If anyone is willing to try this for me please PM me, thanks.
i use Excel a lot on my windows phone by using a budget spreadsheet I whipped up on my computer. I know there are multitudes of budgets apps but why do that when you can auto calculate averages, sums, and present them graphically with a simple spread sheet?
Now at the moment, the only way to get Office docs (Word or Excel) on the phone is via emailing your self or as others suggested dropbox or file server. The downside is changes made on the phone isn't synced back to the source. You have to email the changes to yourself.
Microsoft has demoed Skydrive integration coming in the Fall update. Changes made then will be automatically synced like One note is now.
As for formulas, my formulas and graphs work and show up on the phone just fine! However I am not sure if more complicated ones work as I was unable to edit an excel timesheet from my job on my phone (says unable to open this file created from earlier office version). I am willing to test this template for you.
Feel free to PM it to me.
Also one way to get office documents on the phone iis utilizing skydrive instead of dropbox
1, I mapped my skydrive "My Documents" folder as a network drive on my Windows 7 PC
2. I save all my office documents there. I can edit them, delete them, rename them just as any other folder.
3. One the phone you can access skydrive via the browser and download your files without needing drop box or 3rd party solutions. The downside is being unable to upload them back!
4. Do maintenance, email your changed document and replace it on the desktop yourself.
Hope this helps.
sayonical said:
1, I mapped my skydrive "My Documents" folder as a network drive on my Windows 7 PC
Click to expand...
Click to collapse
how did you do this? i would like to know as i've always wanted to do this as well. Windows Live Mesh doesn't seem to do it the way i want.
The Gate Keeper said:
how did you do this? i would like to know as i've always wanted to do this as well. Windows Live Mesh doesn't seem to do it the way i want.
Click to expand...
Click to collapse
If you have Office2010 follow this easy guide
http://downloadsquad.switched.com/2010/04/25/use-office-2010-to-map-a-local-drive-letter-to-your-free-25gb-live-skydrive/
awesome! i'll give this a try when i get home.
Is it possible to develop:
1. HomeBrew PDF viewer with sending PDF instead the Adobe's Reader ?
2. HomeBrew PDF sender which access to Isolated Storage of Adobe's Reader ?
Thanks for info.
1. Yes of course but it's really hard and complex task. Also, you can't assign your viewer as a default PDF viewer.
2. No for regular MP apps (you can't access someone else sandbox), but very possible for interop-unlocked handset.
marek1 said:
Is it possible to develop:
1. HomeBrew PDF viewer with sending PDF instead the Adobe's Reader ?
2. HomeBrew PDF sender which access to Isolated Storage of Adobe's Reader ?
Thanks for info.
Click to expand...
Click to collapse
question 1:
Yes, but I think is really difficult.
To associate PDF extension with your app you have to change registry keys on device (HKCR\.pdf sends you to HKCR\PDFFile that contains the appId to use to open pdfs), but on unlocked device only
question 2:
Yes, but on unlocked device only
andreacorti said:
question 1:
Yes, but I think is really difficult.
To associate PDF extension with your app you have to change registry keys on device (HKCR\.pdf sends you to HKCR\PDFFile that contains the appId to use to open pdfs), but on unlocked device only
question 2:
Yes, but on unlocked device only
Click to expand...
Click to collapse
Yes, that's why I wrote that I want HOMEBREW APP not official.
"You want" or "you want to write app"? If first - you may forget about it The only hope - if someone will port that project http://sourceforge.net/projects/clown/ to WP7 SL.
You can always replicate the existing adobe reader app, than by using reflector copy the code, than modify it according your needs.
The reading part is being done by some dll which you can use.
Now instead of rerouting the pdfs to a different folder just use the same app ID and overwrite the official app. Now all pdfs end up in your custom build pdf reader.
Good luck
sensboston said:
"You want" or "you want to write app"? If first - you may forget about it The only hope - if someone will port that project http://sourceforge.net/projects/clown/ to WP7 SL.
Click to expand...
Click to collapse
If someone else will develop it.
Will someone develop it ?
Marvin_S said:
You can always replicate the existing adobe reader app, than by using reflector copy the code, than modify it according your needs.
The reading part is being done by some dll which you can use.
Now instead of rerouting the pdfs to a different folder just use the same app ID and overwrite the official app. Now all pdfs end up in your custom build pdf reader.
Good luck
Click to expand...
Click to collapse
or hoping that there is an usable user control in Adobe Reader's DLL
On unlocked devices the following could be done:
a homebrew app which syncs the isolated storage folder of the Adope Reader with the My Documents folder (manual sync and maybe a background task which syncs both folder in a predefined interval). This would give us the possibility to send .pdf´s via email or upload them to skydrive via the Office Hub.
Atm I copy my pdf´s with a filebrowser to the MyDocuments folder and all works fine but it would be nice to have an app which could make life easier.
I´m not able to write such an app but I know that it´s possible.
he Free Online ePub Converter 2EPUB allows you to convert PDF, doc
Input formats:
doc, docx, epub, fb2, html, lit, lrf, mobi, odt, pdb, pdf, prc, rtf, txt.
Output formats: epub, fb2, lit, lrf, mobi
View attachment PDFConverter.zip
spavlin said:
View attachment 1091108
Click to expand...
Click to collapse
Could you give some more information about this .xap ?
It´s in chinese...
Edit: it´s a Markeplace app.......................
English
zune://navigate/?appID=5a0d158f-16de-4153-8c03-3f72a137400b
View attachment PDF_Viewer_v1.5.xap
View attachment PDFy_Pro_v1.5.xap
View attachment PDFy_v1.6.xap
View attachment LindyBox_v1.4.xap
View attachment PDFMyWeb_v1.3.xap
View attachment HTML_to_PDF_v1.1.xap
spavlin,
1. Do this apps allow to switch as be default PDF reader ?
2. Do this apps allow to send PDF files via email ?
If not both of them why do you put it here ?
Reflow
Hi!
Just a sidenote:
Adobe Reader for WP7 sucks as it lacks the reflow option which is quite useful for reading documents on little displays. If someone starts to develop please keep in mind this function.
Regadrs,
Cina.
marek1 said:
spavlin,
1. Do this apps allow to switch as be default PDF reader ?
2. Do this apps allow to send PDF files via email ?
If not both of them why do you put it here ?
Click to expand...
Click to collapse
All those Marketplace apps are crap because they don´t replace the original pdf-reader.
Currently there is no app which can do what you want. The only solution is a homebrew app.
contable said:
All those Marketplace apps are crap because they don´t replace the original pdf-reader.
Currently there is no app which can do what you want. The only solution is a homebrew app.
Click to expand...
Click to collapse
Yes, does somoone create homebrew pdf app which can:
1. Send Pdf via email
2. Be the default pdf app
Uhm, you could get the .xap of the original Adobe Reader app, and decompile it. Then you could add the functions you need to the officially app. It sould not be that complicated but some annoying work, I guess...
did you try the PDF Move app?
marek1 said:
spavlin,
1. Do this apps allow to switch as be default PDF reader ?
2. Do this apps allow to send PDF files via email ?
If not both of them why do you put it here ?
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1872341
Hi,
There is a feature wherein, one can print to pdf from any app which has this feature emabled. Like say from any mail app, one can print an email and system print dialogue opens up and provides an option as "Save to PDF". Earlier this used to save the print in a pdf format. But now clicking on Save icon results in an error "couldn't create file". Is this only happening to me or is it not available anymore on any android device. Can someone provide an alternative wherein I can save certain information via Save to PDF feature.
Many apps I tried from playstore doesn't work as it was available earlier. As soon as I share a web page from chrome to print, the web page doesn't get loaded into the app for pages which are session based which are mostly transactional confirmation pages. Like say making payment for any service or product and trying to take a print of that to save as pdf.
Would be thankful if anyone can help.
Sounds like a bug on Xiaomi's part. Not sure there's a solution. Sorry
I think turning on MIUI Optimisation should do the thing.