lcds

PDF generator configuration for live cycle

青春壹個敷衍的年華 提交于 2019-12-25 04:56:06
问题 i installed livecycle server using turnkey its running i am able to login in workbench and created my first app.but during installation i unchecked pdf generator .after this i again uninstall and install it this time there is a pdf generator configuration box with heading "Admin User credentials for native PDF conversions" if you are config.native pdf conversions using LiveCycle PDF generator on Windowsserver2008,u must provide the account for at least one localthen in Username,password and

What material did you use to learn Flex/Air, and with ColdFusion + BlazeDS/LCDS? [closed]

不羁岁月 提交于 2019-12-21 17:41:16
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . What material did you use to learn Flex/Air itself, and with ColdFusion + BlazeDS/LCDS? 回答1: Flex in a Week http://www.adobe.com

Serializing immutable java classes to actionscript with LCDS

杀马特。学长 韩版系。学妹 提交于 2019-12-21 04:49:10
问题 I've got a complex object which is being managed by the LCDS DataServices data management and being created/updated etc using custom assemblers. The vast majority of the object hierarchy is being serialized/deserialized correctly but I've hit a stumbling block when it comes to serializing immutable java classes. In a java only world I would use the java writeReplace and readResolve methods as this excellent blog describes: http://lingpipe-blog.com/2009/08/10/serializing-immutable-singletons

How To Make a channel Secure ? I'm using a Amf channel , How to add security to My channel

佐手、 提交于 2019-12-13 18:55:29
问题 I'm using a Amf channel , How to add security to My channel.. 回答1: You need to change the channel def's, you'll find them in: WEB-INF/flex/services-config.xml Change or add a secure definition and endpoint - here is an example: <channel-definition id="my-server" class="mx.messaging.channels.AMFChannel"> <endpoint uri="http://{server.name}:{server.port}/{context.root}/amf" class="flex.messaging.endpoints.AMFEndpoint" /> </channel-definition> <channel-definition id="my-server-secure" class="mx

ALC-TTN-105-000 could not connect to bootstrap servlet

元气小坏坏 提交于 2019-12-12 05:39:06
问题 hi i am trying to install livecycle server using Adobe LiveCycle Configuration Manager.in this i reached to a slide heading is LifeCycle ES3 Database initialization there is a button labeled as initializa and two text field in host text field i entered localhost and in port i entered 8080 and getting error ALC-TTN-105-000 could not connect to bootstrap servlet.Port[Connection refused:connect] may be invalid . i tried other ports also 8081 8085 9090 etc but still facing the same error .can any

Can I get the client's IP address in an LCDS service call?

喜欢而已 提交于 2019-12-04 16:55:23
I'm trying to find the IP address of a client when they make a particular LCDS service call. Understanding all the issues of getting a "real" IP address and privacy concerns and so on, it is possible to find the client's IP address? tj I think you can get hold of it pretty easily. Not tested, but give it a try. String ip = FlexContext.getHttpRequest().getRemoteAddr(); I didn't find a way how to do it for all channel types with a simple method call. So I use such code: String ip; Endpoint clientEndpoint = FlexContext.getEndpoint(); if (clientEndpoint instanceof RTMPEndpoint) { ip = (

What material did you use to learn Flex/Air, and with ColdFusion + BlazeDS/LCDS? [closed]

隐身守侯 提交于 2019-12-04 07:26:59
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . What material did you use to learn Flex/Air itself, and with ColdFusion + BlazeDS/LCDS? Henry Flex in a Week http://www.adobe.com/devnet/flex/videotraining/ FLEX tutorials PDF http://henrylearnstorock.blogspot.com/2009/05/excellent-flex

Serializing immutable java classes to actionscript with LCDS

隐身守侯 提交于 2019-12-03 13:52:53
I've got a complex object which is being managed by the LCDS DataServices data management and being created/updated etc using custom assemblers. The vast majority of the object hierarchy is being serialized/deserialized correctly but I've hit a stumbling block when it comes to serializing immutable java classes. In a java only world I would use the java writeReplace and readResolve methods as this excellent blog describes: http://lingpipe-blog.com/2009/08/10/serializing-immutable-singletons-serialization-proxy/ This is how I originally wrote my java class, expecting livecycle to call the