Posts

Showing posts from June, 2012

Calling Product details page of startersite

  hi,   i have added grid view on aspx page have product item details of selelcted category. 1 of column in grid item name hyperlink field. on clicking hyperlink, need show product details page in startersite. can give clue calling product details page the hyperlink column     regards, ginu    hi ginu   you might want code the productlist control in startersite. find following method: code snippet protected string getitemurlstring( object data) { uri url = null ; catalogitemsdataset . catalogitem item = data as catalogitemsdataset . catalogitem ; if (item != null && !item.iscatalogclasstypesnull()) { if (item.catalogclasstypes == ( int ) catalogclasstypes .categoryclass) { url = new categoryuri (item.catalogname, item.categoryname).geturl(); } else { url = new producturi (item.catalogname, item.productid, item.variantid).geturl(); } } return (url == null ) ? string .empty : url.originalstring; }  

Add header to Soap message to ESB ItineryPassthrogh pipleine

Image
we registering endpoint in uddi , dynamicaly resolving endpoint using uddi3 resolver in itinerary. got requriement need add authentication header xml message make successfull. since no orcherstration involved dont how add authentication header message body. please me. senthilkumar r please mark answered if answers question you can set endpoint configuration . these come when set client credentials part of end point configuration. nothing pipeline. port level property. here can set client configuration . property end point configuration in static resolver. BizTalk Server  >  BizTalk ESB Toolkit

Which file names contain forms classes , form controls and form properties

hi i have 5 developers working on different forms (.cs files) if can advise files which, in c# solution.  i'm development manager , have asked them pass code me approval once have completed parts of project. which files should submit me can update master version keep. i know should submit .cs file working on. hold methods have coded. i'm worried if developer adds more form controls (buttons etc) , alters properties not updating master version responsible for. truth told, i'm not manager, i'm project coordinator new project group on www.codeplex.com - i've set project called c# beginner expert . same, can advise how can make sure code , updated before start update master version elses code. thanks can help. kind regards matt p.s i'm using tortiosesvn if have 1 project, multiple developers working on different .cs forms @ same time, , submit change me @ same time, how can sure master version contains changes ok?  you need of .cs, .resx, .c

data continuously inserted in table

i try send data in table when time exceed on 5 mint data inserted data insert multiple times want submit data 1 time  i.e. 1 row insert 1 number try if (timediff.totalminutes > 5) { dataclasses1datacontext db = new dataclasses1datacontext(); var u = db.tbl_urgent_contacts; foreach (var in u) { tbl_outbox tb = new tbl_outbox(); tb.fromsim_no = a.simno; tb.tosim_no = a.simno;  tb.totext = "check abc"; tb.reply = "na"; tb.response = "na"; tb.regno = "na"; tb.datetd = datetime.now; tb.ffid = "na"; tb.userid = "you"; tb.fromtext = "check abc"; db.tbl_outboxes.insertonsubmit(tb); db.submitchanges(); }  } maybe exclude existing entries this:    var u = db.tbl_urgent_contacts.where( … ); the “…” condition depends on details of tables , include ‘!db.tbl_outboxes.contains(…)’ expression, etc. another solution remove processed entries tbl_urgent_contacts if no mo

Mysql connection class (beginner)

i new c#, have learned how connect database using code.  now, have form contain richtextbox1, display text in database follow. not sure missing.  public class mysqlconnect         {             public string connstring;             public mysqlconnect()             {                 connstring = "server=127.0.0.1;port=3306;database=shawn_db;uid=root;password=";                 mysqlconnection conn = new mysqlconnection(connstring);                 try                 {                     conn.open();                     messagebox.show("connected!!!");                 }                 catch (exception ex)                 {                     messagebox.show(ex.message);                 }             }         }         public form1()         {             initializecomponent();             mysqlconnect connstring = new mysqlconnect();              mysqlcommand command = connstring.createcommand();          

Event Handling IDispatch::Invoke() Implementation of the CLR.

