Posts

Showing posts from July, 2011

Visual C# folding editor peculiarities

my project files include several classes , each class has many functions. code folding/collapsing feature of c# editor helps navigate through files lot. trouble times entire file gets unfolded. there command i'm inavertently invoking produce global unfolding? conversely, there way insure code not unfolded unless decide so? just in case, i'm using express version of visual c#. thanks in advance! there shortcuts collapse , expand regions.  by default (with c# bindings), hitting ctrl+m - ctrl+l this. see edit->outlining in ide of options here. reed copsey, jr. - http://reedcopsey.com if post answers question, please click " mark answer " on post , " mark helpful ". Visual Studio Languages  ,  .NET Framework

Commerce Server COnfiguration Problem

hi, this ravi. have sql server 2005 installed in system other databases functioning properly. have installed commerce server 2007 in system. when iam trying run cofiguration wizard create mscs_admin database, database created in sql server error displayed showing "commerce server database use case insensitive collation. please change collation of database". when collation property of database changed caseinsensitive , configuration wizard run, again showing error message as "cannot resolve collation conflict between sql_latin_general_cp1_cs_as , sql_latin_general_cp1_ci_as  in operation". moreover message displayed thrice.   then i sorted out problem changing collation property on coulmn names of tables Commerce Server  >  Commerce Server 2007

How to implement interface of C# use COM of native C++?

i'm using .net core in cross platform, include windows , linux. i can't use atl. i embed the . net core executable program. i hope expose c++ class instance pointer .net core(c#), , convert interface of c#. c++: class foo : public idispatch, public imanagedobject, public iinspectable...{} fobj; extern "c" __declspec(dllexport) foo* winapi gettestobject(){return new foo;} c#: [dllimport("foo.dll")] static extern intptr gettestobject(); [guid("48df8e89-57de-3599-ad7c-b49500ef01c0")] interface itest {    int func(); } main(){     var v = gettestobject();     var obj = (itest)marshal.getobjectforiunknown(v);     obj.func();// exception     dynamic dobj = marshal.getobjectforiunknown(v);     dobj.func();// ok, idispatch::invoke called } i hope implement interface test of c#. [interfacetype(cominterfacetype.interfaceisidispatch)] interface itest{...} is ok, c++::foo::invoke(idispatch)

it would be awesome if...

i choose processes , services wanted running. reason use graphics , gaming software , don't need of other stuff running in background when i'm trying render video or build map. nice if create groups of processes shut down on start of 3ds max, photoshop, zbrush, or udk. thought. you make .bat files ( or .cmd or several other options). group groups of services putting commands in start , stop bat files, stick link on desktop or whatever. http://mscerts.programming4.us/windows/windows%207%20%20%20controlling%20services%20at%20the%20command%20prompt.aspx Architecture  >  Architecture General

Server level logging in BTS 2009

hi,     have not been able find information related question on msdn or google. my question is, biztalk server 2009, there server level logs capture server level events , logs? when bts started , shutdown, captured in log? lookign logs contains followign events - host instance started,stopped or restarted application updated in anyway a suspended message or "in queue" messages suspended any significant action impacts behaviour of component performed usign mmc console can set log level different levels? mean verbose in development versus errors in production?   if above information indeed captured somewhere, how access it? capture user initiated action? thank you. -sujana   some of these events logged event logs including: host instance started,stopped or restarted biztalk server stopped, application stopped suspended message or "in queue" messages suspended ones not know of way are: application updated in anyway significant ac

storing in an ms access(database) using a c sharp windows form

how can store information of c sharp programming (windows form) in database after executing program information not terminate , can retrieve anytime? access database editor in c# http://www.codeproject.com/kb/database/csharpaccessdb.aspx kindly take @ sample provided in above link regards, narendran ponpandiyan Visual Studio Languages  ,  .NET Framework  >  Visual C#

Linq create a query to get all items from DataTable for specific data range

hi, i new in linq...i have datatable have table in format of id,start,end 1,1/1/2013,1/7/2013 2,1/8/2013,1/15/2013 ... i want linq query items falls in specific date rage... say items between 1/1/2013 1/13/2013 --will give both items in result...as starting after jan-8.... or 1/10/2013 1/13/2013....-- should give 1 item (2) in result..as comes between start , end date.... any appreciated... thanks well second case can resolved start , end has correct values filter with. var rows = table.asenumerable().where(row => row.field<datetime>("start") <= start) .where(row => row.field<datetime>("end") >= end); Visual Studio Languages  ,  .NET Framework

Intranet or extranet or both?

i've got guys in field @ company.  want access internal/confidential company web pages laptops/phones/tablets. is reasonable tell them flip on vpn  (and log domain) every time in order something?  if accessible via extranet, have external username/password (wouldn't domain login obviously), "remember me" getting page wouldn't easier. i'm not crazy pages being available via intranet , via extranet , via both.  seems messy me , users have remember door need walk through per area of functionality.  i'm thinking should 1 way or other. intranet offers security , speed on extranet, extranet offers ease of access.  90% of workers @ desk in office, hit extranet access internal web page looping the outside world come in. what's answer? thanks. hi, as far things ethical,, a suitable strategy use wlan within campus, wifi , hotspots through firewire or may ask isp extend lan through network. for more

