ActionScript 3.0 :: Connect To A MySQL Database Directly Through The Socket Class?
Nov 2, 2006is possible to connect to a mySQL database directly through the socket class?
View 1 Repliesis possible to connect to a mySQL database directly through the socket class?
View 1 RepliesCan actionScript2.0 connect directly to any database? I know we can use ASP,or JSP as a middleware to connect to database. But without using middleware can we connect directly to database?
View 1 RepliesCan actionScript2.0 connect directly to any database? I know we can use ASP,or JSP as a middleware to connect to database. But without using middleware can we connect directly to database?
View 1 Repliesi am trying to connect php to a mysql database by doing the following: $con = mysql_connect("localhost:8080","username","passwor d"); when i try to run the php file in the browser it takes forever to load. What could be the problem? and what am i doing wrong. i created the database with mysql in xampp.
View 2 RepliesDoes anyone know how to connect the Macromedia's datagrid component to a PHP/MySQL database? I can't seem to find ANY info or tutorials on the web for this.
View 2 RepliesI want to get data from a database of my site. In the setting of the project point out Root URL: http://...:** But what to set in Root folder?
Already tried the two dozen variants and Validate location does not work.
i have a sprite,this sprite function is to connect to mysql database and print data to the sprite..and now if i have a new data in my database.. and i want the sprite can automatically add a new sprite to print the new data.so if i add a new data.. in flash a new sprite can occur and print the new data.. and so on.
View 1 RepliesWhat is the easiest method to connect a flex application to a MySQL database?
View 7 RepliesI am building an AIR application where I receive UDP messages from Max/MSP using the Socket class. When testing in an internal loopback environment ( messages sent from 127.0.0.1 at port 7400 ) I can see the UDP messages being sent, as in: I can receive the messages I'm broadcasting in Max/MSP by listening to port 7400.However, the AIR app throws IO errors when trying to connect ( via the Socket class, using Socket.connect ) to aforementioned IP and port and I for the life of me can't find out why the app has no access to the internal loopback sending UTP ( if for instance, I start a Apache server at the same IP but at different port, the Socket class connects immediately to that IP - it won't receive data of course, but at least it can establish a connection )I am thinking the problem lies outside of the AS app and is an internal networking issue, I'd like to know if someone has experienced a similar error ( I'm on OS X, btw ) as I don't think it's a security sandbox error ( as the event isn't thrown, and the application type is trusted ).
View 1 RepliesI have a Flex application which manage a database composed by 7 tables.I have created the insert form and all work great. Now I wanto to improve the Form performances; the idea is to replace the TextInput of the Form with ComboBoxes which are provided by the DataBase tables
View 1 RepliesCan I build flash application that connects to database? (MySQL) For example: Photo Gallery that brings me the photos from database...
View 3 RepliesI have been reading about Flash VOIP capabilities. I wonder if flash i able directly to connect to VOIP server ex. Asterisk [URL].. or do I need The Adobe Flash Media Server?
I would be grateful for info on this, also any links to info how to build VOIP client using Flash would be very be useful.
I'm trying to connect an AIR application to socket.io, it's just not working.
[Code]...
I have a Flex web app (compiled to regular SWF) that tries to connect to a (binary, not XML) socket on its own server. So if the swf is at [URL], the socket is [URL] This should be possible, AFAIK, but when I try to connect I get a security error saying that [URL] cannot access [URL]. Even though it shouldn't be needed, I also have a crossdomain.xml file containing
[Code]...
In my Flash app, I'm connecting to my server like this:
Security.loadPolicyFile("xmlsocket://example.com:12860");
socket = new Socket("example.com", 12869);
socket.writeByte(...);
socket.flush();
At port 12860 I'm running a socket policy server, which (according to this document) correctly serves up my policy like this:
[Code]...
I get no security warnings, which I used to get before the policy server was in place. Still, the connection to port 12869 doesn't work. It's made (I can see with Wireshark and on the server), but no data is sent by Flash. It might be worth knowing that the SWF itself is served from example.com as well.
I'm writing socket server in java for my flash browser based game and i need to connect to mysql database. Is it possible to connect to mysql through socket server and send received data to connected flash clients?
View 1 RepliesI'm trying to connect to a telnet server through a Socket.On that server, I setup a crossdomain.xml file:
<?xml version="1.0" ?>
<cross-domain-policy>
<allow-access-from domain="*" to-ports="23" />
</cross-domain-policy>
[Code]...
I read through the method to connect to a socket server : [URL]. I wrote an AIR application to connect to the java server code, but the client cannot connect. What is missing in the code?
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="[URL]"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" backgroundColor="#D5F8C3">
[Code] .....
I'm tring to write an instant messager implementation, but i got a problem with the initial socket connection.I need to send a GET request with some parameters to a server and it will reply with a seed number message server IP.
Code: Select allvar socket:Socket = new Socket("appmsg.gadu-gadu.pl", 80);
var response:String = new String;
var request:String = new String;[code]......
why the socket isn't sending any data after the connect,i also wrote a small pop3 client and it works fine.
Is it possible to connect any database from flex directly?
View 3 Repliesi am receiving this error "ArgumentError: Error #1063: Argument count mismatch on flash.net::Socket/connect(). Expected 2, got 0.".
I have created a .net tcp server that sends 1 byte of data while reading a file, now the flash client connects but i get this error and i don't receive any data at all.
[Code]...
I made sure the playback security was set to network only on the publish settings menu. I have another program that connects to the same server without a problem, so I don't think it's a cross-domain policy file problem.
[Code]...
Anyone know if you can connect, login, post an image to a Facebook account directly from inside of Flash? I grabbed the Facebook API for AS3 and have it installed, created an application definition on Facebook but am having no look connecting to it? I have seen some refereneces to it only working inside of Flex and am wondering it that's the case. I am looking to do a kiosk application where a camera image will be uploaded directly to the persons FB page.
View 17 Replieshow I connect with SQL or MySQL FMS3
View 1 RepliesPossible Duplicate: How to update a MySql DB using Flex
I want to connect flex with mysql
i'm trying to connect my flash application to my nodejs server running socket.io. To connect via web-browser is no problem. Now the problem, when the socket-server isn't running i get an IOError in Flash what seams alright. Now when i start the server and try to connect again, i don't get an error, but the socket-server doesn't receive a connection either?!
View 1 RepliesBefore I start I should state I have read it all, I was following this, this and this (and more...) and still I cannot connect to our running server via Socket over the internet.
Here is what I try to in AS3:
[Code]...
We can see from the log output of the server that this is really sent to the connecting socket. A null byte is of course sent after the xml data. And after that, the server closes the connection. However, it seems that Flash somehow does not like it, as "Error #2048" still appears after ~3 seconds.
you know about database examples/tutorials for cs3 ? (i intend to connect flash with php/mysql, if possible)
View 3 RepliesOptivote IR8 is basically a voting system with a bunch of remote controllers, which can send IR signals to a receiver, which is connected to a computer through a USB port. And I'm trying to write my own little software for that with Flash.Optivote receiver communicates with software through a virtual serial port. When I connect to that port through PuTTY, I can see signals whenever I press any button on the remote controllers. Although, when I connect to that port through Serproxy (which relays a socket connection to a serial port connection), the remote controllers don't seem to work. I just get the same signal every half a second or so, over and over. I'm guessing the receiver is trying to make some kind of handshake this way.
The thing I can't figure out is what PuTTY does that Serproxy doesn't to make the serial port connection work. Maybe there's some proper way to tell the other end when I connect?(I use Serproxy, because Flash applications cannot connect to a serial port directly, but supports socket connections)
While I am connecting the dateservice via menu Data> connect to BlazeDS the error showing that RDS server message : connection refused : connect
View 1 Replies