Just found this one - Google Gears.
Seems that idea of making web applications capable to work offline is quite popular these days. Pioneered by Adobe Apollo and now we have Google Gears.
Looking at the list of supported browsers
Apple Mac OS X (10.2 or higher)
Firefox 1.5 or higher
Linux
Firefox 1.5 or higher
Microsoft Windows (XP or higher)
Firefox 1.5 or higher
Internet Explorer 6 or higher
am not impressed that much. Second, is the "clever" idea to put SQL statements in javascript code - it's very easy to hack the application if you know the database structure. And finally you will get the famous Google attitude - it's free so we won't bother making it look nice and easy to understand - the samples are ugly, the documentation is far from perfect.
воскресенье, 3 июня 2007 г.
вторник, 8 мая 2007 г.
getters & setters
Just in case you didn't know that, you always need to specify get & set methods for Java class if you need it properly deserialized on the Flex part.
For example
Flex:
[RemoteClass (alias="core.company.CompanyRegionDescBean")]
public class CompanyRegionDescBean
{
public var url:String;
public var name:String;
}
Java:
public class CompanyRegionDescBean implements Serializable{
private String url="";
private String name = "";
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getName() {
return url;
}
public void setName(String url) {
this.name = name;
}
}
Now, if you remove setName - you will always get name as null on Flex side.
You should also make sure that all your variables are named according to Java conventions, for example, they should start with letter in lowercase.
Just try this one..
And you are also in trouble.
For example
Flex:
[RemoteClass (alias="core.company.CompanyRegionDescBean")]
public class CompanyRegionDescBean
{
public var url:String;
public var name:String;
}
Java:
public class CompanyRegionDescBean implements Serializable{
private String url="";
private String name = "";
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getName() {
return url;
}
public void setName(String url) {
this.name = name;
}
}
Now, if you remove setName - you will always get name as null on Flex side.
You should also make sure that all your variables are named according to Java conventions, for example, they should start with letter in lowercase.
Just try this one..
private String Name = "";
And you are also in trouble.
понедельник, 7 мая 2007 г.
Flash to SilverLight converter
Robin Debreuil, creator of Xamlon (C# to SWF converter) is working on SWF to XAML converter, the results are very interesting and promising - check out his blog.
Google, what's wrong with me?
Got this yesterday when trying to add a new post
What the hell?
-------------------------------------------------------------------
We're sorry...
... but your query looks similar to automated requests from a computer virus or spyware application.
To protect our users, we can't process your request right now.
We'll restore your access as quickly as possible, so try again soon.
In the meantime, if you suspect that your computer or network has been infected, you might want to run
a virus checker or spyware remover to make sure that your systems are free of viruses and other spurious software.
What the hell?
-------------------------------------------------------------------
We're sorry...
... but your query looks similar to automated requests from a computer virus or spyware application.
To protect our users, we can't process your request right now.
We'll restore your access as quickly as possible, so try again soon.
In the meantime, if you suspect that your computer or network has been infected, you might want to run
a virus checker or spyware remover to make sure that your systems are free of viruses and other spurious software.
суббота, 5 мая 2007 г.
Yahoo web messenger
I really like what Yahoo is doing with Flash/Flex.
http://webmessenger.yahoo.com/
just another brilliant piece of work
http://webmessenger.yahoo.com/
just another brilliant piece of work
пятница, 4 мая 2007 г.
Yahooo!
http://www.forbes.com/topstories/home/feeds/ap/2007/05/04/ap3685735.html
Software maker Microsoft Corp. asked search engine operator Yahoo Inc. to re-enter formal negotiations for an acquisition that could be worth $50 billion, the New York Post reported on Friday.
Well, this does seem to make sense.
Software maker Microsoft Corp. asked search engine operator Yahoo Inc. to re-enter formal negotiations for an acquisition that could be worth $50 billion, the New York Post reported on Friday.
Well, this does seem to make sense.
SWX - a great idea
SWX – new format of exchanging data between flash and server.
Great stuff, Aral!
Подписаться на:
Сообщения (Atom)