[flexcoders] Re: Image scaleContent=false causes Security Sandbox Violation in AIR 1.5.x

2009-03-02 Thread Shigeru Nakagaki
Thanks, Alex :)



[flexcoders] Re: Image scaleContent=false causes Security Sandbox Violation in AIR 1.5.x

2009-03-01 Thread Shigeru Nakagaki
I'm a freelance and some of my customers use FlexBuilder to customize
app which I made :(

When they see Security Sandbox Violation in console, it's so hard to
explain.

# Especially the Japanese really minds about these tiny things.



[flexcoders] Re: Image scaleContent=false causes Security Sandbox Violation in AIR 1.5.x

2009-02-28 Thread Shigeru Nakagaki
Thank you, Alex.

# I don't want to see any ignorable warnings in console.
# Do not FlexBuilder output the warning that developer can ignore?




[flexcoders] Image scaleContent=false causes Security Sandbox Violation in AIR 1.5.x

2009-02-26 Thread Shigeru Nakagaki
Image is loaded, but Security Sandbox Violation log is outputted in 
console. If scaleContent is true, there is no Security Sandbox 
Violation log.


crossdomain.xml is like this.

?xml version=1.0?
cross-domain-policy
site-control permitted-cross-domain-policies=master-only/
allow-access-from domain=* /
/cross-domain-policy


And app loads policy file on initialization like this.

Security.loadPolicyFile(http://localhost/crossdomain.xml;);


Cannot this Security Sandbox Violation log be avoided ?

Cannot we access context data of loaded image in AIR ??


thanks

Shigeru Nakagaki




[flexcoders] get-method of LCDS can not communicate with ColdFusion

2008-09-25 Thread Shigeru Nakagaki
hello...

I'm tired to develop LCDS + CF. There are so many troubles...

Is this an enterprise product?

get-method can't communicate with CF although fill-method can 
communicate with CF on my customer environment. get-method works on 
my local environment.

There is no error on CF console. So this must be communication 
problem. The error is below.

DataService Fault event : (mx.rpc::Fault)#0
errorID = 0
faultCode = Server.Processing
faultDetail = (null)
faultString = Error invoking get-method for destination hoge:
error unmarshalling return; nested exception is:
java.lang.ClassNotFoundException:
coldfusion.runtime.TemplateProxyWrapper (no security manager: RMI
class loader disabled)
message = faultCode:Server.Processing faultString:'Error invoking
get-method for destination hoge: error unmarshalling return;
nested exception is:
java.lang.ClassNotFoundException:
coldfusion.runtime.TemplateProxyWrapper (no security manager: RMI
class loader disabled)' faultDetail:'null'
name = Error
rootCause = (Object)#1
cause = (Object)#2
cause = (null)
exception = (null)
localizedMessage = coldfusion.runtime.TemplateProxyWrapper (no
security manager: RMI class loader disabled)
message = coldfusion.runtime.TemplateProxyWrapper (no security
manager: RMI class loader disabled)
detail = (Object)#2
localizedMessage = error unmarshalling return; nested exception is:
java.lang.ClassNotFoundException:
coldfusion.runtime.TemplateProxyWrapper (no security manager: RMI
class loader disabled)
message = error unmarshalling return; nested exception is:
java.lang.ClassNotFoundException:
coldfusion.runtime.TemplateProxyWrapper (no security manager: RMI
class loader disabled)



Any ideas??


thanks

Shigeru Nakagaki



[flexcoders] Re: LCDS : changeObject.addChangedPropertyName works correctly??

2008-09-15 Thread Shigeru Nakagaki
I did changeObject.addChangedPropertyName at update phase. But 
additional value wasn't contained in DataService result. I mean 
additional property name wasn't contained in DataMessage.body[0] 
although DataMessage.body[2] was same data as server-side. And client 
value which was in filled collection was never merged.


Is this a bug of ColdFusion or LCDS2.5.1 or fds.swc?

Or DataService can't handle server-processing value as well as the 
case of creation phase?


thanks

Shigeru Nakagaki


--- In flexcoders@yahoogroups.com, João Fernandes 
[EMAIL PROTECTED] wrote:

 addChangedPropertyName is used to inform the changeObject that 
 additional fields were updated besides the ones sent by the client.
 If during the update process, you decide to update a new field 
based on 
 some condition, you change it, you commit it and then notify the 
change 
 object that property has been changed, so, once clients get the 
 notification, they will know that some additional change in a field 
has 
 been made.
 -- 
 
 João Fernandes
 
 Adobe Community Expert
 http://www.onflexwithcf.org
 http://www.riapt.org
 Portugal Adobe User Group (http://aug.riapt.org)





[flexcoders] Re: LCDS : changeObject.addChangedPropertyName works correctly??

2008-09-15 Thread Shigeru Nakagaki
What!???

I dumped changeObject on CF. There is an addtional property.
But there is NOT an addtional value in LCDS 2.5.1 console.
And of course, there is NOT an additional value in client (AIR).


What is different between me and you?
I'm using mapping based CFC for value object, assembler and dao.
I'm using extended assembler.



thanks

Shigeru Nakagaki



--- In flexcoders@yahoogroups.com, João Fernandes 
[EMAIL PROTECTED] wrote:

 Shigeru,
 
 it works as expected in both 2.5.1 and 2.6. Try to enable and check 
the 
 logs to track it down.
 
 -- 
 
 João Fernandes
 
 Adobe Community Expert
 http://www.onflexwithcf.org
 http://www.riapt.org
 Portugal Adobe User Group (http://aug.riapt.org)





[flexcoders] Re: LCDS + CF : How can I change bean's property of new version on creation?

2008-09-13 Thread Shigeru Nakagaki
Thank you for replay!

I can't do that. Because the value is actually timestamp to detect 
confliction. Therefor the value should be changed after creation.

h ok, I have to change something


thanks

Shigeru Nakagaki



--- In flexcoders@yahoogroups.com, João Fernandes 
[EMAIL PROTECTED] wrote:

 Shigeru,
 
 when you create new items , a refill is made to your collection and 
it 
 will compare it with the previous fill, so since you didn't update 
the 
 hoge property, it won't be reflected in your refill.
 
 If you do this instead
 
 cfset new.hoge = 123
 cfset new = dao.create(new)
 cfset co.setNewVersion(new)
 cfset co.processed()
 
 your hoge will be committed to the db and will be reflected in the 
 result of the fill.
 -- 
 
 João Fernandes
 
 Adobe Community Expert
 http://www.onflexwithcf.org
 http://www.riapt.org
 Portugal Adobe User Group (http://aug.riapt.org)





[flexcoders] Re: LCDS + CF : How can I change bean's property of new version on creation?

2008-09-13 Thread Shigeru Nakagaki
Sorry, I was half asleep :D It never conflict on creation.
I tried your way.

cfset new.hoge = 123
cfset new = dao.create(new)
cfset co.setNewVersion(new)
cfset co.processed()

But hoge of result data was NOT changed although the debugged data 
was changed on server-side. However identity value (auto 
incrementation) was updated.


hmmm...  Am I missing some setting to work this?


thanks

Shigeru Nakagaki



--- In flexcoders@yahoogroups.com, João Fernandes 
[EMAIL PROTECTED] wrote:

 Shigeru,
 so that property is a read only property?is it just a timestamp for 
 conflict resolution? You shouldn't need that since that's what the 
sync 
 method is all about, to detect possible conflicts and throw them. How 
 could your bean at creation be in a conflict anyway?
 
 João Fernandes
 
 Adobe Community Expert
 http://www.onflexwithcf.org
 http://www.riapt.org
 Portugal Adobe User Group (http://aug.riapt.org)





[flexcoders] Re: LCDS : changeObject.addChangedPropertyName works correctly??

2008-09-13 Thread Shigeru Nakagaki
Sorry again. It was totally my misunderstanding. 
However addChangedPropertyName didn't affect result data although it 
affected changeObject on server-side.

I think I should set dummy data at client-side


thanks

Shigeru Nakagaki



--- In flexcoders@yahoogroups.com, João Fernandes 
[EMAIL PROTECTED] wrote:

 Shigeru,
 
 are you sure there isn't any fault or conflict every two times? Are 
you 
 sucessfully commiting that value to the db?
 I've been using addChangedPropertyName for a long time without an 
issue, 
 both 2.5.1 and 2.6.
 
 -- 
 
 João Fernandes
 
 Adobe Community Expert
 http://www.onflexwithcf.org
 http://www.riapt.org
 Portugal Adobe User Group (http://aug.riapt.org)





[flexcoders] LCDS : changeObject.addChangedPropertyName works correctly??

2008-09-11 Thread Shigeru Nakagaki
Hello

I'm talking about Data Management Service with LCDS 2.5.1 + CF801.

I'm tring to add change information like ...

cfset new = dao.update(old, new)
cfset co.addChangedPropertyName(hoge)
cfset co.processed()


But actual result is NOT correctly once every two times.
I mean it set a different property name once every two times.
And the different value is always same.

How can I fix this problem??


thanks

Shigeru Nakagaki



[flexcoders] Can we implement custom authentication per destination of DataService?

2008-08-28 Thread Shigeru Nakagaki
I know Login commands in configuration. And I know remote-username 
and remote-password.

I'm talking about calling CFC for authentication from LCDS.
And setting per destination like this.

destination id=cfcontact
  adapter ref=coldfusion-dao/
  properties
componentsamples.contact.ContactAssembler/component
loginCommandsamples.contact.LoginCommand/loginCommand
...


Is this possible? Or Is there any ways like this?



[flexcoders] Re: How can we use message event of mx.data.DataService?

2008-08-27 Thread Shigeru Nakagaki
Thank you. I got it.

Shigeru Nakagaki



--- In flexcoders@yahoogroups.com, Seth Hodgson [EMAIL PROTECTED] wrote:

 This event is dispatched when a DataMessage has been pushed to the 
client by the server, after it has gone through internal processing 
by the DataService. Unlike a ResultEvent or FaultEvent that you'll 
always want to handle because they correlate to a fill() or some 
other operation you've invoked, the MessageEvent isn't something you 
need to handle unless you want to put something up in your UI 
indicating that a pushed data change was received by the client.
 
 You can't send/receive custom messages using DataService; for that, 
use Producer/Consumer or MultiTopicProducer/MultiTopicConsumer 
directly.
 
 Seth
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Shigeru Nakagaki
 Sent: Tuesday, August 26, 2008 10:48 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] How can we use message event of 
mx.data.DataService?
 
 
 DataService has message event. But I've never received this event.
 
 Can we send/receive custom messages by mx.data.DataService?





[flexcoders] How can we use message event of mx.data.DataService?

2008-08-26 Thread Shigeru Nakagaki
DataService has message event. But I've never received this event. 

Can we send/receive custom messages by mx.data.DataService?



[flexcoders] the commit method of LCDS doesn't commit deleted child object. Is this normal?

2008-08-25 Thread Shigeru Nakagaki
When autoCommit is false, the commit method of LCDS doesn't commit 
deleted child object (hierarchical destination, many-to-one). If the 
case is adding child object, the commit method creates new child 
object. Is this normal? Do we have to delete child object manually if 
autoCommit is false?



[flexcoders] Re: the commit method of LCDS doesn't commit deleted child object. Is this normal?

2008-08-25 Thread Shigeru Nakagaki
A... I see. I use ColdFusion for server-side language. And I don't 
use O/R things. So I have to add the logic to delete child data. ok, I 
got it.


Thank you for quick response!!


Shigeru Nakagaki



--- In flexcoders@yahoogroups.com, Jeff Vroom [EMAIL PROTECTED] wrote:

 When you remove an item from an association property, if you want to 
delete that object you do have to call deleteItem explicitly.
Currently removing the object from the association property will only 
send an update change to the parent object.   It won't delete the 
child object.
 
 Many O/R systems have a cascade=delete attribute on the association 
which lets you do the delete automatically when the child becomes 
disassociated but we haven't implemented this feature in LC DS yet.
 
 This is independent of autoCommit... even if you set autoCommi=true, 
you'll still need to do the deleteItem explicitly.
 
 Jeff
 




[flexcoders] Cannot create class of type 'coldfusion.flash.messaging.ColdFusionAdapter'

2008-07-15 Thread Shigeru Nakagaki
Hello

I want to use FlexMessaging with ColdFusion's EventGateway on LCDS.

I added the adapter-definition in messaging-config.xml.
adapter-definition id=cfgateway 
class=coldfusion.flex.CFEventGatewayAdapter default=true /

I added commons-httpclient-3.0.1.jar, concurrent.jar, 
cfdataservicesadapter.jar and cfgatewayadapter.jar in WEB-INF/flex/jars


But server says 

LifecycleException:  javax.servlet.UnavailableException: Cannot create 
class of type 'coldfusion.flash.messaging.ColdFusionAdapter'.


How should I do



[flexcoders] adding design view feature for third-party component

2008-04-24 Thread Shigeru Nakagaki
Hi, FlexBuilder team.

in Flex version comparison chart
www.adobe.com/products/flex/upgrade

There is Design view extensibility for third-party products.
Is there any document about this?

In SWC of ilog's elixer, there are design.xml and design.swf for 
Design View feature of FlexBuilder. How can we create these files?


thanks

Shigeru Nakagaki
blog : shigeru-nakagaki.com



[flexcoders] About Creating app wizard from SQL Server

2008-03-06 Thread Shigeru Nakagaki
I'm trying to access SQL Server from FlexBuilder3 via Creating 
Application Wizard from Database. I can't get table list from SQL 
Server Express but I passed access test (port number : 1433). I tried a 
couple of users including sa. But FlexBuilder3 just told 
me java.lang.NullPointerException. Is this bug? Or I can use SQL 
Server Express??


Thanks

Shigeru Nakagaki



[flexcoders] Re: Tutorial - creating a vertical tabnavigator

2008-01-25 Thread Shigeru Nakagaki
Hi.

Here is a sample of vertical tab navigator.
shigeru-
nakagaki.com/flex_samples/TabBar/VTabNavigator/VTabNavigator.html

thanks

Shigeru Nakagaki



[flexcoders] Re: Tutorial - creating a vertical tabnavigator

2008-01-25 Thread Shigeru Nakagaki

Hi.

Here is a sample of vertical tab navigator.

VTabNavigator

 
http://shigeru-nakagaki.com/flex_samples/TabBar/VTabNavigator/VTabNavig\
ator.html thanks

Shigeru Nakagaki ( blog http://shigeru-nakagaki.com/   )



[flexcoders] Re: Tutorial - creating a vertical tabnavigator

2008-01-25 Thread Shigeru Nakagaki
Hi.

Here is a sample.
http://shigeru-nakagaki.com/flex_samples/TabBar/VTabNavigator/VTabNavigator.html
(including View Source)


--- In flexcoders@yahoogroups.com, mjulsonecometry [EMAIL PROTECTED] wrote:

 I'm using the Flex Builder 3 beta and haven't seen a way to make the 
 tabnavigator go vertical instead of horizontal.  Anyone know of a 
 tutorial/article that shows how to build something similar through 
 maybe a buttonbar and viewstack?
 
 Or if anyone has any ideas on how to change the tabs from the top to 
 the left with the tabnavigator, that would be great.  I've searched all 
 over but haven't come up with anything.





[flexcoders] Zoom effect and autoLayout

2007-12-14 Thread Shigeru Nakagaki
hi.

LiveDocs says The Zoom effect does not work when the autoLayout 
  property is false.. But I tested a couples of pattern and it works fine. 
Could anyone tell me what it is wrong with Zoom effect and autoLayout??


!-- ** ** ** **  --
mx:Zoom target={pl} /

mx:VBox autoLayout=false backgroundAlpha=1.0 backgroundColor=#ff
mx:Panel id=pl title=Effect Target width=250 height=220 
autoLayout=false
mx:Image source=@Embed(source='./assets/hoge.png') /
/mx:Panel
/mx:VBox
!-- ** ** ** **  --



  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 


[flexcoders] How to use a component extended dynamic class in MXML?

2007-10-01 Thread Shigeru Nakagaki

Step 1. create MyWebService like below.
public dynamic class MyWebService extends WebService

Step 2. write MXML like below.
?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
layout=absolute xmlns:pepe=org.pepe.*
pepe:MyWebService id=srv
mx:operation name=getMostRecentPosts
mx:request xmlns=
limit30/limit
offset0/offset
languageIds6/languageIds
/mx:request
/mx:operation
/pepe:MyWebService

Then compiler said Could not resolve mx:operation to a component
implementation.

What is the problem about this code?




[flexcoders] LCDS + CF : How can I change bean's property of new version on creation?

-- Thread Shigeru Nakagaki
->









  
  [flexcoders] LCDS + CF : How can I change bean's property of new version
  
  
  
  
  
  








	

	flexcoders 

	
		
			-- Thread --
			-- Date --
			





			
		
	



	
	
	




 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








[flexcoders] LCDS + CF : How can I change bean's property of new version on creation?
Shigeru Nakagaki
 


Re: [flexcoders] LCDS + CF : How can I change bean's property of new version on creation?
João Fernandes


[flexcoders] Re: LCDS + CF : How can I change bean's property of new version on creation?
Shigeru Nakagaki


Re: [flexcoders] Re: LCDS + CF : How can I change bean's property of new version on creation?
João Fernandes


[flexcoders] Re: LCDS + CF : How can I change bean's property of new version on creation?
Shigeru Nakagaki











 






  
  





Reply via email to