Hi guys! I'm a newbie in flashorb and i'm just wondering, how do you implement connection pooling? I'm using the java version. Thanks in advance! Fedz ...
1304
bitwise2002
Jul 4, 2005 6:53 pm
We encounter intermittent Remoting Errors. Appearently internally a duplicate Key is being added resulting in and Error. Does anyone have an idea why? Stack...
1305
r_olesco
Jul 4, 2005 6:53 pm
Hi Joe, We're using FlashOrb Professional 1.5.4 (Java Edition) and we have deployed our application using FlashOrb to production environment. But when we ran...
1306
createcraphere
Jul 4, 2005 6:54 pm
Hi, was this ever resolved? I'm having this exact same problem. What is the appropriate way to restart a messageserver within a .net application, without...
1307
createcraphere
Jul 4, 2005 6:54 pm
Hi, I'm trying to setup a simple chat server. When users join a channel, they receive all messages that anyone in the channel typed. I would like to implement...
1308
Joe Orbman
flashorbman
Jul 5, 2005 10:04 pm
Hi, We're looking into the problem. You mentioned the issue is intermittent, please let us know if you manage to reproduce it on demand. thanks, Joe...
1309
Joe Orbman
flashorbman
Jul 5, 2005 10:05 pm
Hi Fedz, What kind of connection pooling are you looking for? Would it be for your DB connectivity? Doesn't your JDBC driver offer some sort of connection...
1310
Federico Lim
fedz_lim
Jul 6, 2005 12:30 am
Yes but the thing is I don't know when to close the connection (DB connection). If I close it before returning data to client, it doesn't return anything. Even...
1311
Joe Orbman
flashorbman
Jul 6, 2005 2:15 am
Why don't you put into the "finally" block of your method? Java guarantees that finally will be executed after the response has already been put into the...
1312
Federico Lim
fedz_lim
Jul 6, 2005 5:15 am
True but when I close the connection, the resultset is immediately closed (re:Connection, ResultSet class javadoc) which is a problem since it hasn't been ...
1313
Joe Orbman
flashorbman
Jul 6, 2005 7:11 am
Reading the docs indicates that Connection objects get closed when they are GC'ed. If you return a ResultSet out of your method, FlashORB will will keep it...
1314
qwiszard
Jul 7, 2005 2:50 am
I just started using messageServer in .Net too and really need it as all my other last ditch efforts have failed. I am having the same exact problem as others...
1315
qwiszard
Jul 7, 2005 3:48 am
Anyone interested in this type of error should feel a a bit relieved knowing that it won't get thrown so long as you haven't called the messageServer from...
1316
qwiszard
Jul 7, 2005 7:32 am
Nope... guess i was wrong... I am still getting the error Only one usage of each socket address (protocol/network address/port) is normally permitted You would...
1317
qwiszard
Jul 7, 2005 8:21 am
Dear Joe: Using messageServer and while I get it to work the first time around the second time fails with the error mentioned in my previous reply post. Also,...
1318
Joe Orbman
flashorbman
Jul 7, 2005 3:38 pm
ISZ, Any chance you could post both your flash and .NET code so we can try to recreate the problem here? If you post the code, please inline it as the interest...
1319
benjamin van der veen
bvanderveen@...
Jul 8, 2005 5:08 am
Hello everyone, I am looking to begin developing large-scale RIAs on a framework as open and portable as possible without using PHP or MySQL. (Essentially, I...
1320
Clint Modien
johny_bravo_78
Jul 8, 2005 2:08 pm
I've been on a project where we successfully used .NET web services for all of our data interaction with flash and it worked quite well. The conclusions that...
1321
benjamin van der veen
bvanderveen@...
Jul 8, 2005 5:08 pm
Clint, Thank you for your response and insight. To tell you the truth, I haven't actually used DataSets before because I felt that they were unnecessary...
1322
Clint Modien
johny_bravo_78
Jul 8, 2005 8:03 pm
your result would look like this when it came back... <ReturnBlogPostResult> <BlogPost> <Id>3</Id> <Title>the third</Title> <Text>third test post</Text> ...
1323
benjamin van der veen
bvanderveen@...
Jul 8, 2005 9:03 pm
Clint, My code is like this: // make a new service var service = new WebService("http://127.0.0.1/myservice.asmx?WSDL"); // 0 is offset; 30 is maximum number...
1324
createcraphere
Jul 8, 2005 9:05 pm
Hi, I think I fixed the problem. Maybe the flashorb developers don't quite understand the problem we're describing. [Skip a couple paragraphs for solution] ...
1325
Joe Orbman
flashorbman
Jul 8, 2005 9:07 pm
Hi, Thanks for the post. What you described is indeed the right approach. We will update the doc/examples to reflect that. Thank you! cheers, Joe...
1326
Clint Modien
johny_bravo_78
Jul 9, 2005 5:17 pm
I had to rename baretail in the zip file to baretail.asdf.. renaming it to baretail.zip wouldn't work... so when you get it rename it from baretail.asfd to...
1327
Clint Modien
johny_bravo_78
Jul 9, 2005 5:17 pm
Try tracing out the whole object with the Trace framework that i wrote.... i'm attaching it... It only does 2 levels deep into an object... but it should be...
1328
benjamin van der veen
bvanderveen@...
Jul 9, 2005 9:44 pm
Clint, For some reason unknown, there doesn't seem to be an attachment with your email...perhaps it has something to do with the way the Yahoo list works. Try...
1329
qwiszard
Jul 10, 2005 5:19 am
Ya... that's the problem. Thak you very much for the solution you provided. Honestly, I have never tampered with the global.asax file and I'll start snooping...
1330
qwiszard
Jul 10, 2005 2:18 pm
Ok, looks like the global.asax code took care of the error: "Only one usage of each socket address (protocol/network address/port) is normally permitted" But...
1331
qwiszard
Jul 10, 2005 2:41 pm
Dear Joe: Here is the client/server code which uses the messageServer. Client: _global.message_path = this; #include "messageServer.as" #include...
1332
benjamin van der veen
bvanderveen@...
Jul 11, 2005 12:45 am
Clint, I apologise for the delay, I have been away for most of yesterday and today. I received your trace package, and it gave a reasonable, expected output....