Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

orca2007
orca2007
Offline

Badges

Badges
2

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
3

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by orca2007
Customize the badges you want to showcase on your profile
DataService Problem - Adobe LiveCycle 08-05-2009
Hi there.I have the following problem:A customer uses a flex application through a firewall and a proxy (squid).The application is hosted outside the network of the customer.Everything works fine.Unless the user uses a dialog which uses LCDS-Push.After pushing a button which fills a datagrid an error message appears on the client side (please call your system administrator) and the datagrid is not filled.On the server the logs look fine.We use Flex 3, LCSD 2.6, JBoss 4.If i use firefox and go to...

Views

562

Likes

0

Replies

1
Re: Remoting Java Externalizable long - Adobe LiveCycle 06-01-2009
Java: public void readExternal(ObjectInput in) throws IOException,ClassNotFoundException { id = (String)in.readObject(); name = (String)in.readObject(); description = (String)in.readObject(); price = in.readLong(); } public void writeExternal(ObjectOutput out) throwsIOException { out.writeObject(id); out.writeObject(name); out.writeObject(description); out.writeLong(price); }AS3: public function readExternal(input:IDataInput):void { id = input.readObject() as String; name = input.readObject() as...

Views

125

Likes

0

Replies

0
Remoting Java Externalizable long - Adobe LiveCycle 18-12-2008
Hi there.I have the following problem:I like to use Remoting with my own externalize implementationbetween a java and a as3 class.Everthing works fine except the transmission of a member oftype long in the jave class.The only combination which works without runtime erros is:Write: Java: writeLong AS3: writeDoubleRead: Java: readLong AS3: reabDoubleBut the values i get for the member are not correct on bothsides.Java long value: 2 AS3 Number value: 1.9762625833649862e-323

Views

768

Likes

0

Replies

2