hello all, 1. have made report microsoft connect regarding possible bug in clr code handles com events fired unmanaged com servers : microsoft connect 2. since then, have been doing research on internals of flow of event firing unmanaged com server's idispatch::invoke() method call right down invokation of managed object's event handler delegate function. 3. have managed find interesting information comeventssink class : comeventssink.cs 4. class provides implementation idispatch , used comeventshelper , comeventsinfo classes. invoke() method provided info me , there hint on why event method takes a  safearray reference parameter winds returning e_invalidarg (an argumentexception exception thrown). 5. had @ *_sinkhelper class declared in disassembled il code of interop assembly generated tlbimp.exe unmanaged com server. see directly calls invoke() method of delegate no reference comeventssink object. 6. pretty clear there must idispatch implementat

BizTalk Server: Availability Monitor raised an Error on Management Database

hi all for weeks now, have been having following error on our biztalk 2006 r2 server.  running under sql 2005. "management database - biztalkmgmtdb : report error: biztalk server database monitor: - database biztalkmgmtdb failure on server \%ourserver%\bts2006 error detail:timeout expired" any idea might causing error? thanks in advance ake i physical hardware or network speed sql server. sounds biztalk database heartbeat makes sure databases still available polling them periodically. perhaps response time accessing sql server slow. are biztalk databases on shared or separate instance other databases? biztalk databases writing filegroups separate other applications? is there other software on biztalk server such sql server or other software packages preventing biztalk server responding quickly? thanks, if answers question, please use "answer" button | ben cline BizTalk Se

Unhandled System.NullReferenceException in XML Editor

Image
hi all,   when editing xml document based on particular set of schemas, keep getting following in errors tab:   unhandled 'system.nullreferenceexception' in xml editor object reference not set instance of object   things going fine until did inheritance in 1 of schemas in set (complextype has complexcontent extends complextype)...  seems i'm toast.   the problem occurs when open xml document based on schema.  opening other documents based on other schemas in set works fine...   any ideas?   thanks james sorry lack of details in original post...  here minimal example.  posted connect...   ---------------------------------- steps reproduce: - add xsd , xml project - open project - open xml document, produces exception ------------------------------------------ vvvvvvvvvvvvvvvv test.xsd vvvvvvvvvvvvvvvv <?xml version="1.0" encoding="utf-8" ?> <xs chema xmlns:xs=" http://www.w3.org/2001/xmlschema "  

Launching embedded EXE from an application causing the embeded EXE to return "Not Responding"

i have "toolbox" application houses 6 exes act daily tools used our group (it easier house them together). all of these exes work fine independently toolbox app. each embedded exe launched a button_click event specific them. i have 1 exe has worked many times when launched toolbox , not. the exe launches , opens fine just as others do. however, when click on buttons allow searching , selecting file (openfiledialog) or folder location (browsefolderdialog) in exe i receive "not responding" message, never resolves unless close toolbox , exe. when run exe independently toolbox, there not issue. as stated, working fine until , there hasn't been recent updates either application (i.e. toolbox or exe). thoughts? sv i still haven't had success issue... how long can remain open? or can delete , resubmit later if still have issue. haven't tried dll suggestion , didn't want disrespectfully leave out there. sv never able resolve issue ,

"....Referenced Memory 0X01590010 Could Not be Read" when closing Explorer 7

help!, help!  read michael's response , i'm sorry, didn't understand   simply use run command , type following: stop: v.x.xxxx = version of .net have   - ?????? type: %windir%\microsoft.net\framework\v.x.xxxx\aspnet_regiis.exe -ua type: %windir%\microsoft.net\framework\v.x.xxxx\aspnet_regiis.exe -i     what v.x.xxxx mean version of internet explorer?  type v.7.0 internet explorer 7.0? hit enter?  go start , run again , type next line , on?    i'm sorry if sound ignorant, not understand , appreciate help.   thanks all.   please start new thread, starting beginning. have no idea original problem in thread was, because starts in middle.   please not start in middle!   Archived Forums A-B  >  ASMX Web Services and XML Serialization

Custom XML namespaces

