Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
12answers
6k views

How to detect browser's protocol handlers?

I have created a custom URL protocol handler. http:// mailto:// custom:// I have registered a WinForms application to respond accordingly. This all works great. But I would like to be able to ...
9
votes
3answers
5k views

How to UAC elevate a COM component with .NET

I've found an article on how to elevate a COM object written in C++ by calling CoCreateInstanceAsAdmin. But what I have not been able to find or do, is a way to implement a component of my .NET (c#) ...
7
votes
1answer
354 views

Failure to create elevation COM object on Windows Seven

I am developing a COM surrogate object in C, it will be used by my applications to call the UAC elevation dialog for certain actions that require administrative rights. The plan is to make this it ...
4
votes
3answers
1k views

How do you create your own moniker (URL Protocol) on Windows systems?

How do you create your own custom moniker (or URL Protocol) on Windows systems? Examples: http: mailto: service:
3
votes
0answers
28 views

COM+ object activation in a different partiton

I had created a COM+ domain partiton then mapped it to a Windows 2008 server machine and imported a COM+ application into it. I tried using the following C# code to activte an object from that ...
2
votes
1answer
173 views

Get Process ID of COM Server

I'm doing some automation via a combination of windows message sending directly to HWNDs and calls to a COM server exposed by the automated application. If there is more than one instance running, I ...
2
votes
2answers
146 views

Where can I learn about the “shell:” URI?

I just realised there is a shell: URI, but every search engine seems to think shell: and shell are the same thing. The only thing I've found out is that you can type shell:startup right in explorer ...
1
vote
1answer
108 views

How can I increase the maxReceivedMessageSize when calling a WCF from VB6?

At the moment I have: 1 ) a WCF setup to return a block of xml (specifically it is the contents of a calendar from Exchange 2003). 2 ) a vb6 form with a command on it accessing the WCF via an object ...
1
vote
0answers
285 views

How to communicate between two COM objects using Running Object Table (ROT)?

I have two COM objects written in C++ and ATL. There are in one library and I know their IIDs and CLIDs. I can't find an example of doing this simple communication between two simple COM objects. How ...
1
vote
1answer
545 views

How to get device moniker with a known class id?

I am using a DirectShowLib which is a thin wrapper for DirectShow. I have successfully enumerated BDA devices and collected their CLSIDs. Now when user selects a device by name and I know the chosen ...
0
votes
0answers
67 views

WCF Moniker with Windows Authentication

We call a WCF Service (IIS hosted, wshttpBinding, SSL) from Microsoft Office (VBA). We call the service from MS Office Word with a WSDL-WCF Moniker string in VBA, and it works stable if we configure ...
0
votes
1answer
133 views

Python WMI moniker problem

I can not query log "Security" using WMI. Other logs works fine. Here is what i use: import wmi c = wmi.GetObject(r"winmgmts:{impersonationLevel=delegate,(Security)}!\\.\root\cimv2") for i in ...
0
votes
1answer
194 views

Getting NTLM security token from IE

I have an ActiveX that deploys some application on the client machine and starts it. When using NTLM on the IIS, the authentication with the web server done by IE and there is no problem to download ...
0
votes
2answers
381 views

“interface not found” in WCF Moniker without registration for excel

I'm trying to connect excel to a WCF service, but I can't seem to get even a trivial case to work... I get an Invalid Syntax error when I try and create the proxy in excel. I've attached the visual ...
0
votes
1answer
53 views

DSL Beta 2 - Connector Moniker - Why is it not in the diagram file?

I am creating a DSL, I want to associate two Entities with a connector but I do not want the EntityMoniker to be in the underlying XML, I need it to be in the Diagram File. I am not sure why it is not ...
0
votes
2answers
918 views

URL Moniker Examples for C# (IMoniker)

I am trying to implement an URL Moniker for MSHTML that will be used to provide images from a storage (in the application) to the HTML Edit control. I have understood that to do this I must implement ...