Fusion is the code name for the assembly loader in .NET.

learn more… | top users | synonyms

0
votes
0answers
15 views

How To Use A GTFS Feed

I want to use a GTFS feed in Google Maps, but I don't know how to. I want to display the buses available from a route. Just so you know, I'm planning on implementing the Google Map I make in a Visual ...
3
votes
2answers
165 views

Writing fusible O(1) update for vector

It is continuation of this question. Since vector library doesn't seem to have a fusible O(1) update function, I am wondering if it is possible to write a fusible O(1) update function that doesn't ...
5
votes
2answers
111 views

No stream fusion with unsafeUpdate_ in unboxed vector

Is it possible to maintain stream fusion when processing a vector if unsafeUpdate_ function is used to update some elements of a vector? The answer seems to be no in the test I did. For the code ...
-1
votes
0answers
6 views

creating a link to a marker in the card layout of google fusion tables

Is there a way to put a link or button on the Fusion Card that will link to a marker on the map and open the infowindow of that location? Much like the sidebar on the page linked below, but using the ...
0
votes
0answers
22 views

Google Fusion Tables,Maps and infowindow

I have a google fusion table with four columns and 10 records of places in a heritage trail around Belgium. This table is currently visualized as a google map with a numeric icon for each record and ...
1
vote
0answers
18 views

adding data to fusion tables using an url in a browser

I have been trying to read/write from/to a fusion table directly from my browser using different urls. For Reading a use "https://www.googleapis.com/fusiontables/v1/query?sql=SELECT * FROM WHERE ID = ...
0
votes
1answer
13 views

Deploying an ADF taskform on Fusion instance

I am looking for the steps to deploy an ADF task form to Fusion instance. It is not possible to deploy directly from Jdeveloper (we are not allowed to create a Weblogic server connection in Jdev). ...
0
votes
0answers
22 views

google fusion tables diagram

I have a google fusion table with IAN, FEB, ..., DEC, TOTAL, ikon, ... rows. What I want is to make a diagram on a html page, and the data to be taken from this rows. First the rows must be ...
0
votes
0answers
7 views

Select Locations selected in fusion table

I have a large fusion table, with locations marked about our locations across the city. I want the user to select the location, and add it (like a shopping cart). Is there a way to do it?
1
vote
1answer
157 views

Could not load file or assembly 'Microsoft.PowerShell.Security' or one of its dependencies. The system cannot find the file specified

I'm running PowerShell from a C# console app. My dev box has PowerShell 3.0 - the target machines will probably have v2.0. My project file has a reference to the assembly: <Reference ...
0
votes
1answer
46 views

Ajax google fusion table request doesnt run in MSIE but does in other browsers

I'm a beginner at javascript and pieced together the following code by searching online and lots of trial and error. I have simple data located in Google Fusion Tables and I would like to be able to ...
0
votes
0answers
30 views

In Jenkins, How to restore old Config?

In Jenkins, i have installed "JOb Config History Plugin". I am able to download the config.xml file. And, able to see the diff between two versions. But, I am not able to restore to the old Config. ...
0
votes
2answers
60 views

Search Query to Filter Out records from Database

I am entering some values on a search engine on GUI Name, Date, State If a user does not enter any value, and click on 'Search', he should get entire table from the database. i.e. no filters are ...
0
votes
1answer
42 views

How to push back value to fusion vector during runtime?

How to push back value to fusion vector during runtime? typedef boost::fusion::vector<A*, B*, C*> vec_t; vec_t vec_; vec_.push_back(new A());
1
vote
1answer
157 views

Using Applescript to power off VMware Fusion virtual machines and safely back them up

VMware recommends that virtual machines (VMs) not be backed up using Apple's Time Machine, unless snapshots are used. However, many advanced, experienced users strongly discourage that snapshots be ...
1
vote
0answers
69 views

Contourlet transformation( nsct)

We are currently working on a project on image fusion using non subsampled contourlet transformation, however we are having some trouble running the nsct codes that we have obtained from the link ...
3
votes
0answers
127 views

Assembly redirect in multiple environment / eg, for F# 4.0.0.0

I received a new machine and thought plugging in some machine wide redirect would just work for my FsCheck tests would work like in my previous machine. That was not the case, and I received a ...
0
votes
0answers
24 views

