rvaas's Q&A profile
Windows Live Developer Forums API V3 SSLException - unable to find valid certification path to requested target
Hi, Has anyone successfully updated to adcenter API V3, it seems there is new certificate for the url adcenterapi.microsoft.com added to the certificate, I imported the certificate into my keystore but was getting the following error. PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException : unable to find valid certification path to requested target javax.net.ssl.SSLHandshakeException : sun.security.validator.ValidatorException : PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException : unable to find valid certification path to requested target at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source) at com.sun.net.ssl.internal ...Show All
SQL Server Please give me your suggestions on Report Query - Very Urgent
I need to disaplay number of Active Agencies on monthwise in one of my report. I have tbl_Agency table with ActiveDate and ActiveFlag. ActiveDate column contains always first Activation Date. If any chances in the agencies(update/delete) the same record will move to tbl_AgencyHistory table. "If an agency is inactivated in September 10th, inactivated all of October, and then reactivated November 10th - the agency would be counted in September, not in October and counted in November" ActiveDate column has always first activation date, I could not meet this requirement. This is very urgent issue, Could you please help me on this. Thanks, Malar Thanks Mugambo, ...Show All
SQL Server JDBC driver for Microsoft SQL Server 2005 SP1
Hola a todos. Saludos cordiales. Tengo instalado Microsoft Windows 2003 Server Standard Edition en un servidor IBM xSeries 220, estoy tratando de instalar IBM Director 5.10 y no ha sido posible hacer que se conecte con la base de datos. Esto ocurre cuando intento configurar el Servidor SQL en la fase final de la instalacion de IBM Director. Gracias por su ayuda, puede alguien darme alguna sugerencia Erick Gomez, Venezuela La verdad es que nunca he usado IBM Director y no estoy muy seguro de poder ayudar aqui, pero si nos das el error que ves y nos esplicas los pasos que estas dando para encontrar este error intentaremos ayudar. http://www-03.ibm.com/servers/eserver/xseries/systems_management/ibm_director/about/ ...Show All
Silverlight (formerly WPF/E) Path rendering bug
< Path Stroke = " Black " Data = " M20 20 L10 10 L20 20 L30 10 Z " /> renders incorrectly, with a fill. Is this a reasonable manner for reporting bugs I didn't see an appropriate Microsoft Connection, unless you want us to use the general WPF one. Yes this is a good place to report bugs. That does look like a bug, however, I'm confused by you path. It starts at 20,20 draws a line to 10,10 then draws a line back to 20,20 If I take out this extra line it renders correctly. <Path Stroke="Black" Data="M20 20 L10 10 L30 10 Z" /> Still an interesting find though... ...Show All
Visual Basic Cross Threading in General
Can someone answer me this question... I have programmed in VBA for years. It seems to handle directly accessing simple form objects without any worries about threads or cross-threading or whatever... It seems ( also ) to me, that this threading issue could be internally managed by the Control Class to some degree or another. Is there a good reason for this new Thread Issue that I am unaware of Hi I never used VBA but I suspect that it's used the single thread apartment model, the same way that VB6 application did. VB.NET opened up the possibility of developing multi-threaded applications in your favourite language. With regard to the control classes, these are just simple wrappers for the Win32 equivalent which also use ...Show All
Visual C++ windows program
I build my windows program and it tells me, that building is finished correctly without errors. When I try to run my program, I get error: test.exe has encountered a problem and needs to close. We are sorry for the inconvenience. My code is here: main.cpp: #define WIN32_LEAN_AND_MEAN #include "MyWin.h" #pragma comment(lib,"User32.lib") WNDPROC wndProc; HINSTANCE hInstance; char className [] = "Window Class"; char const caption [] = "Window"; int width=500; int height=500; int WINAPI WinMain (HINSTANCE hInst, HINSTANCE hPrevInst, char * cmdParam, int cmdShow) { ReggWin (wndProc, className, hInst); MkWin (caption, className, hInst, cmdShow, width, height); TPump(); } LRESULT CALLBACK Window ...Show All
Visual Studio Project being retreived incorrectly, help!
I did not store the project myself so I cannot tell you if there is a problem there. I know that the latest version of the build works. The project is a web application. I start by retreiving all the files and the .sln file into a directory. Upon opening the .sln file i am prompted to choose a working directory - it will not let me choose the current directory. It will then go into SourceSafe and retrieve *incorrect* versions of the files and place them into the new working directory. Not only that, it does not grab all the files that it is supposed to. I am wondering if it is a problem with the way the project file was saved/checked in, or if this is a problem with SourceSafe Why wont it use the files I grabbed as the prop ...Show All
SQL Server Could not load file or assembly 'Microsoft.DataWarehouse, version 9.0.242.0, Culture=neutral,publicKeyToken=89845dcd8080cc91'
Could not load file or assembly 'Microsoft.DataWarehouse, version 9.0.242.0, Culture=neutral,publicKeyToken=89845dcd8080cc91' - the system cannot find the file specified. I get this message when I try to do a forcast from the Data Mining - Forecast menu. Forecast from Table Tools, Analyse, Forecast works perfect. Running Vista and using the DMAddins_SampleData workbook. Any ideas Trond Sorry, but this didn't help to much. Seems like I've got an issue with the installer ! C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin>gacutil /u Microsoft.Ana lysisServices.Controls Microsoft (R) .NET Global Assembly Cache Utility. Version 2.0.50727.42 Copyright (c) Microsoft Corporatio ...Show All
Visual Studio Express Editions Create Database on Real time
Need help in providing VB Code for creating SQL Database Using ASP.Net 2.0 in real time. Anyone knows I would use sql commands to create the database. There is an example on the vb-tips website . ...Show All
Microsoft ISV Community Center Forums Update existing chart ranges in VBA
OK I know I am a pain but I really do not know how to solve this and I am FORCED to solve it (if it was up to me I would not be doing it in the first place). I have a user form in which the user is to enter two dates; one start date and one end date. The user then presses a button on the user form and my macro is supposed to among other things search the spreadsheet and update the chart. I have to do this with variables so direct cell references are out of the question. In theory my program works (nice huh) . It searches the spreadsheet, finds the correct cells, gets the values to put into the charts and here it goes into trouble. Updating charts works sometimes but only after having done a lot of things, I do not really know what. I dele ...Show All
Visual Studio How Do You Get the IDE Main Window Handle in a Package?
I'm new to extensibility and am looking for a way to get the window handle of the Visual Studio main window. I've found references to DTE.MainWindow.hWnd, but believe those to be applicable to Add-Ins. I need to get it in an event handler for a regular menu command. How do you do this Is there a general way to map information that I find using the DTE namespace for Add-Ins to use within a package Thanks, Carlos. This got me on the right track, but I did have to research some details. The key for me was the bit where you suggested using GetService. First, I had to find the reference for the DTE class. It is Microsoft Development Environment 8.0 (COM refernce tab). Also, the GetService method is a protected member of the Package ...Show All
Smart Device Development Missing certificates when deploying application on smartphone?
Hi guys, i'm a newbie to smartphone development. i've encountered the following error when i tried to deploy a simple "Hellow world" app to the phone: The device security configuration disallowed the connection. Ensure that you have the appropriate certificates on your device for development. Review your SDK documentation for proper security settings for connecting to this device. Device Connectivity Component I wondering do i need to install any additional certificates if so, how do i go about doing that My smartphone is Dopod 577w. Pls help! thanks! Hi mate, Im having the same problems with the orange spv c600 smartphone, i try to open the cab file but the permissions wont allow it. Did you find a so ...Show All
Software Development for Windows Vista Notifying a Distributed Workflow of State Changes
Picture this scenario: You have a central workflow, hosted however you see fit (WCF, Web Services, Remoting, whatever) and you have three different Windows Forms applications consuming this workflow. Each application can cause the workflow to change state, but I also want each application to listen for state changes to the workflow . My current train of thought involves linking the Windows Forms applications in a peer network, and whenever one peer changes the state of the workflow, the other peers are notified via service messages. The problem I'm having is that the peer network isn't functioning properly - using PNRP the peers don't detect each other reliably (sometimes they do, sometimes they don't). So, I'm wondering: do I take t ...Show All
Smart Device Development Simultaneous GPRS & GSM on Class A device (part 2)
Hi all! Apparently, an admin locked my previous thread on the subject . I'm not a native English speaker, & I don't live in America either. I'm still wondering something that wasn't answered in the previous thread, & that is not off subject of the theme of this forum. As I said before, I haven't bought any device yet, & the software I'm planning to code is still in the state of project. Let's suppose I have a Class A peripheral, & that my phone provider supports simultaneous GPRS & GSM too, I guess my software to be working both the Windows Mobile 5 (or more) Operating System & the .NET Compact Framework v2 SP1 have to support simultaneous GPRS & GSM too. If either of them don't support it, it will never work, ...Show All
Visual Studio Debugging AppDomains
Hi! I need to debug code loaded into separate AppDomains, but it seems VS debugger will not stop at break points in these AppDomains. How can I make the debugger do this Thanks in advance. Dmitry. goddamn it! feel like a stupid :-( Thank you, John! I did actually forget to load plugin's debug symbols into appdomain along with its code. ...Show All