Handling .NET Exceptions in VB6

hi, i have question regarding how vb6 handles exceptions raised .net component. this scenario: have legacy vb6 app writing new functionality in managed assembly , accessing through com. in vb6 code used on error goto extensively , there places responding data access errors - kind come sqlserver stored procedure. specifially sp performs raiserror(50000,16,1) , vb6 code (inside error routine) handles err.number when 50000. my .net component replaces direct call sp wanted keep vb6 code it, i.e. still responding err.number being 50000. problem seem have when .net component throws exception cannot err.number 50000. know if used comexception specify error code here error code must < 0 com error happen. after that, guess need know if possible managed code raise vb6 error vb6 err.number positive? thanks in advance graham hello graham, sorry delay. wanted verify vb.net team :) there breaking change made vb.net runtime whidbey (visual studio 2005) maintain compatibility vb6. clear, whidbey

Possible to Get Delivery Notification from only one Send Port?

here our scenario. 1. orchestration has a hard bound send port deliverynotification set 'transmitted' publishing message type x 2. independent send port subscribing type x , doing it's bit now problem when message published orchestration has property ackrequired set 'true', both send ports (one hooked orchestration , 1 independent 1 subscribing purely based on message type) publishing delivery notification orchestration messing things up, possible send port hard bound orchestration generate delivery notification? want know that. thanks syed hi, somewhat nasty, create custom pipelinecomponent resets ackrequired false , use pipelinecomponent in pipeline in independent sendport. btw: purpose of independent sendport? possible update orchestration include additional send independent sendport? regards, rené BizTalk Server  &

Please help! HyperTerminal can read COM port, but .NET code can't

