Posts

Showing posts from January, 2011

Error accessing Azure Function App

i'm getting random error saying need check logs, i'm not sure supposed see , look... error: unable reach function app. app having temporary issue or may failing start. can check logs or try again in couple of minutes. session id: b8403744f4704c309e1b9f8e2775f938 timestamp: 2017-01-30t13:33:43.719z ps: seeing error 1 of function apps. here's few links helpful tips:  http://markheath.net/post/three-ways-view-error-logs-azure-functions https://docs.microsoft.com/en-us/azure/azure-functions/functions-monitoring if don't give information need, try going yourfunctionapp.scm.azurewebsites.net/debugconsole , navigate logfiles/application/functions, should contain functions related logs. Microsoft Azure  >  Azure Functions

Can anyone help me to clarify this doubt why j is not initialized in if block?

namespace consoleapplication3 { class program { static void main(string[] args) { int = 10; int j; // int j=10; got output 20 in console app if j declaring here , initializing - if (a == 10) //- in if block not getting output 20 why? { j = 20; } console.writeline(j); /*here not getting output instead of error coming use of unassigned local variable 'j' */ console.readline(); } } } while clear inspection j assigned value of 20 in if block, bit irrelevant error, couple of reasons. the short answer c# language rules require j unconditionally assigned value before use it.  clearly in case j assigned value conditionally (the fact condition true not relevant language rules another reason code flow analysis required determine j=20 line hit.  however code flow analysis done after code has be

BizTalk 2004 deployment timeout error

hi, i trying deploy orchestration using biztalk 2004 deployment wizard , following error. there way can change timeout higher value? please help.   information updating binding information. connectionstring="application name=biztalk server deployment;server=spqdphta18;database=biztalkmgmtdb;integrated security=true;connect timeout=30" information updating send ports, send port groups, , receive ports... error failed updating binding information. bindingexception: timeout expired. timeout period elapsed prior completion of operation or server not responding. usually because don't have enough permissions deployment. if deploying vs, make sure started vs "as administrator". leonid ganeline [biztalk mvp] biztalkien: advanced questions BizTalk Server  > 

Save filenames inside a directory to textbox

i have little question, i want make program reads filenames inside selected folder. , after selecting folder saves filenames in (rich)textbox. select example folder contains files names: "piet" , "joop". after selecting folder saves names "piet" , "joop" textbox. here code far: using system; using system.collections.generic; using system.componentmodel; using system.data; using system.drawing; using system.linq; using system.text; using system.windows.forms; using system.io; using system.collections; namespace trackreader { public partial class form1 : form { public form1() { initializecomponent(); } private void exittoolstripmenuitem_click(object sender, eventargs e) { this.close(); } private void infotoolstripmenuitem_click(object sender, eventargs e) { form2 form2 = new form2(); form

SSO Configuration Application MMC Snap-In problem

hello everybody,   i starting using tool of microsoft store config data of biztalk applications. in past i've used sso tool of richard seroter came accross 1 , thought i'd give try it's giving me headache whenever i'm trying modify/add/delete key/value pair. when add pair sso app overwrites existing 1 though has different name, @ other times deletes other pairs in app including 1 being created. seems whatever @ random. it's handy , easy access within biztalk applications i'm worried admin might want change value sometime (an email adres example) , accidently destroy entire tree.   anybody know what's cause of , how can resolved? known issue? many in advance sharif hello sharif,   i happy announce have tested app biztalk 2010, works great! unfortunately, on previous versions, not work @ all. the mmc not start; throws exception before comes up. but when, using   biztalk   2010 running on windows server 2008r2, using package on link

WCF Input/output to Biztalk server project

is there example use wcf server feeds flat file data 2 dimensional array of records biztalk sever, biztalk sever process/sort group data in array , can send output or via wcf service xml please help vikas flat file 2 dimensional? mean record (header) , data fileds? if have wcf can drop 2 dimensional flat file (with data fields) folder, in biztalk can transform flat file xml, sort thee data fields (may using muenchian in xslt) , output xml service. following articles can point flat file available biztalk: creating flat file schemas using biztalk biztalk flat file schema wizard walkthrough biztalk server: grouping , sorting operations inside biztalk maps using muenchian method muenchian grouping , sorting in biztalk maps wcf send adapter wcf adapters if answers question please mark accordingly. if post helpful, please vote helpful clicking upward arrow mark next reply. BizTalk Se

Mapping Issue(if schema node is not present)

Image
i have following map follows: if node student_city not present in source schema(student) map not working . how can right output if node not present in source schema , want proceed schema ? prakash when mean map not working, when test map in visual studio. warning, can ignore. in above map, if student_city not present, employee_salary not mapped, rest of elements should mapped. if student_city optional field, in input schema ensure "minoccurs" property set 0. , in case ensure employee_salary's "minoccurs" property set 0 in output schema. avoid warning when test map in visual studio. if answers question please mark accordingly. if post helpful, please vote helpful clicking upward arrow mark next reply. BizTalk Server  >  BizTalk Server General

No Ads even after 50000 download

i have app "write on photo" http://www.windowsphone.com/en-us/store/app/write-on-your-photo/485e787e-2af5-4876-a488-fbd9ad7253dd code used in xaml   <ui:adcontrol                  applicationid="4439bec2-bd38-4ed4-8eb7-74b48ab3a21c"                        adunitid="159357"                        grid.row="1"                       horizontalalignment="left"                        height="80"                        verticalalignment="top" width="480"  /> i using correct applicationid , adunitid not getting ads on app. app have rating , download. please suggest me missing here. thanks, avtar you can have do, , can better think can. it fixed. required capabilities missing manifest (wmappmanifest.xml): id_cap_phonedialer, id_cap_identity_user. you can have do, , can better think can. Windows

Change the Style/Templete in runtime

hi, i want to change style/templete of button using code in runtime   any examples ? prasad - www.beautifulmind.blog.co.in   hi, myself figured out here answer. <window  xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation "  xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml "  x:class="untitledproject1.window7"  x:name="window"  title="window7"  width="640" height="480">  <window.resources>   <style x:key="buttonstyledemo" targettype="{x:type button}">    <setter property="foreground" value="#ff2f29fb"/>   </style>    </window.resources>  <grid x:name="layoutroot">   <button horizontalalignment="left" margin="98,0,0,126" verticalalignment="bottom" width="146" height="59" content="button" x:name="button1" click="button1_click"

Image Control to Bitmap

hi, i trying system.drawing.bitmap out of system.windows.controls.image. not see simple way in .net, and i assume i missing something. does know how this? c# code samples appreciated thanks, wasabi fan wasabifan ... example (for bitmapimages): bitmap bmpout = null ; using (memorystream ms = new memorystream()) { pngbitmapencoder encoder = new pngbitmapencoder(); encoder.frames.add(bitmapframe.create((bitmapsource) this .usercontrol11.image1.source)); encoder.save(ms); using (bitmap bmp = new bitmap(ms)) { bmpout = new bitmap(bmp); } }  ... this.usercontrol11.image1 wpf-image-control (tested in elementhost) regards,   thorsten   Visual Studio Languages  , 

LNK2022 error

hi all, we have mixup of managed , unmanaged code. managed code compile using /clr:oldsyntax option. not use packing. want compile files wether managed or unmanaged using /clr:oldsyntax option. when , following errors: prfinpz4.obj : error lnk2022: metadata operation failed (8013118d) : inconsistent layout information in duplicated types (_devicemodea): (0x020002d7). wptinpcp.obj : error lnk2022: metadata operation failed (8013118d) : inconsistent layout information in duplicated types (_devicemodea): (0x02000312). prfinpz3.obj : error lnk2022: metadata operation failed (8013118d) : inconsistent layout information in duplicated types (_devicemodea): (0x020002c8). i found _devicemodea structure available in widgdi.h file. in none of files have directly included wingdi.h. there way find out header files have included includes wingdi.h? how can solve above error? please help..   you have use packing of sort.  compiler command line like?  if there -zp n option on command lin

how to save the ARRAY returned by C DLL from C sharp

i new programing ... i want save array returned c dll c sharp array my code fallows 1.c dll          extern "c"        {            __declspec(dllexport) int* main(int a1[], int a2[] ,int row1,int col1,int col2) {        ................................ ................................ ................................ int * =(int) malloc(sizeof(int)*k); ........................... return a; } }   and c sharp program fallows.  [dllimport("f:\\just it\\cuda\\gpumul\\gpumulgui\\resource\\gpumul.dll")]         [return: marshalas(unmanagedtype.lparray )]         public static extern intptr main(int[] k1, int[] k2, int x, int y, int z);  public static int[] getarray()         {                         int size = 10             int x = 8             int y = 7             int z =8           intptr array = main(matrixone, matrixtwo, x, y, z);-----------------run time error here  "int/uint must paired sysint

Azure Free trial

hi, if azure free trial, , if use azure mobile services develop application , communicate azure end services, after free trial ends, application still works? mean windows phone application still able , store data in azure end? or services closed?  near expiration, warnings , notifications optionally converting paid-subscription. upon expiration, resources associated subscription including app , data will no longer available. a trial account for evaluation , provide path to seamlessly transition production should you choose so. if not, thank for taking time try it. hope clarify.    Microsoft Azure  >  Azure Mobile Apps

SPO User Profile: Provider Hosted App - Access Denied

Image
hi, i'm developing provider hosted app full control permission on site collection , write permission on user profile , app-only call enabled. when try user profile properties a user access denied exception. the app target site in sharepoint online. code: peoplemanager peoplemanager = new peoplemanager(clientcontext); personproperties personproperties = peoplemanager.getpropertiesfor(user.loginname); clientcontext.load(personproperties, p => p.accountname, p => p.userprofileproperties); clientcontext.executequery();  any suggestions? andrea. hi andrea, how did set token in provider hosted app? per knowledge, cannot use app-only policy user profile apis. need use service account accessing user profiles in apps. please check link below more reference: https://msdn.microsoft.com/en-us/library/office/mt210897.aspx#sectionsection1 thanks, victoria technet community support please remember mark replies answers if help, , unmark answers if prov

Windows Service doesnt receive callback events

i have win32 dll , imported .net c# application. dll calls callback functions defined in app. works well, had rewrite app windows service. dont receive events dll. observed in service, callback functions run in separated thread , in app, main process , callbacks run in same thread. does has idea this? hi c arl, you can call callback functions use of delegates. here sample coding uses delegates callbackfunctions. code snippet public delegate void callbacklistener; class sample { public void callbackfunction() { if(this.invokerequired) { callbacklistener listener = new callbacklistener(); this.invoke(listener); } else { // normal code function } } } .NET Framework  >  Common Language Runtime Internals and Architecture

NLB or Clustering BizTalk

hi, why biztalk host clustering done adapters file, ftp , msmq adapters , nlb done http adapter, soap adapter , wcf http adapters. how know should preferred in case. hopefully question makes sense. thanks. the file, ftp , msmq/wmq clients biztalk activated, meaning run within biztalk.  have no internal concurrency management 2 clients (in 2 host instances on 2 servers for example) can request same message @ same time unaware of each other.  so, these types of clients should run in clustered host instance ensure 1 instance of receive location active @ time. http/soap client activated, meaning external client make inbound connection.  nlb route each incoming connection 1 machine @ time if 2 instances of receive location active, 1 connection/message. note, cannot run windows cluster services , nlb on same 2 computers. BizTalk Server  > 

Web Service consumer fails to consume XMLDocument

hi, could me resolve problem. developed web service receives xml document , returns xml document calling program. for testing purpose created dummy web service consumer calls web service. works fine in local pc. problem occurred when tried move web service (asmx & dll) internet development server. calling program works fine if web reference pointing web service in localhost, fails if pointing internet dev server. returns error: server error in '/' application. server unable process request. ---> given path's format not supported. description: an unhandled exception occurred during execution of current web request. please review stack trace more information error , originated in code. exception details: system.web.services.protocols.soapexception: server unable process request. ---> given path's format not supported. source error: line 142: <system.web.services.protocols.soapdocumentmethodattribute("http://www.dev.intranet/w

Bing Maps v8 API - loadModule

i trying load "microsoft.maps.clustering" using 'microsoft.maps.loadmodule'. but not getting error.without clustering,test data pushpins loaded successfully. here sample code. mainmap = new microsoft.maps.map($(id)[0],                    {                        credentials: bingmapkey,                        center: new microsoft.maps.location(39.393486, -98.100769),                        zoom: 3                    });     microsoft.maps.loadmodule("microsoft.maps.clustering", function () {         // creating sample pushpin data within map view         var pushpins = microsoft.maps.testdatagenerator.getpushpins(100, mainmap.getbounds());         var clusterlayer = new microsoft.maps.clusterlayer(pushpins, { gridsize: 100 });         mainmap.layers.insert(clusterlayer);     }); just tested , wasn't able reproduce this. error message seeing? [ blog ] [ twitter ] [ linkedin ]

Critical section in singleton

hello, i have simple singleton class contains function in an asp.net web site public membershipuser getmovieowner( guid movieid)     {          using ( moviesdatacontext mdb = new moviesdatacontext ())         {                         guid userid = mdb.moviedatas.where(movie=>movie.movieid == movieid)                                   .select(movie=>movie.userid)                                   .single();                                 return membership .getuser(userid);         }     } my question : is code should in critical section ? if user1 call function , , user2 call function ,  isn't possible user2 change movie id parameter of first user ? or 2 instances of function create in heap ? two threads can call method without problem. each thread have own movieid parameter in own stack. don't need lock anything. Visual

Flat File Schema Wizard with restriction upto 80 characters per row

hi, i have create target flat file schema purchase order using wizard, consists of header, body & footer. the requirement consists of below mentioned things: each row must consist of 80 characters only. also, major content in file positional. in body part, "+" symbol has been used delimiter. do exact idea of how file looks, please click on url here: https://github.com/gizur/gizurcloud/wiki/system_documentation%23client%23cikab%23sales-order-export actual file description mentioned along positional details. in url, detailed explanation of file present, "set file specification". please let me know how can proceed this. thanks in advance. hi abdul, this can solved following approach, 1) create flat file using flat file wizard considering set file having 1 record. header, detail records , footer in 1 single file. take sample file given in reference link , open in notepad++, join lines. please make sure verify final file specificat

Unable to initialize Azure Automation runbook blade in Preview Portal

Image
if open automation accounts blade, pick account, click on resource group, , click on 1 of runbooks, i've gotten error: "unable initialize blade definition. (see attached image) aleksandar nikolić http://powershellers.blogspot.com http://twitter.com/alexandair hi aleksandar, this known issue our ux tracking. thanks. joe levy twitter: @jodoglevy blog: http://jodoglevy.com if post helpful you, please upvote and/or mark answer others can more find in future. Microsoft Azure  >  Azure Automation

Sample Biztalk Real life application

hi all before month or started learning biztalk,now news have created many small application sending mail,csvs,inserting data 1 db another...but want develope real life senarios not able figure out should develope this what want integrate biztalk asp.net or can make other people see how biztalk can used automation integration,so can suggest me kind of senario can develope within small time,it helpfull me... thxs   repeater thread: http://social.msdn.microsoft.com/forums/en-us/biztalkgeneral/thread/19a45877-0c15-48a0-85d4-6de8df8665a4 please mark answer if answers question thanks. mo BizTalk Server  >  BizTalk Server General

Access web app : unable to upgrade app if it contains linked Sharepoint Lists

hi, i have access web app (2016) had sucessfully side-loaded in sharepoint site, , upgraded many times. added lilnked sharepoint list , experienced following problems :  - ran many deployments problems approbations made give rights access sharepoint list lost once app deployed. consequently lists empty , must manage reapprove them production site, , can't use locked app.  - worse : seems impossible upgrade app new package. upgrade process take lot of time , cancels, version number not changed. is incorrect deployment procedure mine or these points limitation of access when used linked sharepoint list ? thanks support. hi matt_bv, from description of thread , looks issue more related sharepoint. so better response , better solution issue. move thread sharepoint forum. the reason why recommend posting appropriately qualified pool of respondents, , other partners read forums regularly can either share knowledge or learn interaction us. thank understanding. re

Visual Studio 2010 Windows Form Project Lost Build Dependencies

i feel should able figure out coming blank. in windows form project in visual studio 2010 have number of c# files , if edit 1 , select run not automatically rebuild. if run executable running old one. if select build builds , can debug using latest code. all of files in solution, i.e., click on file shown in solution explorer edit it. it not issue tries build , build fails uses older version. not attempt build when press run button. the settings may relevant since project don't explicitly reference won't built when compile code.  hence importance of understanding settings you're using.  before building set to? next step, open configuration manager , ensure projects set build configuration you're compiling.  can @ build dependencies dialog if like.  vs should manage if you're not doing explicit referencing things can ugly.  sure you're using project references projects. michael taylor - 4/23/2011 http://msmvps.com/blogs/p3net

Can't delete specified file as it is still open in another process ?

i stitching tiff images when try delete images used create combined image unable open in process, i'm trying find out gone wrong in code allow me delete files: code below private void tiffyfinal() { list<string> delete = new list<string>(); system.drawing.imaging.encoder encoder1 = system.drawing.imaging.encoder.saveflag; imagecodecinfo encoderinfo1 = imagecodecinfo.getimageencoders().first(i => i.mimetype == "image/tiff"); encoderparameters encoderparameters1 = new encoderparameters(1); encoderparameters1.param[0] = new encoderparameter(encoder1, (long)encodervalue.multiframe); string verbals = configurationsettings.appsettings["verbals"]; string[] fileimagesfinal = directory.getfiles(verbals); //generate bitmap bitmap images binded system.drawing.bitmap firstimagefinal = new system.drawing.bitmap(fileimagesfinal[0]);

Focus in 3tier application

hello i want focus on proper textbox after data validation in bll. correct way? 1- returning different value , decide in presentation layer(in way need evaluate returned value again - once in bll , in ui) 2- set focus on proper textbox bll. thank you the ui should be unware of bll , the  bll unaware of ui. missing another piece you should put  into place sits between ui , bll part of presentation layer.   http://www.codeproject.com/articles/228214/understanding-basics-of-ui-design-pattern-mvc-mvp https://en.wikipedia.org/wiki/model%e2%80%93view%e2%80%93presenter you should watch entire show feel. http://polymorphicpodcast.com/shows/mv-patterns/ watching above show first should link below. , can find other links mvpvm. http://aviadezra.blogspot.com/2009/08/mvp-mvvm-winforms-data-binding.html below mvp being applied windows forms ui solution n-tier being applied tutorial given ado.net entity framework. may come point stop thinking using datasets, datat

How to handle Length of File's Names > 256 in .Net ?

i have file's names appended folder name greater 256 or 260 (whatever) characters i have application in c# .net every file reads file's size, mentioned files above gets error "could not find file ........" my os xp sp3 lot of hotfixes, updates, etc, etc. the question : 1) if xp allow existence of files mentioned above why .net framework can not handle ? 2) how can goal : read file' sizes ? its out of question : not going rename or move files , have read size of files. i need solution/strategy language-independent , independent of .net framework version. thank in advance. you can work via long path classes bcl team:  http://bcl.codeplex.com/wikipage?title=long%20path&referringtitle=home   for details, see:  http://blogs.msdn.com/b/bclteam/archive/2007/02/13/long-paths-in-net-part-1-of-3-kim-hamilton.aspx reed copsey, jr. - http://reedcopsey.com if post answers question, please click " mark answer " on post , " mark helpful

Steps, How DissemblerComponent converts FlatFile to XML

hi, i working on custom flatfile dissembler component. please suggest me, internal processing of flatfiledissembler , how flat file converted xml. regards atul you cannot have 3 messages processed in 1 pipeline that. due iprobemessage interface returning true on first attempt first pipeline since messages lack tag biztalk can use identify flatfile in question. hence, message matches first disassembler component go through. instead, create flat file pipeline per message or create generic flat file pipeline can reuse. there no need @ create own disassembler. BizTalk Server  >  BizTalk Server General

Analysis Services – Step by Step: Semi-Additive-Account

if set measure semiadditive property lastnotempty, browser shows accounttypes correct aggregation. if set measure semiadditive property sum, browser shows accounttypes correct aggregation. i have problem, if i'm attempting set measure semiadditive property of byaccount. the browser shows accounttypes aggregation sum. if start business intelligence wizard, i can see, default accounttypes have aggregatfunction = sum. dimension account has typ = accounts. measure amount has aggregatfunction = byaccount. can make ? lutz, if understand you, want change account type mapping, correct? for need: open olap visual studio (file -> open -> analysis service database); in solution explorer, click right mouse button in database (the first item in solution explorer) , select edit database; in end of windows account type mapping , can change aggregation functions; save changes.   SQL Server

SQL Server 2008 Developer Edition won't install

   i'm running vista home premium sp1.  sql server 2005 dev edition installed w/sp2.  when try install 2008, requests license key did not come with.  not want install eval, kind of stuck.  can assist? best bet contact microsoft licensing directly , ask can do: (800) 426-9400. -- jonathan kehayias (mcitp) | please mark answers solve problem | http://www.sqlclr.net SQL Server  >  SQL Server Setup & Upgrade

Performance issue become worse upon split out Web Applications into web server and DB server

hi, currenly i'm faced web applications (in web server, 2gb ram) performance issues upon seperated database(4gb ram) and web application 2 machines. before spliting, have performance issue iis need reset when "server un-available" or hanging occur. in case i proposed split out better performance , hope resolve issue. now, after spliting, users complaint responce time worst before. 1 have problem before? suggestions help? * db server sql server 2005 , sql server 2000 installed used sql server 2000 , both web servers window server 2003 installed crystal report 10. thank you..     obviously problem not on memory, since have lot. there can several issue involved. one may problem not in usage of resources sql server 2005 on server, in actual application. , think may problem. don;t know of application, let's see scenario: another thing happening (and doubt it) have network problems , communication between application , sql server 2005 taking long. let's ha

String Extension

hello, i found following extensions: public static bool isnullorempty<t>(this ienumerable<t> value) { return value == null || value.count() == 0; } public static ienumerable<t> throwifnullorempty<t>(this ienumerable<t> item, string name) { if (item.isnullorempty()) throw new argumentnullexception(name); return item; } and applied follows: public static string mymethod(string value, string key) { value.throwifnullorempty("value"); } how can applied string. logical? should have extension ienumerable , string? thank you, miguel they designing write multiple criteria in fluent style, ie: param1.throwifnullorempty().throwiflengthlessthan(3); that being said, type of thing, i'd use existing library.   cuttingedge.conditions  handles of these cases quite nicely.  you can through old discussions (very good/valid) reasons they're not using extensio

Simple question about Visual Studio

hi all, saw in lync sdk mspl video visual studio used either write mspl script lync or managed application.  what know version of visual studio have get. see at http://www.microsoft.com/visualstudio/eng/downloads there many versions of it, one? thanks any sku of visual studio 2012 should fine. can try starting visual studio express 2012 windows desktop, free , has core features. -- how ask question: http://support.microsoft.com/kb/555375 -- posting provided "as is" no warranties, , confers no rights. use of included script samples subject terms specified @ http://www.microsoft.com/info/cpyright.htm Lync Server  ,  Unified Communications  >  Microsoft Lync Serve

Authentication by Azure Mobile Apps

Image
hi, i've app store data in azure in tables authenticated access only. i use method loginasync of class mobileserviceclass , microsoft provided selected dialog showed following.  my question in how can realize user has checked check box keep me signed in. i'm not able find info anywhere in response of method. any advice? thanks daniele the scenario want apply not possible. the pop external, , can’t manage. if select "keep me signed in" in cookie set true. but can’t automatically control that. how sign in works. ----------------------------------------------------------------------------------------------------- do click on "mark answer" on post helps you, can beneficial other community members. Microsoft Azure  >  Azure Mobile Apps

Xml disassembler failing with reason start element does not match end element

hi, i'am using wcf-wshttp adapter send simple message wcf service biztalk. service can return response or throw businessfault or systemfault. i responses , faults returned , captured part of time . 1 in hundred message fails below error when businessfault or systemfault thrown . soap faults there failure executing response(receive) pipeline: "microsoft.biztalk.defaultpipelines.xmlreceive, microsoft.biztalk.defaultpipelines, version=3.0.1.0, culture=neutral, publickeytoken=31bf3856ad364e35" source: "xml disassembler" send port: "xy.integration.customapplication.customservice" uri: "https://xyz.xyz.co.xy/customservice/customservice.svc" reason: start element 'nz/faults/201' not match end element 'reason'. line 1, position 677 . i use below xpath inbound biztalk message body /*[local-name()='fault']/*[local-name()='detail' or local-name()='detail']/* | /*[not(local-name()='fault')]

Error when retrieving a C++ class from VssApi.dll ?

hello, i'm using c# access vssapi, works fine until call this method <<ivssexaminewritermetadata.getcomponent()>>. if use form a, the method returns me notimplementedexception. if use form b, success , intptr contains real pointer. with intptr, map to my c# ivsswmcomponent class in order call method ? when see c++ header file, notice that ivssexaminewritermetadata using a <<__declspec>> while  ivsswmcomponent not. difference. thank helping me. here c# implementation     [guid("902fcf7f-b7fd-42f8-81f1-b2e400b1e5bd")]     [interfacetype(cominterfacetype.interfaceisiunknown)]     public interface ivssexaminewritermetadata     {         // form a          [return: marshalas(  unmanagedtype.interface ) ]         ivsswmcomponent getcomponent( uint icomponent);         // form b          void getcomponent( uint icomponent, out intptr pcomponent );     }     [interfacetype(cominterfacetype.interfaceisiunknown)]     public interface ivsswmcomponent    

Problem activating subscription

hello, i'm trying create reports using cloudyn against our azure subscriptions.  have multiple subscriptions tied cloudyn under common ea.  i've been through process multiple times of accounts show "unactivated".  that's fine simple cost reporting have more complex reporting we'd require resource manager enabled.  understand it, resource manager , accounts showing "unactivated" 1 in same. i can edit account , supply proper rateid doing doesn't change anything.  when update says updated account still not change status "active". i suspect i'm missing simple here can't figure out might be. specific things have done/tried: imported accounts supplying ea info (this worked fine) created simple cost reports verify basic functionality working created entities , moved accounts them in order structure accounts in cloudyn added tags entities see if works (it does) clicked edit (pencil) on couple accounts , supplied correct

Config file or business rules?

hi,   have external assembly i'll call within scriptable node inside mapper.   i'd have way configure file path external assembly. i've read there's few different ways this- eg. by altering btsntsvc.exe.config file or using bre. can tell me accepted appropriate way configure setting/value pairs external assemblies in biztalk?   context, have 4 dev environments, 4 test labs , 2 production hosts instances. if have links refrence material appreciated well. richard seroter has done lot of work in area (so microsoft made tool out of it):  http://seroter.wordpress.com/2010/07/06/updated-ways-to-store-data-in-biztalk-sso-store/ i sso approach more either bre or app.config.  application value , common value functoids.  these underutilized , (largely biztalk recipes) documented.  kind regards, -dan if answers question, please mark answer BizTalk Server