Shared Objects in Flash are used to store persistent data on the client or server side.
0
votes
0answers
20 views
Using Remote Shared Objects with LAN game in Actionscript 3
Is it possible to use remote shared objects through a LAN connection in AS3? I do have Flash Media Server available, but as far as I know a server isn't required when accessing the LAN.
In order to ...
0
votes
1answer
11 views
Chrome's Flash player Shared Objects and External Flash Player Shared Objects
I am working on an AS3 application. I need to store some data locally (on user's machine). I used Shared Object concept. Now in chrome, the default flash player (pepper flash) stores the shared object ...
0
votes
0answers
24 views
Exception in thread “main” java.lang.UnsatisfiedLinkError:undefined symbol: g_free
I have an JAVA application which includes .so file.I have included the VM argument path in the Run configuration in eclipse
-Djava.library.path="${workspace_loc}/JlibFprint/resources:${env_var:PATH}"
...
0
votes
1answer
21 views
Unable to find symbol in shared object
I am having two shared objects: A.so and B.so
A.so contains definition to function add_check_2a
From my main function in main.c, I invoke a function add() in B.so using dlsym.
This function add() ...
0
votes
0answers
31 views
How to list objects saved by SharedObject and how to remove all?
How to list objects saved by SharedObject and how to remove all?
Example:
Three different SWF on the same site saved these objects:
SWF1:
so = SharedObject.getLocal('game1');
so.data....
...
0
votes
1answer
34 views
Make file g++ shared library
Im trying to create a library that i could integrate with R in the future, but also use on Command Line
My first step in the path is creating a library, either .a or .so
This is my make file. It ...
0
votes
1answer
37 views
boost iostreams library exist but i am unable link it
I know that the re plenty of similar questions, but mine is litle bit different and non them helped me.
I am using boost-iostreams library and here is my problem, i tried to link my program with ...
0
votes
2answers
21 views
Linux g++: linking with static libstdc++ without exporting it
I'm compiling a shared object (.so) that is supposed to be LD_PRELOADed into other application. I'm linking with libstdc++ and libgcc statically using -static-libgcc -static-libstdc++ to avoid shard ...
0
votes
1answer
29 views
Unable to load .so file
I have an application which uses one native library "libSample.so" which is depend upon another .so file.I am trying to load that library using following code
File File1 = new File("libSample.so");
...
0
votes
0answers
55 views
.so with numerals after that, how to match them in find_library in cmake ? Error in linking shared objects which are found as sub-dependencies
Given
ls -lrt /usr/lib/libvpx* results
lrwxrwxrwx 1 root root 15 Feb 9 2012 /usr/lib/libvpx.so.1.0 ->libvpx.so.1.0.0
lrwxrwxrwx 1 root root 15 Feb 9 2012 /usr/lib/libvpx.so.1 -> ...
0
votes
1answer
27 views
Service Oriented Architecture and evolving objects shared between applications
I'm about to begin writing a suite of WCF services for a variety of business applications. This SOA will be very immature to begin with and eventually evolve into a strong middle-ware layer.
...
1
vote
1answer
21 views
Length property of my serialized Dictionary to store in a SharedObject
I am building an Adobe AIR app and I'm storing a Dictionary in my SharedObject.
Something along the lines of what is mentioned here.
But why is the length of my dictionary always null. I end up ...
0
votes
1answer
29 views
Unable to save class objects to a SharedObject FIle
Well basically as the title implies, I can't save my array to the shared object.
I have an array which contains different "soldiers" with different ...
0
votes
0answers
19 views
link with gcc fails but with ld works
Trying to build a shared library but it's fails to link if try link with gcc or clang, but if link with ld it works.
$ gcc -c jamincont_1912.c -o jamincont_1912.c.o -I../build -I../src
$ gcc ...
0
votes
0answers
17 views
JSON and Python Create object with relationships to existing objects
I have a parent object which already exist. I want to create a JSON object in Python and add a relation from the new child object to the parent object. Following this I need to POST this object to a ...