in past, if reading our device (an electronic tag reader outputs string) in hyperterminal, assured reading show in our .net winforms app. but have situation works in hyperterminal not via our .net code.  anybody have clue?  below .net code works fine of time, except today @ 1 location.  i'm thinking maybe while hyperterminal can read com ports, .net balking @ 1 or more reason?  and yes, we're sure close 1 app before trying other. below our code in case has clue.  thanks in advance. using system; using system.io.ports; using system.threading.tasks; using system.windows.forms; namespace frc.cow.device.diagnosis {     public partial class mainform : form     {         serialport _serialport;              public mainform()         {             initializecomponent();         }                  private void openportbutton_click(object sender, eventargs e)         {             _serialport = new serialport(“com8”, 9600, parity.none, 8, st

Biztalk sso db log file incresing in size (SSODB_log.ldf)

hi all, we witnessing increase in ssodb_log.ldf file , grows 3 gb. what getting logged in files in context biztalk transactions ? how tackle issue of keeping in control , not clogging our database server ? the autogrowth settings db logs recommended. regards  yes, size of biztalk databases transaction log controlled biztalk server backup job . are looking tool viewing ssodb transaction log? there a  logfile viewer  in sql server management studio can use. if using scom, t he frequent polling scom can result in huge auditing table in ssodb database. refer:  scom polling causing large audit table in ssodb the biztalk jobs clean completed & terminated transactions create free space in data or log file, still consumes diskspace. if want free space io disk space have manually shrink database or database files, see  transaction log shrinking , truncation in sql server  and  shrinking database .  rachit sikroria (microsoft azure mvp)

System.Windows.Forms.DataGridViewCellFormattingEventArgs' does not contain a constructor that takes 1 arguments

i keep getting following error message when compile code:     error 1 'system.windows.forms.datagridviewcellformattingeventargs' not contain constructor takes 1 arguments causing - code far: form1.designer.cs     this.datagridview1.cellclick += new system.windows.forms.datagridviewcellformattingeventargs(this.datagridview1_cellclick); form1.cs       private void datagridview1_cellclick(object sender, datagridviewcellformattingeventargs e)             {                 if (this.datagridview1.columns[e.columnindex].name == "driverno")                 {                     messagebox.show("hello");                 }             } hi methuselah90, try this: this.datagridview1.cellclick += new system.windows.forms.datagridviewcelleventhandler(this.datagridview1_cellclick); private void datagridview1_cellclick(object sender, datagridviewcelleventargs e) { if (this.datagridview1.columns[e.

"Compressing" X, Y, and Z floats?

hello! currently working really, large 3d models need saved files. due limited disc space, need save space possible. what i'd somehow 'compress' x, y , z float coordinates each vertex. had thought getting average of 3 floats, , having value can aid in deciphering... failed. does have ideas on how can this? thanks! (1) range of values? (2) required resolution? the answers questions determine kind of compression can do. Visual Studio Languages  ,  .NET Framework  >  Visual C#

Error while reading a text file - Logging line number and record

hi i working on .net 3.5 windows application. arecord brecord crecord drecord brecord crecord arecord brecord crecord drecord zrecord , goes on i store records in  different array objects. arrarecords, arrbrecords , arrcrecords..... i use forloop loop through each array , individual values(date field, name, time, integer, string) using substring function , write output file. i error while reading individual values each record if record not in expected format. length less expected alphanumeric value encountered when expected value integer if there space between characters , trying convert integer or double. date time value not in expected format , errro occurs while converting i cannot validate each field before reading because size of file huge , number of files processed more. when there error, execution goes catch block , skips processing of other records. if error, want log line number of record in text file , record value in error lo

Not showing in Search Results

hi folks, well, maps page (hopefully link works) isn't showing in maps search results. http://www.bing.com/maps/default.aspx?q=woodsshop&mkt=en&form=hdrsc4#bglkpxluotn4mti1mzi1oq== i've had maps page few years now, it's complete, lots of info, , pictures of work. deck design , build, have great website. i'm in spring valley, calif., , when enter "deck design, spring valley, calif. 91977, maps page doesn't show up. 3 results show , none anywhere near spring valley. http://tinyurl.com/bc56mcv bing maps search any idea why not? have great results google local maps page. hope has suggestions, these days need results more ever! edit- whoops, noticed forum "bing maps development api's , not bing maps consumer site". sorry that, how consumer site?? hi there, this forum developers resolve issues using bing maps apis. sounds problem best reported going www.bing.com/maps , clicking on grey "feedback" text link @ b

Error : Finding the document specification by message type "http://schemas.insight.biztalk/edi/d97a#EFACT_D97A_ORDRSP_CTIA" failed. Verify the schema deployed properly.

hi, i have added edifact schema , assembly building fine, after deploy assembly, not able view deployed edifact schema , when send test message, error. finding document specification message type "http://schemas.insight.biztalk/edi/d97a#efact_d97a_ordrsp_ctia" failed. verify schema deployed properly.  any ideas why happens ? please help thanks in advance surya the default namespace edifact is: http://schemas.microsoft.com/biztalk/edi/edifact/2006 it seems edidisassembler using namespace called:  http://schemas.insight.biztalk/edi/d97a must have been set in agreement? if wish use namespace, make sure change targetnamespace on schema. morten la cour BizTalk Server  >  BizTalk Server EDI and AS2

Reflector & Microsoft???

i found little program today can decompile .net apps. i'm sure of have heard of it; reflector. software makes simple open apps code , ever want it. after playing bit ideal popped head microsoft shut down soon. went microsoft site , entered reflector in search box. sure find news ans going court........ no fast.... first result: http://msdn.microsoft.com/smartclient/community/heroes/reflector.aspx here microsoft has designer of progie: this month windows forms team tips collective hat lutz roeder reflector class browser. app loads assemblies installed .net framework sdk , uses reflection enumerate types in them. missing here. please tell me why good. don't it. has microsoft decide create open source..... as know reflector read code , allow others view it. 1 of things have found application allow view code in other .net languages, assist in learning code. if security worried about, create small application , run code through code dotfuscator system , have @ code. have

Requires unproven in constructor using Regex

hi, i'm trying ensure id string has specific format, , tries ensure using regular expression. results in 'requires unproven', , fail see why happens? isn't simple matter of evaluating bool? thanks, rasmus   code example: using system; using system.collections.generic; using system.linq; using system.text; using system.diagnostics.contracts; using system.text.regularexpressions; namespace test { class id { public static regex re = new regex("^test$"); private string id; public id(string id) { contract.requires(id.re.ismatch(id)); this.id = id; } [contractinvariantmethod] private void invariant() { contract.invariant( id.re.ismatch( this.id ) ); } } } hi, the static checker doesn't understand how evaluate regular expressions.  believe doesn't reason contents of strings yet either. http://s

Alternative for MAX or Top N

hi, i need able max or top n results, going through documentation, looks there no support of now. there work around in interim? thanks this not available yet. for vote feature, , track status of feature request,  on uservoice. http://feedback.azure.com/forums/263030-documentdb/suggestions/6333963-add-support-for-aggregate-functions-like-count-su closing it's feature request, not support question existing feature set. Microsoft Azure  >  Azure Cosmos DB

Biztalk Service issue.

hi all,   two machines a, b, both configured same biztalkmgmtdb(now belong same group), sql in clustered environment, able start enterprisesinglesignon services in a, b. if start biztalkservice in getting started working fine, if start in b getting following error message , service getting stopped.   "the biztalk service biztalk group : biztalkserverapplication service on local computer started , stopped. services stop automatically if no work do, example, performance logs , alerts services."   is correct???   we using a, b inorder avoid failover (if any 1 of m/c's down, other can continue service). hi are here no other errors in eventlog? -- eliasen BizTalk Server  >  BizTalk Server General

Testing for null interface pointer

i know should , simple but.... having following definitions namespace xyz.dataconversions {     public interface iimportablefiletype : iwindowsfiletypedescriptor, ifiletypedescriptor, ioptionsdialogprovider     {         void import(ilist<iimportitem> items, importexportresult result = null);         void import(ilist<string> sourcefilepaths, string destinationfolder, importexportresult result = null);         void import(string sourcefilepath, string destinationfolder, importexportresult result = null);     } } and this namespace xyz.dataconversions {     public static class abcimports     {         public static readonly iimportablefiletype dxf;         public static readonly iimportablefiletype cmx;         public static readonly iimportablefiletype hpgl;     } } how test null situation (the following throws exception because hpgl null)  if (abcimports.hpgl != null) thanks in advance i think that there problem. execepti

How do I make several choices in a text box [C#]?

ok, i'm ridiculously new c#, , i'm trying make small text adventure game in it, don't know how 1 thing without making tons of separate lines of code. here's code have right now: if (textbox1.text == "left")             {                 messagebox.show("you walk short while before coming upon building, enter or keep walking?");             } what i'm trying give them multiple things type in show same message box, can't remember how that, help? not sure understood.  like this? if (textbox1.text == "left" || textbox1.text == "right" || textbox1.text == "fly") { messagebox.show( ... ); } jose r. mcp code samples Visual Studio Languages  ,  .NET Framework

Data Layer Interface design

hi,   i working on n-tier architecture. have p layer, bl, dal, data tier....   i working on dal , want expose interface dal bl use...   want know should return type.... thinking of idictionary again converting datatable idictionary big headache..   i have read somewhere should not use datatable, dataset..rather should use interface.......   please guide me..   hey,   in scenario suggest use business entities.     Architecture  >  Architecture General

localization for composite controls

hi,       creating control (scheduler control) composition of many controls (such buttons, calendar, combobox etc) . pls suggest best way handle licalization. application have many more composite controls in future. iam looking generalized way handle localization. pls provide thoughts on this.   thanks, satish have looked @ site: http://msdn.microsoft.com/en-us/library/cc838238(vs.95).aspx  about localization? Silverlight  >  Silverlight Controls and Silverlight Toolkit

PowerPivot: Is MS allocating enough resources to make it a "slam dunk" winner in the BI market?

i relatively new user of powerpivot. biologist training, training in epidemiology , statistics well, not programmer or bi analyst.  have been involved in developing several successful data management systems, starting 20 or more years ago, classified simple bi efforts.  earliest 1 involved hiring outside database programmers, subsequent ones involved using combination of lotus @ first, excel, access, alpha5, supplemented custom programming.  involvement far powerpivot has been feed data tables either imported access or large tables of lab results available csv files. applications agriservice industry, small businesses ~100 employees or less. i excited see powerpivot. makes data assessment more within reach of of not data analysts or mis professionals. find, however, seems despite resources ms seem able apply development of tool apparent great potential in apparently rapidly burgeoning industry, product seems must allocated limited resources ms. couple of reasons. first, wh

No typelib generated

namespace interfaces {   [system.runtime.interopservices. comvisible ( true )]   public interface ibaseballstats   {     double calcbattingavg( int atbats, int hits);    } } i have 1 interface declared in project has "make assembly com-visible" , "register com interop" check boxes checked. when build app, warning saying dll "does not contain types can registered com interop". expecting see type lib file created in bin directory. why warning , no tlb file? thx in advance. todd this documented in msdn or perhaps kb somewhere.  tlbexp not generate tlb unless have @ least 1 com visible class.  since assembly contains com visible interfaces tlbexp not generate tlb.  create dummy com class nothing interface generated.  alternatively create idl file hand , use midl generate necessary code generate tlb dummy class easier.  i'm not sure why tool works way pretty rare have interface com assembly.  have @ least 1 com class com clie

Code for authentication

hello, i am new windows azure services, problem , know how to add data in tables, how can extract data when press buttons inside our windows store app accordingly. if anyone provide code , be a huge help. regards, manideep orbit technology research pvt. limited manideep hi mummadi manideep, for information on how use azure mobile services leverage data in a mobile app, refer following link. illustrates how you would download app stores data in memory, create new mobile service, integrate mobile service app, , login azure management portal view changes data made when running app. http://azure.microsoft.com/en-us/documentation/articles/mobile-services-windows-phone-get-started-data/ also details on how add offline support windows store app using azure mobile services, allow interact local database when in offline scenario, refer following link. features here allow sync local changes mobile service when online again. http://azure.microsoft.com/en-us/documentati

How to deploy Microsoft Outlook addin in x86 and x64 bit version?

Image
new working microsoft office. have created addin our microsoft outlook email. 1 product written visual studio 2013 our x64 bit computers, second version written visual studio 2010. need deploy x86 version , x64 bit version. question how deploy x86 version? hi bthumber, thank posting here. for question, want deploy x86 version. maybe try following. right-click add-in project (not setup project) , select properties ensure following ticked: microsoft .net framework 4 client profile (x86 , x64) microsoft visual studio 2010 tools office runtine (x86 , x64) for more details, please refer link . i hope helpful you. best regards, wendy we trying better understand customer views on social support experience, participation in interview project appreciated if have time. helping make community forums great place. click here participate survey. Visual Studio Languages

Problems while registering AzureStack with Azure

hi, i have problem registering azurestack azure. i'm following url: https://docs.microsoft.com/en-us/azure/azure-stack/azure-stack-register , error while running command add-azsregistration system.management.automation.remoteexception: term 'new-azurebridgeserviceprincipal' not recognized name of cmdlet, function, script file, or operable program. check spelling of name, or if path included, verify path correct , try again. if want run command new-azurebridgeserviceprincipal command unknown. there special modul have load first? thanks hint carsten hi just update above, think have been able resolve registration issue asdk deployment. looking @ github history, there appears have been recent changes registration process. documentation specified running `registerwithazure.ps1` mentions importing `registerwithazure.psm1` , running `add-azsregistration`. since downloaded adsk , created cloudbuilder.vhdx file 2 weeks ago, suspect maybe these changes not in

Web Service not working when try to run through Explorer, other systems

hey guys, here feed i have created webservice ws, having 1 method. when debug it, it works fine.  i able publish through visual studio 2008 ide but when try run through internet explorer, giving me error message file not found. (for have created web form test it) my web service uses com components works fine in debug mode. any clue appreciated. <system.web.services.webservice(namespace:= "http://servername/virtualdir/" )> in place of servername can put iis server on lan. ~sam sounds when publish webservice needed files not getting published.  suggest compare structure of published services debugging environment. daniel roth asmx, wcf metadata Archived Forums A-B  >  ASMX Web Services and XML Serialization

Azure API Management connecting to on-premise BizTalk 2013 R2

hi , have 3 questions 1. need connect azure api management on-premise bts 2013 best method connect , if using vpn, need premium edition of azure api management, spend volume have. other options have in scenario? 2. need expose services bts using webhttp adaptor in order called from azure api management? can call existing wsdl web service exposed bts (using wcf-basichttp) from azure api management ? hope rest endpoint must connected from azure api management bts, please confirm  3. please guide me right page can see step step guide exposing rest service bts, find examples consuming rest services only. came across  http://vikasbhardwaj15.blogspot.com/2014/01/publish-rest-service-from-biztalk-server.html but not helpful extent need. in advance vivek hi, thank reaching out us. researching gather more information regards request. shall revert update @ earliest. sincerely appreciate patience. regards, asha

Contract.ForAll and multithreaded

hello, i have encountered problem seems multithreading related when using contract.forall in postcondition of static method (at runtime). here repo: namespace contractforallmultithreading { class program { static random rand = new random(); static string [] dosomething() { contract.ensures(contract.result< string []>() != null ); contract.ensures(contract.forall(0, contract.result< string []>().length, => contract.result< string []>()[i] != null )); // crashes index out of range int count; lock (rand) { count = rand.next(0, 10); } string [] result = new string [count]; for ( int = 0; < result.length; i++) result[i] = string .empty; return result; } static void threadpoc() { while ( true ) { string [] data = dosomething(); thread.sleep(0); } } static void main( s

Method signature error for Delegate type

quite strange! i following error: error 1 error c3352: 'void browserhelperobject::skeletal::document_completed(system::object ^,system::object ^%)' : specified function not match delegate type 'void (system::object ^,system::object ^%)'  any ideas folks??? the method signature seems same specified, , yet!   i've solved issue declaring document_completed method in skeletal class "static" .NET Framework  >  Common Language Runtime Internals and Architecture

Step-by-Step Turtorial: Visual Studio 2012 Using Javascript and only REST APIs for CRUD operations on a Hostweb list?

i love see basic step-by-step tutorial walks me through: creating sharepoint hosted app following constraints: 1. app should use rest servcies 2. app should not use csom calls 3. app should use json (odata) 4. app should able access existing list in host web. ideally tutorial provide step-by-step explanation how users can build themsevles, finished solution 1 can download , load visual studio. the reason asking can find many examples , tutorials on how build apps use csom c#, none satisfy constraints above.  if there tutorial sample, can please reply post reference it.  marcel meth this provider-hosted app uses cross-domain library. questions respect js + rest: sharepoint 2013: perform basic data operations on files , folders using rest since, ricky says, have use js in sharepoint-hosted apps, , since want use cross-domain library, code in here should applicable you, though provider-hosted app.

How to access USB function through in Universal App

is there class available universal access usb functionalists ? provide signal on / of usb port likewise check tutorial: https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn263144.aspx?f=255&mspperror=-2147217396#connect_to_the_usb_device fouad roumieh Visual Studio Languages  ,  .NET Framework  >  Visual C#

Use of Attributes and Their Life

well started using attributes , got few problems already... thats why wanna ask few questions them. have written custom made attribute asp winapi filtering (custom attribute implementing iactionfilter , iexceptionfilter). let's suppose wanna have instance variable inside attribute. how behave in runtime? call actionfilter , exceptionfilter use same instance of it? , how gc treat attributes? bound life of class instance? should put instance variables inside attributes? attributes treated metadata "whatever code consume function" read, runtime or components. that means shares same lifetime class/member attached with. btw, attribute parameters stored instance variable. "name" in datamemberattribute . it is queried whatever data-binding control bind to... or not read @ all. said in beginning, depends on whether whatever consuming knows/wants use it. otherwise has no effect @ all.

ESB Exception Management portal for biztalk 2006

hi we have 5 biztalk applications & not have exception processing nor portal seeing exceptions. i know if have use esb exception framework & portal biztalk 2006 r2. cas1980 hi, we have used in several projects. before have used our own exception framework , portal. what specific questions have regarding this? hth, randal van splunteren - mvp, mcts biztalk server http://biztalkmessages.vansplunteren.net please mark answered if answers question. check out powershell provider biztalk: http://psbiztalk.codeplex.com BizTalk Server  >  BizTalk ESB Toolkit

Try-Catch and performance

hi, i understant should not not use exceptions control application flow. makes sense! is performance affected when exception occurs (catch block executed) or performance affected having code inside de try-catch-finally block, when "catch" block not executed (i.e:no exception occurs)? thanks in advance, dd   performance adversely affected when exceptions occur. convert between vb, c#, c++, & java (http://www.tangiblesoftwaresolutions.com) .NET Framework  >  Common Language Runtime Internals and Architecture

using WCF adapter with WCF-SQL adapter

Image
hi all, i have implemented scenario wcf adapter bidirectional when message receive sends bidirectional adapter wcf-sql adapter , poll information database , again in response wcf send information user created orchestration this       which port1 wcf category , second 1 wcf-sql purpose of creating use add generated item , add meta data fits wcf-sql adapter , wcf adapter expose orchestration wcf service using wizard after test in .net application use wcf service crashes , when check event viewer see error :   there failure executing receive pipeline: "microsoft.biztalk.defaultpipelines.xmlreceive, microsoft.biztalk.defaultpipelines, version=3.0.1.0, culture=neutral, publickeytoken=31bf3856ad364e35" source: "xml disassembler" receive port: "wcfreceiveport_fff/wcfservice_fff" uri: "/fff/wcfservice_fff.svc" reason: cannot locate document specification because multiple schemas matched message type "http://schemas.microsoft.co

Apps for Office : How to get Document Properties in task Pane App for Word using javascript ??????

Image
apps office : how document properties in task pane app word using javascript ?????? . word document open document library new document content type. how can read document properties in task pane app using javascript ? ahsan ranjha hi, according description, want properties of local document app interacting with. as far know, there no method or property of document object in javascript api office can used currently. as know, apps office @ supporting office applications using power of web , standard web technologies rather operate word object model. access properties of local document, may need resort document.customdocumentproperties property in word object model. if have suggestion development of apps office, please feel free submit user voice . we trying better understand customer views on social support experience, participation in interview project appreciated if have time. helping make community forums great place. click here participate surv

API Manager API no longer connecting to backend systems

hi, we have implemented api manager frontend our webservices. testing yesterday morning change response in case of error (wanted xml response instead of json response makes more sence in soap situation). @ first worked fine , see requests , responses in our backend. around noon there serious delays in seeing request in our backend. first thinking small issues in our network assured that not case. today work home , still no message (or networking traffic) arriving @ our backend. tested backend webservice , working fine. appears azure servers (no longer) sending traffic our backend servers. please ask me information need solve problem. wanted publish service testing customer today in current state not useable. marc it turned out issue in backend created infinite loop of messages if there error in <on-error> policy. solved issue in policy , microsoft reported working on preventing infinite loop in backend.

BizTalk Request Response Error Description: An internal server error was encountered while attempting to transmit the message

hi    im using wcf-wshttp send port request response messgae. all working fine till today afternoon until experienced weird error " error description: internal server error encountered while attempting transmit message " my send port gets suspended resumable. im archiving request response message. able hit other service , response in folder. but in soap ui 3.0 when trigger request im getting above error. please me fix/find issue also im catching soap fault message in orchestration thanks hi , it happens when server has issues hosts service. the probable reason : 1.temporary unavailability of service sending request 2.the endpoint have added in soap ui changed . you can try reloading end point again in soap ui. i hope helps!!!!!! please mark helpful. if answers question, please mark "answered". reduce visits same post answered , guys same question yours without posting . maheshkumar s. tiwari|team lead/consultant(ed

Blank AS2 MDNs (both synchronous and asynchronous)

i have set synchronous mdn as2 agreement third party whom exchanging edi document (as2 send \receive pipelines). on receive side , having problem in sending asynchronous mdn. through wireshark monitored biztalk sending blank mdn doesn’t have as2 headers , hence partner gets error delivery of message failed whereas on our biztalk server, receive document , no error generated. message exchange sequence when client sends message captured via wireshark given below . post /wow/btshttpreceive.dll http/1.0 host: as2uat.costagroup.com.au:75 user-agent: rpt-httpclient/0.3-3i (linux) as2-from: gxs_as2_ics as2-to: costaas2uat as2-version: 1.2 date: fri, 24 jul 2015 05:26:18 gmt disposition-notification-options: signed-receipt-protocol=optional,pkcs7-signature; signed-receipt-micalg=optional,sha1 disposition-notification-to: http://as2.am.gxsics.com/enterprise/as2 ediint-features: as2-reliability from: notifyas2@gxs.com message-id: <003646685903804443@as2.am.gxsic

Not getting items from the list

i have 2 lists 1 juniorstudents , 1 seniorstudents. in juniorstudents have method promoting juniorstudent seniorstudent. first deleting juniorstudent , putting seniorstudent list. when try view student when calling method viewstudents not getting student. ideas why so. here code: ublic class seniorstudentsclass { public list<student> studlist = new list<student>(); public void viewstudents() { (int = 0; < studlist.count; i++) { console.write(studlist[i].id + "\t"); console.write(studlist[i].year + "\t"); console.write(studlist[i].name + "\t"); console.write(studlist[i].surname + "\t"); console.write(studlist[i].dob + "\t"); console.write(studlist[i].addr); console.writeline(); } public class juniorstudentsclass {