4
votes
4answers
82 views
Add offset to IntPtr
Hello,
I'm looking for a way to perform pointer operations in C# or .NET in particular.
I want to do something very simple
Having a pointer IntPtr I want to get IntPtr object which points to 2 …
1
vote
2answers
38 views
Interoperability by using Spring and Hessian ? Is it possible ?
Hi,
Spring in Action book says:
Hessian, like RMI, uses binary messages to communicate between client and service. However, unlike other binary remoting technologies (such as RMI), the binary …
0
votes
2answers
44 views
C# generated proxy method different than original Java service method
Hi,
I have a Java service that has the following method signature:
@WebMethod(operationName = "getContactList")
public MyListClass getContactList(@WebParam(name = "myList") …
0
votes
1answer
72 views
Send Authenticated User To WCF Application
I have 2 applications; one is a ASP.NET 3.5 Ajax Application (Client) and the other is a WCF Web Application (BackEnd).
The applications are deployed in a separate Windows Server 2008 over IIS 7. …
2
votes
3answers
60 views
How Should an OS X Drawing Programs Store Custom Data in its PDF PasteBoard Flavor?
A little history. In the days when the pre-eminent Mac vectored clipboard flavor was PICT, a program could insert its own data into the PICT. The PICT could be pasted into another application. At some …
0
votes
2answers
169 views
Validate java SAML signature from C#
Hi,
How can i validate in .Net C# a SAML signature created in Java?
Here is the SAML Signature that i get from Java:
<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
…
0
votes
1answer
115 views
Java and C++ Cryptography interoperability
I have a message coming from an external company which has been encrypted with our public key using Java.
Specifically the java code performing the encryption is -
//get instance of cipher using …
4
votes
3answers
151 views
Is it possible to build a .NET assembly callable from a native assembly writing in C# alone without using COM?
Is it possible to build a .NET assembly callable from a native assembly writing in C# alone without using COM?
5
votes
2answers
311 views
Scala - Java interop: can Scala emit enums in bytecode for Java to consume?
I have a project that is mixed Java/Scala, it is Java GUI code that makes use of a Scala library. Is there a way to write Scala code such that it will emit Java enums on compile time? The approaches I …
9
votes
5answers
366 views
interoperation between mercurial and subversion
A similar question has been asked recently, but is not the same.
The Mercurial website has a detailed page listing comparisons for 4 different options for getting Mercurial and Subversion to …
5
votes
3answers
184 views
How to avoid building a walled garden?
Some friends and I have had an idea for a website and have started working on it. It will rely on people contributing to a shared knowledgebase, and people will also be able to create personal …
3
votes
8answers
153 views
Testing RSS feeds
I am looking to test an RSS Feed I have created and I am looking for some good RSS Feed applications to test with.
0
votes
1answer
83 views
Which mechanism may be used to access Java methods which conflict with JavaScript keywords?
I've a Javascript source that uses a Java class that defines a "delete" method (using jdk6 scripting). Since delete is a keyword, I cannot invoke that method.
In JavaFX script any sequence of …
1
vote
1answer
262 views
Establishing communication between Java client and .NET server
Hi,
I would like to create a server using .NET and Java client (Android application).
The client will be connected to the server through mobile network so it's impossible to use tcp socket for …
4
votes
2answers
678 views
Best way to consume .NET web services in Java
I'm trying to consume some .NET web services using JAX-WS. I have generated the Java classes using the wsimport tool. However, when I try to use these (proprietary, not public) web services in Java, I …
