Questions tagged [remoteobject]
153 questions
2
votes
3 answers
Convert Bitmap image to String format to send over network(LAN) and vice-versa
I am basically developing a software in Visual Studio 2010 .NET 4.0 where in I capture the screenshot from a pc and send it over a network to another.
Since I cannot directly send a Bitmap, I have to convert it to String.
I did a lot of internet…

Bhargav Shah
- 737
- 1
- 7
- 15
2
votes
2 answers
C# Configure LoadFromRemoteSources through code not app.config?
I currently have an app.config with the following config value:
So far I have been able to remove everything else out of my app.config and configure…

Landin Martens
- 3,283
- 12
- 43
- 61
2
votes
3 answers
How to represent IDL with union and switch in C++
We publish the IDL files to represent the interface and would have a similar structure with C++/C code so that we can use to map them when the interface is invoked. So some conversion (equivalent) representation would be required.
Like a sequence in…

kumar_m_kiran
- 3,982
- 4
- 47
- 72
1
vote
1 answer
Using flash builder 4.5 for php wizard for remote object
I'm fairly new to Flex\AS3
I'm using flash builder 4.5 for php and I'm trying to connect to my DB via remote objects.
I'm following adobes instructions as listed here:…

ravidp
- 33
- 7
1
vote
1 answer
Flex remoteobject multiple records in Database of same info
Problem: The below problem occurs in two different cases..
Case1: When a client makes a remoteObject request ie to save some Info... A call is made to Java SAVE_INFO method. If request failed ie came back to FaultHandler ( we save the info in an…

user418836
- 847
- 3
- 8
- 19
1
vote
1 answer
How to handle remote objects when an android service restarts?
I have created the following entities in Android :-
Android MyService (apk)
MyServiceClient (jar)
MyApplication (uses MyService via MyServiceClient)
For IPC, I have used AIDL. A sample implementation (of service client) is given below.
AIDL…

Robin
- 497
- 5
- 19
1
vote
3 answers
Loading remote image in firefox
I've got an HTML page.
Inside an
tag, the src= points to an external website:
In firefox, the image doesn't load. However, if I inspect the element with firebug, hovering on the link will show…


gozzilli
- 8,089
- 11
- 56
- 87
1
vote
2 answers
How to send JSON to Flash from Node.js
I want a simple example of how to send data from a nodeJS server as JSON to Flash, then Flash decodes the JSON. This is part of what I want:
Server
json = {name : "Person", id: "1"}
Flash
myinput.text = json.id + ":" + json.name

user1119383
- 41
- 2
- 5
1
vote
1 answer
Nested Class Coercion Fail Between CFC and Flex
I have two AS3 classes, A and B. Class A contains an ArrayCollection that will hold multiple instances of class B.
In ColdFusion, I have matching CFCs, with same-named variables in the same order, as well as cfproperty tags for each variable.
The…

Buns of Aluminum
- 2,439
- 3
- 26
- 44
1
vote
1 answer
How can I run Flex/BlazeDS without dropping a JSessionId cookie?
The question says it. Does anybody know the answer to this? We're running into problems when 3rd-party cookies are disabled.

Robusto
- 31,447
- 8
- 56
- 77
1
vote
1 answer
Analogy for remote and distributed objects
I'm trying to understand what is the difference between remote and distributed objects. I know this might be a simple concept and I'm probably too dumb to understand but can someone explain in layman's terms what they are or a very simple…

ShippyDippy
- 63
- 10
1
vote
2 answers
Maximum size of data which can be fetched using web service in Flex
I want to know the size limit of data which can be fetched in case of HTTP/Webservice/RO.

Kishor Kumar
- 543
- 1
- 12
- 33
1
vote
1 answer
How do i implement RemoteObject in a foreign class?
Heres the code:
public class Schem
{
public var info:String="";
public function Schem()
{
}
public function loadCurrentSchem():void
{
var ro:RemoteObject = new RemoteObject("Hibernatetest");
…

Kai
- 376
- 1
- 4
- 17
1
vote
1 answer
Reduce number of remote objects
I am making a flex application with .NET at back end (connection using WebORB and remote objects). I have five drop-down boxes in Flex component, each having unique values from different tables (e.g. city name, county name, user name, etc.). On page…

Virk
- 13
- 2
1
vote
1 answer
Saving a bytearray with php received from Flex Air app
I have an Air application with remote service in codeigniter.
I'm trying to save a bytearray that I received from the Air app
but when I save the data I get empty files with the correct filename.
So there must be something wrong with my bytearray…

as3student
- 175
- 1
- 1
- 9