In my VB6 application I make several calls to a COM server my team created from a Ada project (using GNATCOM). There are basically 2 methods available on the COM server. Their prototypes in VB are: Sub PutParam(Param As Parameter_Type, Value) Function GetParam(Param As Parameter_Type) where Parameter_Type is an enumerated [...] read more
I'm evaluating Server 2008. My C++ executable is getting this error. I've seen this error on MSDN that seems to have required a hot-fix for several previous OSes. Anyone else seen this? I get the same results for the 32 & 64 bit OS. Code snippet: HRESULT GroupStart([in] short iClientId, [...] read more
Quick question (hopefully), how do I properly call the win32 function CreateProfile() from C# (managed code)? I have tried to devise a solution on my own with no avail. The syntax for CreateProfile() is: HRESULT WINAPI CreateProfile( __in LPCWSTR pszUserSid, __in LPCWSTR pszUserName, __out LPWSTR pszProfilePath, __in DWORD cchProfilePath ); [...] read more
I installed and am attempting to configure a BizTalk Server 2013 system to which we want to transition from BTS 2009. It will use a remote, clustered SQL Server 2012 instance that runs alongside SQL Server 2008 SP3 which serves the present-day production BTS 2009. When I started to configure [...] read more
Recently we moved our application from server 2003 to server 2008 (32 bit) but it is throwing an error while calling a server method. The server method is written in C++. Here is the code: CLIENT SIDE CODE: String[] arrNames = new String[]{}; System.Object []objArr = new System.Object[] { string, [...] read more