Posts

Transform messages twice

hi! i have single orchestration in biztalk 2010. in first transformation shape create message a. have go second transformation shape , add additional information message a. when happens message created new without data of first transformation. how can haldle this? don't want create 2 messages of same schema , third transformation merge 2 messages. i hope u can understand problem. thx hi! i solved problem. must put message second input parameter second transformation. output new message same schema , connection between mass copy. thanks! BizTalk Server  >  BizTalk Server General

Getting various errors when opening XML files

i have following different symptoms 1 of solutions work in (other solutions behaving normally): - when open solution, same files open. doesn't matter if open different files , close / reopen... it's same files. - when try open non-.cs file .tt file or .xml file gives me error , default editor wrong (some unrelated editor). can fix .tt when try fix .xml or .config problems remain. - different errors when try open xml/config files. click on file, close error , click again , different message: "the extender provider failed return extender object." "renaming dependent file not allowed." - can file open "open with" when error in activity log, , message in there:   <entry>     <record>860</record>     <time>2013/09/06 19:28:33.215</time>     <type>error</type>     <source>editor or editor extension</source>   ...

Blend has events, but VS 2008 doesn't? (Reggie) - 1/2/2008 6:12 AM PST

by: reggie does know if vs2008 have same ability blend has creating events? i.e. blend has visual property list of available events, vs 2008 doesn't !?! don't need of other fancy items on eb , don't want spend astonishing $500 visual list of events. events added vs2008? corrado cavalli [mvp] > events added vs2008? i presume there won't addition (patch excluded) until next release) -- corrado cavalli [microsoft .net mvp-mcp] ugidotnet - http://www.ugidotnet.org weblog: http://blogs.ugidotnet.org/corrado/ Expression  >  Expression Blend + SketchFlow

Serial port Communication problem

hello , using visual c# develop program read information send via serial port arduino uno board , uploaded program send number 0 1023 delaying 1 second ( depending on input signal ) , program has read signal , display in listbox . have declared infinite loop ( ) , permanently reads input value . my written code working , when press button , includes code below , program hanging ( doesn't functioning more ) , values in listbox being added , can't press other buttons , can't close program . code looks : string input = ""; arduinoport.open (); (int = 0;;i++) { info = arduinoport.readline(); listbox1.items.add (info); } arduinoport.close(); hi, to avoid hanging use application.doevents() eg: string input = "" ; arduinoport . open (); for ( int = 0 ;; i ++) {    info = arduinoport . readline ();    listbox1 . items . add ( info );   application.doevents(); } arduinop...

Creating APIs referencing a VS2013R2 LightSwitch App hosted as an Azure Website with SQL Azure as the DB

today began exploring concept of using api management portal host api’s exposed default lightswitch odata endpoints (a side benefit of using lightswitch). bit tough figure out process using odata , wondering if point run through example covering basic crud api operations on lightswitch app hosted azure website sql azure on backend. thanks (in advance) feedback provided... benjamin hi ngcbsiegel, thanks feedback. we not have specific examples scenario, can check out our documentation page , channel9 blog general guides , tutorials. https://azure.microsoft.com/en-us/documentation/services/api-management/ http://channel9.msdn.com/blogs/azureapimgmt let me know if still stuck on getting started. i'll happy answer question have. regards, miao @miaojiang @azureapimgmt Microsoft Azure  >  ...

How to reboot to dos mode and return to Windows ?

hi i reboot dos disk , automatically run batch file , call dos mode exe . after these steps want return windows system , read report dos disk . is there way change boot order instead setting bios , or can switch dos mode like  what scandisk ? thank much. you can use bcdedit.exe to play boot options in vista , onwards. check below code restarts ur system in safe mode. processstartinfo startinfo = new processstartinfo(); startinfo.filename = "bcdedit"; startinfo.arguments = "/set safeboot minimal"; system.diagnostics.process.start(startinfo); hope helps. please mark post answer if solved problem. happy programming! Visual Studio Languages  ,  .NET Framework  >...

How to use HTTP Post to post multipart/form-data

we using biztalk post xml data 3rd party sites. leverage htmlform project allows specify input parameter such <data> , put xml in there. below in our construct message. on http port adapter, use outbound map to xmlform htmlform. ends doing form post final url xml in "data" field. incomingxml = dialysisjobsmsg; formxml.loadxml("<ns0:htmlform xmlns:ns0='urn:schemas-tkh-co-nz:htmlform-xmldefault'><data/></ns0:htmlform>"); formmessage1 = formxml; xpath(formmessage1, "/*[local-name()='htmlform' , namespace-uri()='urn:schemas-tkh-co-nz:htmlform-xmldefault']/*[local-name()='data' , namespace-uri()='']") = incomingxml.outerxml; formmessage1(http.contenttype) = "application/x-www-form-urlencoded"; formmessage1(http.enablechunkedencoding)= false; myport_http_port(microsoft.xlangs.basetypes.address) = http://www.mypostingurl.com ; now, however, specific client, data on 2 mb....