pluggable

How should I localise pluggable components.

We have an application which will dynamically load some components from separate dlls. These components have a fixed name but we want localised names to be displayed to the user and so the names need to be localised. The fact that the name needs to be localised is not a concern of the component itself, so we don't really want to poll...

Is this a good solution for localisation of pluggable components?

I asked a question previously which had only a single answer. I've had some time to play around with this now and have a plan, but want some feedback on if it is a good idea. The problem: I want a component which has a name (invariant, used to identify the component) to have its name localised in the application that is consuming it, ...

HTTP request using asynchronous pluggable protocol in Java

I need to make an HTTP request to a resource that looks like "xy:index.html" in Java. The HTTP implementation does not have to be sophisticated. I just need to be able to do this to avoid same-origin violations when running in development mode for a GWT app by forwarding HTTP requests on the server-side to the "xy" protocol. Any clue...

Pluggable Python program

I want to make a PyQt4 program that supports plugins. Basically I want the user to be able to write QWidget subclasses in PyQt4 and add/remove them from the main application window via a GUI. How would I do that, especially the plugin mechanism? ...

How to download a file through a http Asynchronous Pluggable Protocol ?

I write a temp http protocol and the Code is as follow, it works well for web pages navigating, but cannot for file download, such as http://**/111.zip . How to modify the code ? Envrionment: .Net 2.0, VS2008, C# public void Start(string szURL, IInternetProtocolSink Sink, IInternetBindInfo pOIBindInfo, uint grfPI, uint dwReserved) ...

Pluggable ASP.NET MVC framework query

I am trying to create a pluggable ASP.NET MVC framework. I have extensively used Prism (CAB for silverlight) and am a huge fan and wish to implement the following items in my pluggable ASP.NET MVC framework The framework will have a host to load the unity container and other infrastructure items like logging services and all. Plugins w...

how can i get compressed content-length in Pluggable IE async

Hi. First, sorry for my english, i'm not a native. I got a Asynchronous Pluggable Protocol for IE, the target of this plugin is monitoring responses of the server when IE requests a web page. Basically, plugin is a activeX what implements next interfaces: class InternetProtocolHook : public CComObjectRootEx, public IInternetProtoco...

WebBrowser(in .Net 2.0 WinForm) hangs when waiting for asynchronous pluggable protocol response

I write a temp http protocol according to http://www.codeproject.com/KB/aspnet/AspxProtocol.aspx?display=PrintAll and the Code is as follow, public void Start(string szURL, IInternetProtocolSink Sink, IInternetBindInfo pOIBindInfo, uint grfPI, uint dwReserved) { try { IServiceProvide...