1
vote
2answers
325 views
Can maven sign not only produced jar, but also dependencies
I managed to create main jar, copy dependencies to a single directory, the only step left is to sign all jars.
I can sign my own produced jar as a part of jar:sign, but how do i sign dependencies?
…
0
votes
1answer
17 views
Adobe PDF Certification - Java
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 …
0
votes
1answer
44 views
debug c# application
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 …
0
votes
1answer
27 views
Add c++ dll in the GAC
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 …
0
votes
0answers
18 views
signing assemblies on windows mobile device
HI
I have created an application for my windows mobile 6.0 device and I need to sign it so that the user can download updates without having to select that they trust the publisher
I'm not …
0
votes
1answer
104 views
Code sign Error
Hi Friends,
I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the …
0
votes
2answers
249 views
code sign error while installing application on iPhone
Hello all,
I have registered for Apple Developer Program. I have installed my provisioning profile and other certificates successfully. But still, I am getting error while installing the app for …
0
votes
6answers
266 views
Changing the sign of a number in PHP?
Hay Guys, I have quick question.
I have a few floats:
-4.50
+6.25
-8.00
-1.75
How can I change all these to negative floats so they become:
-4.50
-6.25
-8.00
-1.75
Also i need a way to do the …
-1
votes
2answers
103 views
Regex convert string to valid number, no decimal, sign optional
Removing everything after and including the decimal, and everything non-numerical except the dash if its in is the first character. So far I have this: /[^0-9^-]|[^\.]+$/. Notice How I block dashes …
0
votes
0answers
90 views
webcam access using opencv with processing in an applet or application
I made a small sketch with processing using opencv to face detect and track. But when I export as an application and start it nothing happens, same as an applet. First I exported the applet and …
1
vote
6answers
406 views
C++ What does the percentage sign mean?
I got this c++ macro and wonder what they mean by code%2 (the percentage sign) ?
#define SHUFFLE_STATEMENT_2(code, A, B)
switch (code%2)
{
case 0 : A; B; break;
case 1 : B; A; break;
}
4
votes
4answers
218 views
Euro sign in HTML
Hello!
The euro (€) is the official currency in 22 European states.
In HTML there are different possibilities to display the sign €:
€
€
€
Which one would you use …
1
vote
1answer
527 views
How do you sign a Java Midlet?
Hi,
A simple question with a fairly complicated answer. How do you sign a Java Midlet so you can load it onto a mobile phone with less security prompts.
Dave
PS: This is intended to be a self-answered …
3
votes
3answers
160 views
C compiler flag to ignore sign
I am currently dealing with code purchased from a third party contractor. One struct has an unsigned char field while the function that they are passing that field to requires a signed char. The …
0
votes
1answer
65 views
Permission j2me application, removing the prompt
I have a signed application for Nokia 2660.
This application makes HTTP connections and when the application is opened the device prompts a message asking for user permission.
The user can …