Fusion logging not outputing any log

Pretty stumped with an issue, I have a com add-on which runs on the office suite of products, we have a host of clients that run the add-on with different variations of office and MS OS versions. ...
0
votes
4answers
1k views

MVC4 Azure Publishing Error - Could not load file or assembly 'System.Web.Razor'

The project runs fine locally, its only when published I get the following error: Could not load file or assembly 'System.Web.Razor' or one of its dependencies. The located assembly's manifest ...
0
votes
1answer
143 views

A strongly named assembly is required sporadic file not found when binding

Our asp.net web servers are giving occasional binding problems which result in a page not being displayed to the end user. Pressing refresh usually works. If you look in the event log you get the ...
0
votes
0answers
37 views

How to Check mysql configuration is optimized for performance with the Fusion I/O card?

How to Check mysql configuration on production server Is the configuration optimized for performance with the Fusion I/O card? Please help me here.
17
votes
1answer
394 views

Is it possible to make GHC optimize (deforest) generic functions such as catamorphisms?

I really like the idea of working with catamorphisms/anamorphisms in a generic way, but it seems to me it has a significant performance drawback: Suppose we want to work with a tree structure in the ...
0
votes
0answers
149 views

How to declare dependency on assembly of version x, or newer?

How can i declare a dependency on a particular version of an assembly, or newer? In my application's assembly manifest, i've declared a dependency on a particular assembly. For example, in much the ...
1
vote
1answer
69 views

Form Fusion application causes white flash when transitioning between forms. Only in WebLogic, not in Oracle Application Server

We have an application being hosted on both Oracle Application Server and WebLogic. When we transition between the forms a quick white flash appears on this application when accessing it through ...
0
votes
0answers
100 views

How to force the .NET Assembly binder to retry a previously failed bind?

An application that I am working on uses a third party assembly that I want to let the user install from within our application and then use without having to restart our program. We first try to ...
0
votes
0answers
32 views

How to disable apache server security? [closed]

Can you please tell me the steps to disable the security in Apache Server so that I can see the document in autovue directly instead of going into UCM login page.
0
votes
1answer
389 views

Test Event expiration in Drools Fusion CEP

Ciao, I have tested in several ways, but I'm still unable to test and verify the Event expiration mechanism in Drools Fusion, so I'm looking for some little guidance, please? I've read the manual and ...
14
votes
2answers
217 views

How can I fuse two maps over the same list?

We could fuse two traversals over the list xs in the expression (map f xs, map g xs) like so unzip (map (\x -> (f x, g x)) xs) Is there any reasearch on performing this kind of fusion ...
0
votes
0answers
20 views

How do you use Fusion Log in Ninject?

I'm trying to debug binding errors when scanning and the post on here seem to indicate that I need to look in the fusion log to determine what's going on but I can't find anything about how to setup ...
0
votes
0answers
141 views

How can I get Assembly Binding Log Viewer (Fuslogvw.exe)?

I'm running Microsoft .Net 4.0 I'm trying to get Fusion Log to fix this problem I'm having. I'm trying to load a certain page but I keep getting a Server Error. If you could fix that then great! ...
5
votes
2answers
183 views

Haskell: List fusion, where is it needed?

Lets say we have the following: l = map f (map g [1..100]) And we want to do: head l So we get: head (map f (map g [1..100])) Now, we have to get the first element of this. map is defined ...
0
votes
1answer
338 views

Cannot load assembly at runtime

This is strange... In a project of mine I need to load external dll's at runtime. I've done this frequently before and I thought I had stepped on all the mines there where but this one has got the ...
1
vote
1answer
685 views

Android implementation of Madgwick's sensor fusion algorithm

I was trying to port Sebastian Madgwich's sensor fusion algorithm ( http://www.x-io.co.uk/node/8 ) to Android, but the first results seem not to be correct, and the resulting quaternion is moving ...
2
votes
1answer
187 views

Loading Assemby failed with FileNotFoundException - Fusion says all ok

I have an assembly with C++/CLI code that I want to reference in my unit test project. MSTest says: Test method ...
0
votes
0answers
57 views