i'm working on moving xaml code sketchflow app regular wpf app.  there xml namespace in of sketchflow .xaml pages this: xmlns:custom="http://schemas.microsoft.com/wpf/2008/toolkit" its attribute of usercontrol tag.  in .xaml file i'm looking @ now, used defining grids, in: <custom:datagrid x:name="datagrid"> <!-- more xaml code here --> </custom:datagrid> assume ok if bring custom attribute off of sketchflow definition wpf app; correct? rod yes, need sure project has reference wpftoolkit.dll. easiest way add if doesn't have drag out datagrid asset panel onto artboard, blend add reference you.  can delete datagrid then.  needed if project doesn't have reference wpftoolkit.dll. Expression  >  Expression Blend + SketchFlow

V8 Ordnance Survey maps not working if zoom greater than 11

hi, i've started looking @ updating web app v7 v8 , fell @ first hurdle. took sdk "load maps options" , changed maptype ordnancesurvey. no problem. i changed zoom 10 12 (or greater) , fails. the code using is:  <!doctype html> <html> <head> <title>loadmapwithoptionshtml</title> <meta http-equiv='content-type' content='text/html; charset=utf-8'/> </head> <body> <div id='printoutpanel'></div> <div id='mymap' style='width: 100vw; height: 100vh;'></div> <script type='text/javascript'> function loadmapscenario() { var map = new microsoft.maps.map(document.getelementbyid('mymap'), { credentials: 'your bing maps key', center: new microsoft.maps.location(51.50632, -0.12714),

I want Create an OLE Automation Server In C# VS2010

hi every 1 ,    iam new ole , want create ole automation server app in c# vs2010.it should expose 1 function through ole techonolgy function can called other technology such sap. kindly tell me how can start ,    any small sample great me begin suresh hello sureshcse29, hope following article helpful : creating com server using c#. http://limbioliong.wordpress.com/2011/08/30/creating-a-com-server-using-c/ - bio. please visit blog : http://limbioliong.wordpress.com/ Visual Studio Languages  ,  .NET Framework  >  Visual C#

C# Browse for Folder dialog hangs if shown with Owner

i'm using folder browser component library assembly (a plugin app).  library assembly being called application not single apartment threaded nor can make one.  unfortunately, seems that this component requires sta as throws exception if called other threading model.  reproduced, , documented. so doing creating new singleapartmentthreaded thread , calling showdialog() that.  works.  but of course shows dialog modelessly.  not cool.  should simple enough, if pass in iwin32window reference, show child of window, right?  heh...not so. however, if nativewindow of top-level window of process i'm running in, have verified spy correct handle, when call showdialog() using parent window handle hangs.  have reproduced using own form in test.  whenever pass in owning window, hangs. i assume because cross-thread?  dialog being shown in 1 thread, parent window in thread? if there other workaround can show modally?  can't show in main thread, because not sta?!? of course w

The type or namespace name does not exist

i have solution several projects in it, added 1 of these projects one, when using xxx.xxx; error: the type or namespace name not exist in namespace (are missing assembly reference?) i clean obj , bin folders, close open vs , rebuild them again, check under solution properties , see projects there , can add external reference using  the add reference option under references... but still error!!! any ideas? thank you, found problem. for reason classes namespaces in project importing renamed different project namespace... weird...  thanks. Visual Studio Languages  ,  .NET Framework  >  Visual C#

Closing the file opened via StgOpenStorage

hi, how close file opened via stgopenstorage. example         #region stgopenstorage         [dllimport("ole32.dll")]         static extern int stgopenstorage([marshalas(unmanagedtype.lpwstr)]string pwcsname, istorage pstgpriority, stgm grfmode, intptr snbexclude, uint researved, out istorage ppstgopen);         #endregion istorage istorage1; int result;             // open structured storage file in readwrite , share_exclusive             result = stgopenstorage("c:\\oleobject1.bin", null, stgm.readwrite | stgm.share_exclusive, intptr.zero, 0, out istorage1); after processing above *.bin file, need delete it. while tried delete file("c:\\oleobject1.bin") using file.delete error thrown ("file used process"). hence how close file opened via stgopenstorage. thanks in advance. check members of istorage , try calling istorage1.commit . call marshal.finalreleasecomobject(istorage1) .

