Tagged Questions

0
votes
0answers
12 views

Apache Fop for .NET locks external-graphic image - can I force it to close the references?

Something in Apache FOP is locking modify/delete file access rights. Here is the situation.. First, there is a gif file on disk, in a certain location in my web application structure, but more …
0
votes
1answer
52 views

Visual Studio registry capture utility has encountered a problem

I recently reinstalled my development machine and went from 32 bit Windows Vista to 64 bit Windows 7. I'm running VS2008. Some of my .NET applications still use J#, which now causes problems. The …
0
votes
0answers
63 views

Add J# to VS.Net 2008

Hi, Can I add J# to the VS.Net 2008 IDE... I've got some old J# code to maintain (just until we port it over to C#).
7
votes
10answers
2k views

Comparing two byte arrays in .NET

How can I do this fast? Sure I can do this: static bool ByteArrayCompare(byte[] a1, byte[] a2) { if(a1.Length!=a2.Length) return false; for(int i=0; i<a1.Length; i++) …
0
votes
1answer
27 views

Does referencing the JDK namespaces from within a .NET application require the Java runtime to be installed?

I'm in a VB.NET application. I have referenced some java.* namespaces in my file and am utilizing objects and methods from this namespace throughout the code. Presumably this is relying upon J# to …
8
votes
11answers
3k views

Big integers in C#

Currently I am borrowing java.math.BigInteger from the J# libraries as described here. Having never used a library for working with large integers before, this seems slow, on the order of 10 times …
1
vote
2answers
130 views

Deploying assembly normally in the GAC with my project?

Hello. I built a web application that uses the J# libraries which works fine in my cpu, however, when I deploy it to my shared server. I get an error message: Parser Error Message: Could not load …
0
votes
1answer
355 views

Can I just drop vjslib.dll into the /bin directory of my application ?

I am in the middle of a production deployment. Unfortunately I am deploying to a tightly controlled environment. It is unlikely I'm going to get clearance tonight to run the full Visual J# …
3
votes
4answers
874 views

How can I use JavaScript within an Excel macro?

There’s a really cool diff class hosted by Google here: http://code.google.com/p/google-diff-match-patch/ I’ve used it before on a few web sites, but now I need to use it within an Excel macro to …
0
votes
2answers
426 views

Where can one acquire the Visual J# Merge Module for use with Visual Studio 2008?

I've inherited an application which depends on a third-party library, which in turn depends on Visual J#.NET. The application was previously being developed on Visual Studio 2005, and I've got it …
0
votes
1answer
141 views

regarding the deployment of j# app in Azure cloud

Hi, Is it possible to deploy j# application on the azure cloud? We have a requirement where in we need to deploy a J# web application in azure cloud. When the concerned application is run in the …
0
votes
1answer
26 views

modPow slow in Visual J#?

Needing a quick way to build an ActiveX control out of some Java code, I tried out Visual J# Express. Ran into a limitation, though, when I found that BigInteger.modPow is really slow, and since my …
2
votes
3answers
186 views

Problems porting Java to J#

I've got a medium sized (25k lines code, 25k lines tests) codebase in java, and would like to port it to run on a CLR as well as the JVM. Only the main class, and a few testing utilities deal with …
6
votes
8answers
492 views

Is there a real benefit of using J#?

I just saw a comment of suggesting J#, and it made me wonder... is there a real, beneficial use of J# over Java? So, my feeling is that the only reason you would even consider using J# is that …
2
votes
3answers
482 views

Are there any conversion tools for porting Visual J# code to C#?

Are there any conversion tools for porting Visual J# code to C#?

1 2 next
15 30 50 per page