I have a dll that i created using C++ and for a reason my dll should be placed in the GAC.
for all other dll's created with managed code, i sign them and drop them in the GAC, how can i do the same with the c++ dll?
Thanks for your quick help.
...
I want to debug a c# application, it's a big application and I can't build it all by myself. I can only build a portion(a DLL) for that. The application installed in my machine is built by others. But after I rebuild the DLL by myself and replace the DLL currently in my machine, the new DLL can't be loaded. I guess the reason is in the o...
I'm currently building a Java daemon that will need to be able to sign and certify PDF documents. Now I've already implemented the code for this, but there is one "little" problem.
The problem:
The certificate I use needs to automatically be validated via Adobe Reader. To do this you need to make sure your certificate is used by a partn...
We work with a software that has an applet that digitally signs PDF documents. This applet uses Itext to do this.
However, IText jar is kinda large (1.5Mb), and many of our users don't have a good connection. Because of this, the applet download takes a really long time to be completed sometimes.
So my question is: which alternatives ...
what's the meaning of %r in the following statement?
print '%r' % (1)
I think I've heard of %s, %d, and %f but never heard of this.
...
Hello.
I am trying to have my application (C# under .NET 3.51 SP1) recognize that a file has come from a "safe" source.
My approach was I would sign the application and then, at a later date, I would use the private key from the same snk file to sign files. The application would use the public key (easily obtainable) and calculate if t...
I have a sign up form on a website that I am developing using dreamweaver. The input text and background text are both showing as white (or not showing!) even though the page text is set at #0000CC. See it here: www.betterlifecoaching.co.uk (it is still work in progress)
How can I overcome this?
The sign up script is:
<style type="text...
Context: .Net, C#
I want to print a complex number made from two doubles. The sign needs to show on the imaginary part. I'd like to use the default double formatting for each part to minimize the number of characters.
I tried using String.Format("{0:+G;-G}{1:+G;-G}j", real, imaginary) but this ended up printing: "+G-Gj". Not quit...
Suppose my client doesn't want me to own his iPhone Distribution Certificate, is there a way I can send him the compiled app and let him adjust all App Id, Provisioning etc parameters, then sign and submit it? How do I do this?
...
This seems so trivial, yet I can't get it to work..
I have an msi.dll wrapper (named Interop.WindowsInstaller.dll) which I need to sign. The way to do it is by signing it upon import (this specific case is even documented in MSDN: http://msdn.microsoft.com/en-us/library/zec56a0w.aspx).
BUT - no matter how I do it (w/ or w/o a keyfile, ...
Hi Geniuses
I want to display the dollar or pound sign in my fields that hold job_salary any one knows? how to
...
What's the fastest way to compare sign on a double?
I know that a double has a "sign bit" but I'm not sure if the way I'm "looking for it" in its binary rep is a good idea or not.
Barring "portability" issues, can someone tell me what's going on with this code in MSVC++?
#include <stdio.h>
int main()
{
double z = 5.0 ;
__int64 b...
Given two floating-point numbers, I'm looking for an efficient way to check if they have the same sign, given that if any of the two values is zero (+0.0 or -0.0), they should be considered to have the same sign.
For instance,
SameSign(1.0, 2.0) should return true
SameSign(-1.0, -2.0) should return true
SameSign(-1.0, 2.0) should ret...
We provide notary service in Brazil, which is a public concession in this country.
We are now searching for a solution to:
1 - scan in high-volume;
2 - run OCR in a batch;
3 - digitally sign the generated files (digital notarization);
4 - store in a network environment with off-site replication;
5 - websearch (Google appliance?);
6 - ret...
I've been trying a new way to set up a website using jQuery to dynamically get the content when a link is clicked. Here is the jQuery code:
$(document).ready(function() {
var content_loader = $('#content-loader');
$('#nav ul li a').click(function () {
$(this).closest('ul').find('li.active').removeClass('active');
$(this).parent(...
I'm a bit puzzled. CSS tricks has an area for comments, but I noticed that the people who comment, have their own link and profile image. I understand that the author of that site is using Wordpress.
Is this being accomplished with Wordpress or another API?
...
Hi
i need to remove % sign from file or image name in directory
which string i use
$oldfile = "../wallpapers/temp-uploaded/".$file ;
$newfile = "../wallpapers/temp-uploaded/". trim( str_replace('%', '', $file));
rename("$oldfile","$newfile");
But its not work
reply me which string i use ( trim, str_replace not work
preg_replace ho...
how my dear friends:
I have a string.Format like this :
string Test = string.Format("{0:#,0}", NegativeNumber);
how can I change the negative sign position (Direction -> left or right)?
thanks in future advance.
...
What is the point of signing your code like Java's jars when everyone can do it with jarsigner?
How does it provide security?
...
If a general fault is raised on my service endpoint the fault response is undesirably and unexpectedly encrypted.
I have created an endpoint with a custom binding for interoperability reasons with a java spring framework set up with transport security with signature only over soap 1.1.
<service behaviorConfiguration="MyProject.We...