Why inferring methodensures doesn't work here?

compiled option "-infer methodensures":     class program     {         static void main(string[] args)         {             string s = test();             contract.assert(s.length < 10); // assert unproven         }         static string test()         {             string s = new string('x', 7);             contract.assume(s.length < 10);             return s;         }     } actually, question _inferring_ ensures. declare fact return value has length < 10. static checker doesn't automatically infers fact. think bug. if it's not bug, interesting know why fact not inferred. DevLabs  >  Code Contracts

WCF Communication and Swagger options for an Service Fabric-hosted API?

i doing research , playing around in sandboxes potential project. i want use azure sf host api, reliability , scalability. because api "parameter heavy" , use complex datatypes, steering away restful implementation. think wcf better fit. however, client-side code generation options come with swagger, use that. have looked swagger wcf open source project, and, if works make fit. with above in mind, have these questions: (1) looking @ wcf documentation azure service fabric @ link: https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-reliable-services-communication-wcf they show example code wcf service interface: [servicecontract]public interface icalculator{    [operationcontract]    task<int> add(int value1, int value2);} (a) requirement to use task<t> return type service operations when developing wcf inside service fabric? in traditional wcf, use own classes (decorated appropriate serialization attributes) return types; option

Add-in trouble with indent when inserting two lines of code

i using studio add-in add 2 lines of code in source document. indent not respected on second line. how can indent properly. textselection objsel = (envdte. textselection )(_applicationobject.activedocument.selection); string firstline = "//modification de : " + system. environment .username + " version ??? - " + datetime .now.tostring(); string secondline = "//appel# " ; if (system.io. file .exists( @"p:\maximum.net\maximum\activecall.txt" )) { //get file text system.io. streamreader re = system.io. file .opentext( @"p:\maximum.net\maximum\activecall.txt" ); secondline = secondline + re.readtoend(); secondline = secondline.trim(); } string finaloutput = firstline + " \n" + secondline; objsel.insert(finaloutput, system. convert .toint32( vsinsertflags .vsinsertflagsinsertatend));   finally got wokring using collapse method; final code looks this: textselection objsel = (envdte. textsele

The biztalk 2009 setup failed for "Everyone"

hi friends, plz give me solution problem. the biztalk , database server in different machine. biztalk 2006 setup kit works fine for  "everyone" or "just me".the biztalk 2009 setup failed "everyone". iam getting follwing error: unable validate given database "biztalkmgmtdb" , server "xxxx". login failed user xxxx'. solution got net : when selected during installation, windows installer run custom action under local system account directly windows installer service, , since system not have network credentials, failed connect database. however, if selected me, run custom action directly logged on user's session initiated installer, , work fine. then solution . how biztalk 2006 kit working fine , biztalk 2009 kit failed "everyone". plz reply me. thanks in advance see these articles see requirement user account basic configuration custom configuration   for biztalk 2009 refers installation guides

How to add existing form to new project?

i have form created project. is there way transfer from previous project new one? i still modify form. go solution explorer -> right click on project -> add -> existingitem , select file if cant see file after include go solution explorer -> ther tiny icon on top "show files"  click on this-> see files in disable mode -> rightclick on files -> include project if post answers question, please click " mark answer" . if post helpful please click "mark helpful" . Visual Studio Languages  ,  .NET Framework  >  Visual C#

Converting a 270 contents coming through a WCF to XML using BizTalk Accelerator for HIPAA parser

hi all,   iam new biztalk usage , need convert 270 contents coming through a wcf xml using biztalk accelerator hipaa parser.   can send me sample code or send me link to some tutorial having step step implementation of biztalk accelerator hipaa parser converting contents coming through wcf.   any appreciated.   regards, karthik.   first expose biztalk orchestration wcf service. let pull in payload in soap:body of web service biztalk messagebox. then use send port with filter write disk. use filter of bts.receiveportname = <name of wcf receive port>. 1 issue know of wcf adapter payload of soap:body wraps content. wrote blog post workaround here: http://msinnovations.spaces.live.com/blog/cns!62e68922e47bc425!470.entry .   there not way have custom pipeline receive receive port generated through wcf publishing wizard.   then create receive port uses edireceive pipeline parse 270 message convert xml. use orchestration or send port filter passthrutransm

Stream Analytics and Event Hub Consumer per Partition limitations

i hte following error in stream analytics input on 1 input: "only 5 receivers per partition allowed. please use dedicated consumer group job." but can't find limitations that. output works fine. there still limitation per event hub partition 5 consumer groups can read @ same time? not use special partitions whole event hub. how can solve this? use table store , read that? hi, when use event hub, default connecting "default consumer group". event hub allows max of 5 concurrent readers each consumer group. not need create special permissions. consumer group view on data of event hub. can find more detailed explanation here: https://azure.microsoft.com/en-us/documentation/articles/event-hubs-overview/ if looking specific documentation limit of 5 connections each consumer group, easy test connecting more 5 connections 1 consumer group , see if can keep connections active , reading form consumer group. should find limit. thanks venkat venkat chi

Couldn't add Reference from Expression Blend SDK

hi, i have realy strange issue. if attach microsoft.expression.drawing.dll expression blend sdk, .dll will be short occur in references list. after closing "add reference" dialog, dll removed automatically. even if create complete new local silverlight application received same effect. if try add other references silverlight sdk or ria service works no problems. i attach dll asp. web reference not silverlight project. regards matthias       has idea     what path of dll trying add? curious if right platform (sl vs wpf) , version (3.0 vs 4.0) Expression  >  Expression Blend + SketchFlow

Failed job execution: Could not load file or assembly __ScopeCodeGenEngine_

Image
hello all,  i'm hitting wall debugging custom extractor wrote in c# code-behind. extractor intended parse emails contained in plain text files. works when tested locally against 10 sample files , it's worked when submitted adla against 15 sample files , 1000 sample files. but, when execute against entire set of 3800+ files following error in 201 vertices before job quits.   every method in custom extractor wrapped in try/catch report location of error, i'm reasonably confident it's not entering code , failing.    i've tried local debugging following blog post: https://docs.microsoft.com/en-us/azure/data-lake-analytics/data-lake-analytics-debug-u-sql-jobs#download-failed-vertex-to-local-machine each time follow process, results similar error adla.  any ideas? have hit bug or unpublished (and horribly reported) limit in alda? hi levi, matt adla team.  want let know i'm looking issue now.  if possible, send me job link , custom extractor (mabas

how to call webmaehtod from user control

can please me , how can call [webmethod] defined in user control? without more details, doubt if going able offer suggestions. having trouble with? we're going need see of relevant code. ~~bonnie dewitt [c# mvp] http://geek-goddess-bonnie.blogspot.com Visual Studio Languages  ,  .NET Framework  >  Visual C#

proxy not responding

i use att wireless. can connect internet on tablet windows 8.1.  when try go website says proxy serve not responding can on facebook. can mix this. when run trouble shooting stuff internet , connections cant find thing wrong. thanks i can't understand why want go anywhere else on internet other facebook , forum. check lan connection settings in browser - might pointing non-existing proxy server. looking book on sql server 2008 administration? http://www.amazon.com/microsoft-server-2008-management-administration/dp/067233044x looking book on sql server 2008 full-text search? http://www.amazon.com/pro-full-text-search-server-2008/dp/1430215941 SQL Server  >  SQL Server Replication

Could not load file or assembly 'Microsoft.SqlServer.Replication, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91'

i using .net application built in .net 2.0 using sql server express 2005 replication publication functionality. application setup in 32 bit. now running .net application setup on windows-7 [64 bit]. gets installed sql server express 2005. but when starting application getting below error while performing synchronization of subscription , publication via .net app.  have checked that microsoft.sqlserver.replication.dll file installed in gac having same version [version=9.0.242.0]. working fine on 32-bit os.     below error details. title: setsynchconsole could not load file or assembly 'microsoft.sqlserver.replication, version=9.0.242.0, culture=neutral, publickeytoken=89845dcd8080cc91' or 1 of dependencies. attempt made load program incorrect format. sounds need install 64 bit version of the  dll. when publish application did include dll? looking book on sql server 2008 administration? http://www.amazon.com/microsoft-server-2008-management-administration/dp/06723

Movable Grid

i writing game game surface larger screen. want able move game surface around dragging finger across screen. can see mean in vid between 0:17 , 0:20 http://www.youtube.com/watch?v=0fdbamvr4vi the root of usercontrol grid. how go making possible drag grid around? you can define grid size need , set margin.left/.top or canvas.left/top (grid can use canvas.left/.top) the user see part directly in screen , can scroll other parts. Silverlight  >  Silverlight for Windows Phone

how to delete multiple rows having same id in datagridview in visual studio 2010 C# windows from

Image
how delete multiple rows having same id in datagridview in visual studio 2010 c# windows from hello, below show how rows via datagridview datasource datatable in button1 while in button2 show how rows via datagridview.datasource need check see if dealing new row. results code below both buttons index: 1 first column data: b index: 3 first column data: d index: 1 first column data: b index: 3 first column data: d using system; using system.data; using system.linq; using system.windows.forms; namespace demo { public partial class form1 : form { public form1() { initializecomponent(); } private void form1_load(object sender, eventargs e) { datatable dt = new datatable { tablename = "mytable" }; dt.columns.add(new datacolumn { columnname = "column1", datatype = typeof(string) }); dt.columns.add(new datacolumn { columnname = "identifier", datatype =

C# GetResponse with Timeout returning nulls in WinApp

i call following routine when loop thru sql database and try long\lat coordinates for 20-30 customer sites. works fine in debug mode when step thru main loop , stop between each call geocoderlocation routine. when let program run @ full speed, routine sporadically returns nulls.  though timeout fix that, not. thank in advance , forward helping me upgrade routine more reliable , return results.         public class geocoderlocation         {             public double longitude { get; set; }             public double latitude { get; set; }             public override string tostring()             {                 return string.format("{0}, {1}", latitude, longitude);             }         }         public static geocoderlocation locate(string query)         {             try             {                 webrequest request = webrequest                    .create(" http://maps.googleapis.com/maps/api/geocode/xml?sensor=false&address =&

Restart the Host Instance in BizTalk

when make modifications orchestration , redeploy, vs saying need restart host instance changes effective... what mean that? i've stopped application , restarted it... still changes not being reflected in output?? what suppossed do? the host instance windows service loading assemblies , performing work. uses application configuration decide do. stopping application means host instance not start new orchesstrations, send ports etc application. assemblies have been loaded remain loaded. to stop host instance navigate host instance screen in biztalk admin console under platform settings, right click, restart. BizTalk Server  >  BizTalk Server General

After creating a site using the Sharepoint commerce services wizard, i am getting error while browsing the site

hi, after creating site using sharepoint commerce services wizard, getting error while browsing site. just remind have modified commerceserversharepoint2010 template pack solution "sharepoint commerce" of follwing link , deployed new wsps in site folder, , started creating site using wizard. the error details: system.runtime.interopservices.comexception: table not exist. [comexception (0x80040e37): table not exist. ]    microsoft.commerceserver.interop.profiles.profileserviceclass.getprofilebykey(string bstrkeymembername, object svalue, string bstrtype, boolean breturnerror) +0    microsoft.commerceserver.runtime.profiles.profile..ctor(profilecontext profileservice, string keyname, string keyvalue, string profiletype) +156 [commerceprofilesystemexception: failed retrieve profile.]    microsoft.commerceserver.runtime.profiles.profile..ctor(profilecontext profileservice, string keyname, string keyvalue, string profiletype) +504    microsoft.commerceserve

Rich Text Box

i have logfile automatically being written to, , want contents of displayed in rich text box. have on form, , seems initialized in designer.cs   // // richtextbox1 // this .richtextbox1.dock = system.windows.forms.dockstyle.fill; this .richtextbox1.location = new system.drawing.point(141, 147); this .richtextbox1.name = "richtextbox1" ; this .richtextbox1.size = new system.drawing.size(476, 67); this .richtextbox1.tabindex = 5; this .richtextbox1.text = "asdf" ; private system.windows.forms.richtextbox richtextbox1;   but when try use in form (eg richtextbox1.appendtext("blahasldkjfalskdf");, doesn't seem know textbox there..intelisense doesn't recognize either. ideas? does compile? http://blog.voidnish.com Visual Studio Languages

Firewall rule or virtual network setup or for ADF / Azure SQL Server

Image
hi, i have standard copy activity in azure data factory writes data azure sql database. firewall rule or virtual network setup need set up. adf have fixed ip range or can add adf virtual network? cheers tom have @ mobile games on http://www.blugri.com hi tom, unfortunately adf not have fixed ip , cannot add adf vnet. have "allow access azure services" using switch @ firewall settings of azure sql db. Microsoft Azure  >  Azure Data Factory

.WithParameters and .NET Backend

folks, i can find out how use .withparameters javascript backend can't find example how use .net backend. suggestions? here client code: //client code var devicetable = client.gettable<todoitem>(); var = new todoitem(); i.complete = true; i.text = "just it"; i.rowkey = guid.newguid().tostring(); i.partitionkey = "444"; var dic = new dictionary<string, string> { { "one", "1" }, { "two", "2" } }; devicetable.withparameters(dic); await devicetable.insertasync(i); //server code               public async task<ihttpactionresult> posttodoitem(todoitem item)         {             try             { // suggestions withparameters data? todoitem current = await insertasync(item);                 return createdatroute("tables", new {id = current.id}, current);             }             catch (exception ex)             {                 throw;          

Splitting POP3 Email Attachments in BizTalk 2006

hi all, i working on biztalk project. i need make orchestration or pop3 adapter, read mail messages, extract attachments , put attachment files in particular folder or msmqueue. i did googlig , came these outcomes : 1) splitting pop3 email attachments in biztalk 2006 http://geekswithblogs.net/sthomas/archive/2006/08/08/87439.aspx http://www.biztalkgurus.com/samples/split-pop3-attachments-biztalk-2006.html 2) creating biztalk application uses pop3 adapter http://msdn2.microsoft.com/en-us/library/aa578201.aspx but these articles don't provide clear way go. please share sample code snippet, algorithm or pointer in regard. thanks in advance. regards, i didn't chance @ samples shouldn't complicated achive trying do.   set biztalk solution 1. pop3 receive adapter (see example pointed out in (2) step.) 2. message receive via pop3 adapter multipart message attachments additional parts. stephen thomas example shows how can take attachments out   1. de

Having Trouble Understanding ComboBox Basic Construction. Expression Greenhorn learning with no book.

hello, all. i expression greenhorn, not getting websites, need program work me in engineering prototype. can give me idea how create combobox scratch? cant find book. thanks anyassistance. you'll known forever help. winetc first question be, silverlight or wpf? first concern be, "not getting websites" (because net full of excellent tutorials , information aimed towards goals , found simple search.) welcome expression, can pretty damn cool... :) please mark answers helpful when used, , answered when completed. Expression  >  Expression Blend + SketchFlow

Getting error while reading nested custom section from config file in c#

i gettign error while reading custom config section. i have nested custom config section defined below- <?xml version="1.0" encoding="utf-8" ?> <configuration>   <configsections>     <section name="personalinfodata" type="personalcustomsectiondemo.confighelper,personalcustomsectiondemo"/>   </configsections>   <personalinfodata>   <personalinfo>     <add key="name" value="xyz" />     <address>       <add key="address line 1" value=" " />       <add key="address line 2" value="" />       <add key="city" value=" " />       <add key="pin" value=" " />     </address>     <add key="age" value=" " />     <add key="gender" value=" " />   </personalinfo>   </personalinfodata