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
Re: DataService Problem - Adobe LiveCycle 08-05-2009
I'll recomend you to look at channels definitions XML and look at the ports are being used for your app, then you can see if your client's proxy has blocked this ports or not.Sincerely,MichaelEl 08/05/2009, a las 8:24, orca2007 escribió:>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...

Views

92

Likes

0

Replies

0
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