Tagged Questions

0
votes
2answers
62 views
+150

Signed Java Applet Throws Security Exeption on Connect to a Webservice

I have an java applet running on tomcat 5.5. It is signed ( -selfcert). I still get an java.security.AccessControlException: access denied (java.lang.RuntimePermission createClassL …
1
vote
0answers
15 views

Problem with AutoMapper in IIS7 when using signed assemblies

I am trying to use AutoMapper with web application running on IIS 7. The intended use it so map domain types defined in an external dll to view models defined in the IIS applicati …
0
votes
3answers
22 views

reading data file on any network device from java applet ?

how can java applets read data file from any device which is in same network with client computer is it possible with signed applets or with any security policy ?
0
votes
1answer
68 views

Connect from iPhone to RESTfull WCF Service with Self Signed Certificate

Hi Guys, I have an iPhone application which has to communicate with a RESTfull WCF service over a secured connection(HTTPS) with a self signed certificate. The WCF service return …
3
votes
10answers
173 views

2’s complement example, why not carry?

I'm watching some great lectures from David Malan (here) that is going over binary. He talked about signed/unsigned, 1's compliment, and 2's complement representations. There was a …
6
votes
1answer
191 views

Verifying that C / C++ signed right shift is arithmetic for a particular compiler ?

According to the C / C++ standard (see this link), the >> operator in C and C++ is not necessarily an arithmetic shift for signed numbers. It is up to the compiler implementation …
2
votes
2answers
211 views

How to get the signed integer value of a long in python?

If lv stores a long value, and the machine is 32 bits, the following code: iv = int(lv & 0xffffffff) results an iv of type long, instead of the machine's int. How can I …
1
vote
3answers
157 views

C# Convert.ToInt16(String) C Equivalent

What is the C equivalent of Convert.ToInt16(String) method of C#? In my case my string is a char array. Thanks
1
vote
2answers
351 views

How to cast a 32-bit integer from unsigned to signed in MySQL or PHP?

Hello, I have a string in PHP (came from some data source), which represents a formatted unsigned 32-bit integer. I need to store it into a MySQL database as a signed 32-bit integ …
2
votes
4answers
2k views

C++ convert hex string to signed integer

I want to convert a hex string to a 32 bit signed integer in C++. So, for example, I have the hex string "fffefffe". The binary representation of this is 1111111111111110111111 …
3
votes
4answers
490 views

In C Left shift (char) 0xFF by 8 and cast it to int

Hello People On left shift of (char) 0xff by 8 and casting it to int we get -256 or 0xffffff00. Can somebody explain why this should happen? #include <stdio.h> int main (v …
2
votes
3answers
206 views

Signed 64 by 32 integer division

Assuming you have a machine instruction udive that does a special case 64 by 32 unsigned division by taking a (32bit dividend << 32) / 32bit divisor, we can do a full 64 by 3 …
0
votes
2answers
433 views

signed applet gives AccessControlException: access denied, when calling from javascript

I have an easy self-signed an applet (done with keytool and the jarsigner): public class NetAppletLauncher extends JApplet { private static final long serialVersionUID = 1L; p …
1
vote
6answers
166 views

Compiler warnings

Suppose I have this (C++ or maybe C) code: vector<int> my_vector; for (int i = 0; i < my_vector.size(); i++) { my_vector[i] = 0; } I don't care if it's done right. …
0
votes
2answers
207 views

How to load only signed assembly to a new AppDomain?

I'm doing a addin system where the main app loads assemblies Addin1.dll and Addin2.dll on runtime in new AppDomain's. However, in case that Addin1.dll is signed (strong name) with …

1 2 next
15 30 50 per page