How can i add a fusion assembly dependancy to a web-site?

A native application can take a dependency on a specific version of a DLL by having an dependent assembly in its assembly manifest, e.g.: <!-- Depend on a specific version of Comctl32.dll --> ...
2
votes
1answer
2k views

Sensor fusion with compass and gyroscope: between 0 and 360 degrees

I'm developing a small indoor navigation app in which I use the gyro and the compass for the device orientation. I use the gyro to smooth the compass data. My sensor fusion looks like the following. ...
0
votes
2answers
243 views

Why does .NET runtime / Fusion not always load all referenced assemblies from the manifest?

This all started because I am trying to FxCop analyze my assembly, which references Crystal Reports. Every time I do, FxCop can't find a reference to an assembly named ...
2
votes
1answer
124 views

Win32 App Compat: Is there a manifest entry to opt my application out of NoExecute?

Is there an assembly manifest (or perhaps a PE Image flag) to opt-out of (or opt-in to) NoExecute protection? By default, Windows only protects its own binaries with NoExecute protection: But i ...
0
votes
1answer
295 views

How to implement Data push(server push) in worklist application

I am planning to implement Server Push functionality in human workflow. Say when a task is assigned to a group and any of the group member updated the task, it has to update the task status ...
0
votes
1answer
521 views

Why won't my program look in the GAC for an assembly?

I have a service that loads a bunch of assemblies as plugins. Each of these plugins reference a common assembly that is installed in the GAC. For some reason, some of the plugins are able to ...
8
votes
3answers
7k views

How to add an assembly manifest to a .NET executable?

How can i add an assembly manifest to my .NET executable? An assembly manifest is is an XML file that is added to a .NET portable executable (PE) with resource type RT_MANIFEST (24). Assembly ...
0
votes
1answer
268 views

Image processing: exposure fusioned images are washed out

I am trying to replicate T. Mertens' et. al. paper [ 1 ] where the authors present a method to fuse multiple pictures captured with different camera exposures into a "better"-exposed picture. There is ...
0
votes
0answers
433 views

Why isn't this decompiled Complementary Filter fusion the sensor data properly? The APK does it wonderfully

Here is the following code that I decompiled. The code takes gyro, compass and accelerometer data, and calculates a rotation matrix that can be used in an OpenGL call. Again, in the original APK it ...
0
votes
1answer
202 views

The Weblogic server shuts down on closing the script window?

I have installed the Fusion SOA 11.1.1.5 on a remote linux (64 bit) machine and successfully started the weblogic server by using the startWeblogic.sh command from the DOMAIN_HOME/ folder (not from ...
1
vote
3answers
171 views

How to fusion two content elements? / Does an all in one content element exist?

I need a content element that cointains apsects from the "Textpic" and the "Media" content elements. Basically I need the whole palette of input masks of the textpic CE (headline, rte text, images) ...
0
votes
0answers
82 views

Prevent fusion from loading assemblies from subdirectories of the same name

Is there a way to prevent Fusion from searching subdirectories when resolving assemblies? According to this MSDN Magazine article: ...the probing process continues in a subdirectory of the ...
6
votes
1answer
275 views

Alternative to Fusion Log Viewer?

Are there any alternative Fusion Log Viewer programs, other than Fuslogvw.exe, or directing the Fusion log output to your own directory and then examining the tons of HTM files by hand? My two main ...
1
vote
1answer
341 views

Assembly Version Loading Problem and SQL CE

I have an application that utilizes SQL CE 3.5 and the Entity Framework from .NET 3.5. We encountered a known issue with SQL CE 3.5 SP2 RTM that causes application crashes. As a result, we obtained ...
0
votes
1answer
187 views

Is it possible to compile a .NET 2 WinForms application to run on .NET 4, if no .NET 2 is installed?

Recently I got a customer complaint, that a small .NET 2.0 application I wrote did not run on his Windows 7 computer. After investigating, I found out that there was no folder ...
0
votes
1answer
989 views

SharePoint's OWSTIMER service keeping references to feature receiver assemblies

With SharePoint you can use a Feature Receiver to perform some actions when a feature is installed/uninstalled etc. The feature receiver is ran from the OWSTIMER service and the process seems to be ...

1 2