insertablecontentsource

insertablecontentsource .toolbar, .spatoolbar, .spatoolbar a, .spatoolbar a:visited, .primarytextcolor, a:visited.primarytextcolor, ul.live_controlsex_breadcrumb ul.live_controlsex_breadcrumb_menu li a.live_controlsex_breadcrumb_menuitem {color:#000000;} .leftnav .list li a, .leftnav .list li a:visited, .leftnav .list li a:hover, .spatoolbar, .spatoolbar a, .spatoolbara:visited {color:#000000;} body, label, .bvsectioncontentpc tr td, .search input, .belink, .contentfont, .onlinephotobox {color:#000000;} .tips {color:#000000 !important} .textadlabel, .secondarytextcolor, a:visited.secondarytextcolor, .partsubhead, .graytitle, .notgray, .msheader td {color:#000000;} .commententry .msn_toolbar, input.text, textarea.texteditbox, input.editbox, div.inputwrapper, .txturl, input.profileui, textarea.profileui, select.profileui, .detailsectionformelements, .formelementborder, .textinput, .textinput_narrow, .imgcontainer {border-color:#000000;} div.live_controlsex_popover, div.live_controlsex_popover div.popoverfooterbar, div.live_controlsex_popover div.popoverheaderbar {color:#000000;} .containerpadding, .containerpadding td, .containerpadding th, ul.subnav, ul.list, .containerfullview, .containerfullview td, .containerfullview th {} .containerheader, .containerheader td, .containerheader th {} windows live™windows live serviceshomecalendarcontactsfamily safetygalleryhotmailonecareskydrivespacesall servicesother live serviceslive searchoffice livexbox live msn accountfeedbackhelp centralhomehotmailspacesonecare search sign in     spaces home sign upspaces home your spacefriendsphotos skydriveevents insertablecontentsourceprofilefriendsblogmore lists tools send a messagesubscribe to rss feedtell a friendadd to my msnadd to live.cominvite as friendsign up for alertsexplore spaces insertablecontentsourcescottisafool's dev stuff tips change your spell checker in writer a guide on how to change your spell checker to something non-english live gallery error in writer section if you're getting an error when going to the writer section of live gallery, try following these instructions. wlw plugins i'm feeling lucky 1.1.1.0 insert amazon details 1.0.0.0 insert google translation 1.0.0.0 insert link 1.0.0.0 insert video jnr 1.0.0.0 insert acronym tag 1.0.1.0 insert video 3.1.2.17 feed reader 1.5.1.5 insert emoticon: 1.3.1.1 live spaces photo album plugin 1.1.0.0 skydrive embed code 1.0.1.0 insert file(s) 1.0.0.7 windows live image search plugin 1.0.0.10 codeplex projects live spaces photo album insert video jnr insert quick link insert google translation insert amazon details i'm feeling lucky insert acronym tags skydrive embed code insert file(s) windows live image search wlw plugin guide using settings part 4, using settings with your plugin working with forms part 3, adding a form to your plugin for more user interaction. adding an icon part 2, adding an icon to your live writer plugin. getting started part 1, getting started with writing your own plugin. blog november 06new windows live writer versiona little earlier than scheduled (that schedule being tonight), we [liveside] and mess.be have discovered that the new set of programs are available for download. using the new windows live installer, you can upgrade your windows live programs to the final versions, including windows live writer: i spent ages jumping through hoops though trying to get the new programs to install, but it kept installing the older versions. i followed the support article but to no avail, in the end, i reset my router, and bingo, got the new programs. so if you keep getting the old programs, try resetting your internet connection. i don't believe there is anything new in this version other than bug fixes (which i will try and find out), but i would recommend to be on the latest version. sl whilst writing this i was listening to lenny kravitz - live11:31 am | add a comment | read comments (1) | send a message | permalink | view trackbacks (0)october 29windows live gallery: what the f***??update: i think i have worked out what the problem is now. i can't really go into it in any great detail at the moment (and no, i didn't f*** up) but suffice it to say, it's not live gallery's fault. i submitted five of my plugins for resubmission to windows live gallery, the changes that i made were concerning pluginhttprequest. i got emailed about all 5 of them yesterday to say that none of them were approved . what the f***? even more confusing was what the emails said: "your item appears to be either missing a valid signature or a valid certificate. you may also want to check the signature to make sure that it includes the date. go to the faq section to see what the rejection codes mean and what the next steps are. " ok, so i went to their faq section to see what it said: "missing valid signature:your windows vista gadget doesn't have a valid (the publisher of a file has been verified and the file doesn't appear to have changed since it was digitally signed.) certificate or a valid digital signature (a way of digitally marking a message with the sender's identity for purposes of verification. a digital signature may be bundled with any message, file, or other digitally encoded information, or transmitted separately.) associated with it." what the f***? my windows vista gadget? i submitted writer plugins!! not gadgets! i think i'll be emailing the gallery guys about this, and gonna be annoyed if i have to resubmit all the modified plugins again!! sl whilst writing this i was listening to aerosmith - shame on you1:13 pm | add a comment | send a message | permalink | view trackbacks (0)october 25"world's biggest backup button"love it: "all you really need to do is click the world's biggest backup button" nice little review of my backup utility over at the how-to-geek blog. sl10:13 pm | add a comment | send a message | permalink | view trackbacks (0)october 20writing plugins for windows live writer - using pluginhttprequest instead of httpwebrequestin a few of my plugins, i often find myself using system.net.httpwebrequest to get some data from a website, whether from a service or to access a specific part of a website. this is all very well and good, but what happens if you're trying to use windows live writer behind a proxy? well with writer itself, that's not a problem, you just use the proxy settings to bypass it: the only trouble is, although writer is using those proxy settings, your plugin isn't. unless you do more work to set the proxy in the webrequest, but that means hard coding the details into your plugin, which won't really work, or creating a seperate set of settings for it, which again is a but cumbersome. fortunately though, the writer team have given us an answer for this. embedded deep in the writer apis is a little class called pluginhttprequest. what this class does is use the settings that are already configured in writer. how cool is that! now, one important thing to note about this class: it is not exactly the same as httpwebrequest, more like a very good substitute. if you have built a plugin that uses httpwebrequest, you will still have to modify some of the code. to demonstrate this, i created a test plugin that will show the httpwebrequest method, and the pluginhttprequest method. i created the basics of a quick plugin, and used the following ui: the code behind the test 1 button looks like this: private void button1_click(object sender, eventargs e) { string s = ""; try { // create the httpwebrequest httpwebrequest req = (httpwebrequest)webrequest.create(url); webresponse resp = req.getresponse(); stream st = resp.getresponsestream(); streamreader sr = new streamreader(st); s = sr.readtoend(); } catch (exception ex) { s = "failed to get information: \n" + ex.message; } textbox1.text = s; } the code behind the test 2 button looks like this: private void button2_click(object sender, eventargs e) { string p = ""; try { pluginhttprequest prequest = new pluginhttprequest(url); stream presp = prequest.getresponse(); streamreader sr = new streamreader(presp); p = sr.readtoend(); } catch (exception ex) { p = "failed to get information: \n" + ex.message; } textbox2.text = p; } as you can see, there is one step that is missed out when using the pluginhttprequest, and that's getting the webresponse and getting the stream from that. this is where the pluginhttprequest differs, in that the getresponse() returns a stream, not a webresponse. the results of these tests are as follows: this is for me at home, not behind a proxy, see how they both work, now if i was behind a proxy, test 1 will give a failure message in the textbox, but test 2 (assuming you have writer configured for your proxy), will show the same as it does above, the source code for www.microsoft.com. now, this is only a basic example of how to use the pluginhttprequest, and there are other properties to this class that can be levied. but if your plugin uses the methods described in test 1, i would recommend migrating over to writer's native class, as it means your plugins will not only work for joe public, but also for those who are behind a corporate proxy, for example. test project source code: http://cid-fabdddc5cad93494.skydrive.live.com/self.aspx/liveside%20-%20public/sourcecode/httprequesttest.zip sl ps, expect a post soon with a list of my plugins that use the original httpwebrequest class as they will have been updated and re-released.12:28 am | add a comment | read comments (2) | send a message | permalink | view trackbacks (0)october 16amazon plugin updatedi read a review of my amazon plugin on a blog, and unfortunately, i never made a note of the blog entry (if you're reading, leave a comment ), but they suggested that the title of the item should show just that, the title. the way the plugin worked originally was it got the title of the page, and amazon, being the idiots they are, stuck so much crap in there it often made the title huge, including actors (for films), etc. so, i have now changed that. the plugin will now only display the title, and only the title. source code: http://www.codeplex.com/insertfromamazondownload: http://gallery.live.com/liveitemdetail.aspx?li=82b772ae-6ed9-412d-9f3f-fe83eb4f85497:37 pm | add a comment | send a message | permalink | view trackbacks (0)view more entries  © 2007 microsoft privacy legal code of conduct report abuse safety help central account feedback

Acceuil

suivante

insertablecontentsource  cursor  Scott Rettberg  The Social Media Marketing Blog  Biographie de Nieves Navarro (Susan Scott)  Videos - tag les frères scott  Scott Pommier - Chasing Thunder  Media Orchard, by the Idea Grove: Media News, Marketing Views ...  GOLDWIN SCOTT  Information sur Scott Fitchet :: Modules pour Thunderbird  Information sur Scott Squires :: Modules pour Firefox  Ambysoft Home Page  Scott's Place » Thoughts on TV, theatre, new media and computing  Section spéciale sur Scott Niedermayer : biographie photos vidéos  Scott Heiferman's Notes  Les frères Scott  La Scott-1000 Bosses - 29 avril 2007 - Tassin la Demi-Lune (69)  Scott Matthews: A bit about me and my work  Orson Scott Card  Amos Advantage  SCOTT 2007 Australian 24hr Mountain Bike Championships - Home  Thoughts On Thunderbird » My Last Day at the Mozilla Corporation  Scott on Writing  Emily Scott en couverture de MAXIMAL Cover Girls Maximal Girls ...  Les Freres ScOtt - Blog doudthehurricane - Bonjour à tous ...  Frères Scott (Les) - Series-TV.Net  TV5Monde - Littérature - Scott Westerfeld - Uglies  scott, prénom garcon, ses origines, son etymologie, sa popularité ...  Scott Caan  Barbara Ann Scott - Femmes à l'honneur : leurs réalisations / Les ...  Dana Scott's Home Page  Live Jazz London Ronnie Scott's Jazz Club London Jazz Cafe ...  ISO50 - The Visual Work of Scott Hansen  AskScott - Choosing the best searching tool or Web search engine ...  Scott DPX I860 : avis de consommateurs, comparateur de prix et ...  Spot  Releasing the Source Code for the .NET Framework Libraries ...  essai 5  Scott Rafer at Winksite  Scott Richmond Ltd comfortable recreational washroom facilities  Scott Levine Gilmore - Fluctuat.net  Transmissions - Transfo de Scott  SCOTT Autoradio  Scott Kveton · I iz on site, mis spelin ur last naymz  card  Scott's Food and Pharmacy  LES FRERES SCOTT Saison3, 6DVD - Drame-Passion - Séries TV - DVD ...  DVD ou film : Ridley Scott (Réalisateur) - Cinetroc  DVD ou film : Kristin Scott Thomas (Acteur) - Cinetroc  Scott Becker - Synthesis  Les frères Scott - TOUTES LES SERIES, l'encyclopédie des séries de ...  vends vend scott PURE 193 2007  The website of drummer Scott Amendola  The Dilbert Blog  Algerie Forum  Visual Studio Talk Show:0042:Scott Bellware:Test Driven ...  PETITE ANNONCE GRATUITE Pantalon de cross SCOTT USA MOTO - SCOOTER ...  Beverly Jo Scott en concert: place de concert, billet, billetterie ...  les freres scott::::exclusif !!!! • WEB-ADOS.COM  Scott Fisher  Walter SCOTT à Paris