Newbie question about livecycle data services es

Hi all.
i've downloaded the LiveCycle ES2 VMware virtual appliance, setup it up on a esxi server, workspace, content space, all are up and running, but here comes my question, how do i install livecycle data services in there?how do i set it up to start working with the rest?
i've read the documentation on how to install, but i'm a bit confused.
can anyone give me any pointers about this?
help would be appreciated
thanks in advance

1) In Workbench ES2 create a process to create a new user. If you need to create a group there is also a service to create group. Create a short-lived process using the Avoka service > Create User operation. The Create User operation has the inputs depicted below.
2) Create a process variable called 'newUserXml' of type 'xml' and declare the variable as input. Ideally, create a schema for the xml.
3) The Create User operation has a single output, a string containing the user ID. Create a process variable called 'userID' of type 'string' and declare the variable as output.
3) Save, check-in, and deploy the process.
4) To test the process, invoke the process from the Workbench. For the input variable, plug data into an xml structure such as this...
<NewUser>
<Login/>
<Password/>
<CommonName/>
<CanonicalName/>
<Description/>
<Email/>
<Initials/>
<OrgName/>
<Address/>
<Telephone/>
</NewUser>
5) If the test succeeds, you are ready to create the Flex application. If not, figure out why.
6) Build a Flex app. Once you deployed the process, the remoting endpoint is automatically created and can be accessed by Flex. Here is a stub.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="initChannelSet()">
<mx:Script>
<![CDATA[
import mx.messaging.channels.AMFChannel;
import mx.messaging.ChannelSet;
import mx.rpc.events.ResultEvent;
import mx.rpc.events.FaultEvent;
private function initChannelSet():void {
var cs:ChannelSet= new ChannelSet();
cs.addChannel(new AMFChannel("my-amf","http://localhost:8080/remoting/messagebroker/amf"));
ro.channelSet = cs;
private function submitRequest():void {
var newUser:XML = new XML(getXmlData());
ro.setCredentials("administrator","password");
ro.invoke({newUserXml:newUser});
private function remotingResultHandler(event:ResultEvent):void {
var userID:String = event.result.userID;
private function remotingFaultHandler(event:FaultEvent):void {
Alert.show(event.fault.faultDetail.toString());
private function getXmlData():String {
var xmlStr:String = "<NewUser>"
  + "<Login>" + login.text + "</Login>"
  + "<Password>" + password.text + "</Password>"
  + "<CommonName>" + commonName.text + "</CommonName>"
  + "</NewUser>>";
  return (xmlStr);
]]>
</mx:Script>
<mx:RemoteObject id="ro" destination="MyApplication/processes/CreateNewUser"
   result="remotingResultHandler(event)" fault="remotingFaultHandler(event)"/>
<mx:VBox>
   UI goes here...
   <mx:Button label="Submit" click="submitRequest()"/>
</mx:VBox>
</mx:Application>
Steve

Similar Messages

  • Newbie question about Logical Data services

    Lets say we want to create a Logical Data Service that will retrieve data from several web-services and aggregate the results. When a client requests data from the logical data service, a number of webservices will get invoked. Response time of these webservices can be different. We do not want to keep the client app waiting for long.. so is it possible to define a cut-off time in data service after which client gets results obtained till that point? Alternatively, does ALDSP provide support for clients that could poll a data-service to check for results of a previously submitted query?
    Will appreciate your help in understanding capabilities of ALDSP and approach taken by you in similar situations.

    to define a cut-off time in data service after which client gets results obtained till that point?See the fn-bea:timeout() function in the ALDSP documentation. It will do exactly what you want for web-services. Note that adding the function to a query will of course alter the query plan - which will have little/no effect for web-services - but for database access, may prevent some optimizations.
    In DSP 3.0, you will be able to use the hasNext()/next() form of the mediator api and the client will only block while the first and subsequent items are being retrieved.
    If you want to call DSP asynchronously - I believe ALSB allows you to create an asynchronous proxy service (JMS, for instance)

  • Help me about LiveCycle Data Services

    Hi all,
       I use Flex 3 and BlazeDS server to write my web app. Today, I want use LiveCycle Data Services ES. I have done some steps bellow and I need some guides continue from anyone.
       1. Download the LiveCycle Data Services ES from adobe home page (ok).
       2. Install it with option is include Tomcat (ok).
       ... what step continue..?
       My project was created with BlazeDS server, and I need place inside LiveCycle Data Services ES that just installed ? Or I must re-create my project with LiveCycle Data Services ES ?
       Please guide to me some necessary steps to use LiveCycle Data Services.
       Thanks very much.

    Which file exactly from the lcds samples? I can't find this file in the livedocs nor in the source of the samples.

  • About LiveCycle Data Services ES2

    hi:
      I set up a project the same as [LCDS install]/tomcat/testdrive_dataservice.
    occur errors:
         Reference Error:Error #1069:
               not found maxFrequency property in mx.data.DataManagementConsumer and default value
                                          help  me,thanks!!

    Which file exactly from the lcds samples? I can't find this file in the livedocs nor in the source of the samples.

  • Newbie question about extracting data from events

    HI
    i am sure there is a simple solution to this, but I am getting frsutrated  trying to extract useful data from an event:
    I have set up and event listner, whatching for CHANGE on a HorizontalList
    so far so good, event handler called when a list item is clicked, and the event is passed, but what is the syntax for getting the in particular the columnIndex, which can tantalising be seen as part of the event in debug.
        public function ShowGroupTab(event:Event):void{
                var a:Number =event.target.columnIndex;
    causes this runtime error:
    ReferenceError: Error #1069: Property columnIndex not found on mx.controls.HorizontalList and there is no default value.

    First it would be better to cast your event in the proper class. In this case the event is a ListEvent. ListEvent extends Event so your code will work but be harder to maintain.
    Your problem is that you're trying to access the columnIndex property on the event.target instead of the event itself. The event.target is the component on which the action was performed, here it's a HorizontalList, and the list does not have a columnIndex property.
    Try this :
    public function showGroupTab(event:ListEvent):void{
         var a:int= event.columnIndex;

  • Why would I need to use LiveCycle Data Services in a Flex app?

    I cannot figure out what additional functionality is provided by using LiveCycle Data Services in my Flex apps.  I cannot get a clear understanding of how using LiveCycle Data Services would benefit my applications.  Does someone out there use LiveCycle Data Services?  If so, what do you do with it in Flex?
    Thanks!

    - data push for publish/subscribe implementations
    User has to do nothing to get updated information. You push it to their machine when new data is available, like Yahoo finance updated quotes.
    - data paging
    You don't want to display one million rows in your datagrid at once. Get a batch of data, if the user scrolls down, get the next batch, etc.
    - server side clustering
    One server does not get overloaded. High traffic sites have their large number of concurrent connections managed more efficiently.
    - JMS services
    JMS is a powerful technology for messaging throughout an application, and LCDS makes it much easier.
    - RTMP tunneling
    Allows the use of the RTMP protocol in LiveCycle Data Services applications. Makes it easier to traverse firewalls and proxies appropriately that currently prevent direct RTMP client connections to the server.
    If this post answered your question or helped, please mark it as such.

  • BlazeDS vs. LiveCycle Data Services

    I'm a little but frustrated right now because nobody seems to understand what I'm talking about. Not even Adobe nor the reseller. Here's my problem:
    I would like to buy the software that BlazeDS is based on. As far as I know, this software is called LiveCycle Date Services or LiveCycle DS. When you install ColdFusion 8, you can install a demo version of it. I also downloaded the trial version (120 days) of version 2.6 (226,619 Kb).
    I chatted with Adobe and they told me that the cost is 30,000.00$ for 1 CPU?!? I talked with my reseller and he told me 7,000.00$ for 1 CPU.
    I don't think that a 222,619 Kb software that is similar to the free BlazeDS worth 30,000.00$ not even 7,000.00$.
    Can someone help me with that? Is it really that expensive?
    Thanks.

    I understand how this can a bit confusing, but trust that Adobe wants to help you get this sorted out.
    LiveCycle Data Services is ultimately targeted at large enterprise deployments for web-based applications that would serve thousands of clients and as such is priced accordingly.  We have heavily invested for several years now to make a very unique, highly performant and valuable product for a very small market and as such we priced accordingly and turned the BlazeDS version over to the open source community, ultimately satisfying most of the use cases for free. 
    It sounds to me like you have a case to take on the full version, and you have a reseller that is apparently willing to leverage the full discount based on your specific use case, and further that you have also gotten a 'stock' answer from Adobe in terms of the LiveCycle Data Services list price.  If you would like to speak directly with someone from the product team who may be able to clarify some other options, let me know and I will contact you directly or share my contact information with you.

  • Price of LiveCycle Data Services

    Hi everybody
    I would like to know the price of LiveCycle Data Services,
    even a range of price or an approximative price.
    I remember that the price of Flex Data Services was about 10
    000 or 15 000 (euro or dollars I don't remember exactly) per CPU.
    But with BlazeDS, the price of LCDS may have changed.
    Thank you very much
    Bonjour
    J'aurais besoin de connaitre le prix de LiveCycle Data
    Services même approximativement juste pour avoir un ordre
    d'idée. A l'époque de Flex Data Services 2 je crois me
    rappeler que c'était 10 000 ou 15 000 euros par CPU, mais ca a
    du changer avec l'arrivée de BlazeDS.
    L'info n'est pas facile à trouver...
    Merci beaucoup

    Pricing really depends on a number of things, and can range
    from free (for Blaze DS) to tens of thousands of dollars.
    You can get Blaze DS for free from
    http://opensource.adobe.com/
    The best thing to do is to contact a sales rep.
    http://www.adobe.com/products/livecycle/dataservices/
    says that the phone number for sales is 888-649-2990, or
    there's a form that you can fill out to have Adobe contact you:
    http://www.adobe.com/go/livecycle_rfi_en_us
    Mike

  • Problem LiveCycle Data Services with Parsley Framework

    Hi All,
    I have problem when using LiveCycle Data Services and Parsley framework.
    Here is my Dynamic command :
    public function execute(message:ServiceMsg):AsyncToken{
                                       return dataservice.fill(...);
    public function result(event:ResultEvent):void
         Alert.show ("run successful");
         // call another method
         xyz(); // this method take a long time (about 1 minutes)
    The problem here is the alert message not show until xyz() method finished. It's so odd behavior.
    Anybody can explain this problem.
    I'm using parsley 2.4.0
    Thanks,
    ndt

    Hi All,
    I have problem when using LiveCycle Data Services and Parsley framework.
    Here is my Dynamic command :
    public function execute(message:ServiceMsg):AsyncToken{
                                       return dataservice.fill(...);
    public function result(event:ResultEvent):void
         Alert.show ("run successful");
         // call another method
         xyz(); // this method take a long time (about 1 minutes)
    The problem here is the alert message not show until xyz() method finished. It's so odd behavior.
    Anybody can explain this problem.
    I'm using parsley 2.4.0
    Thanks,
    ndt

  • LiveCycle Data Services for Java EE 4.6 now available

    I'm pleased to announce the general availability of LiveCycle Data Services version 4.6. It is the latest update to the JEE or LiveCycle version of Data Services and it is a feature-rich major release, including expanded support for mobile applications (HTML5/JavaScript, native iOS and Java/Google Android), adds an SAP Connector, introduces managed remoting, and enhancements to model driven development and the offline synchronization framework.
    For more information check out the following two sites:
    Product overview on Adobe.com: http://www.adobe.com/products/livecycle/dataservices/
    LiveCycle Developer Center on the Adobe Developer Connection: http://www.adobe.com/devnet/livecycle/dataservices.html
    For existing customers with maintenance and support contracts, the Data Services 4.6 release along with Flash Builder 4.6 has been automatically pushed into your Licence Web Site (LWS) account. This includes ADEP/Livecycle V10 customers that have licence rights to Data Services.
    Juergen Hauser - Sr. Product Manager - LiveCycle Data Services

    This certification is currently being evaluated for upgrade to a new version. At this time, I cannot give a definitive answer about whether or not there will be an EE 6 version. We also do not have any info on retirement of the EE 5 version. I don't expect that this certification will retire terribly soon, as it is still getting a good amount of traffic. I'm sorry, I realize that my answer is not very informative or helpful, but that is the only info I have at this time. If you are interested in this certification, I would recommend that you go ahead and go for it. Even if we do end up retiring the certification path, the certification remains valid. It remains on your list of certifications in CertView and you can continue to use the OCM logo.
    If you are worried about getting 1/2 way through the path and having the path retire, I can tell you that we typically provide at least 3 months notice for a retiring exam/certification path. This path may require extra time because of the length of time that it takes to complete this certification path. Whenever this certification path is set to retire, we will make every effort to contact all candidates who are working on the certification at that time, so always be sure that your email address is updated and correct in your Pearson VUE profile.
    Regards,
    Brandye Barrington
    Certification Forum Moderator

  • Is LC Foundation bundled with LiveCycle Data Services

    I recently got this question - Do I get LC Workbench and LC Foundation when I buy LiveCycle Data Services?
    The answer is "No".
    With LiveCycle Data Services you get:
    1.       LiveCycle Data Services server - It works with most application server, but ship with a tomcat based turnkey option
    2.       Adobe Application Modeling Plugin - This is a plugin to Flash Builder 4 that enables to do Model Driven Development of Flex applications. This is "New in 3.0"
    Anil Channappa | Sr. Product Manager LiveCycle Data Services and Blaze DS
    Adobe Systems Inc | 21-61 Hickory Dr, Waltham, MA 02451-1011
    [email protected]<mailto:[email protected]>| 781.839.1331 | myBlog<http://anilchannappa.org/

    Hi Guillaume,
    there is no limitation. Dynamic PDF files can be generated with Livecycle Data Services.
    You should have a look at the XML file generated by your Flex code. Try to save it and see how the XML file behaves when you generate a PDF preview with Designer. You can go to the menu:  File >  Properties > Preview > Use XML test data...
    With the XFAHelper class, you can either load a PDF or a XDP file. Have you tried with a XDP ?
    I've attached a dynamic PDF file that I've created for a customer. I generate a dynamic PDF file using LiveCycle Data Services. Maybe you'll find some clues within the file.
    Michael

  • Error when caching data locally using LiveCycle Data Services

    Hi all,
    I developing a mobile application support working offline. I using cache feature of LiveCycle Data Services.
    This is my datasevice ( it has associate to others dataservice ) and autoSaveCache = true and cacheID = "xxx":
    <destination id="expenseData">
              <properties>
                        <source>expense.ExpenseDataAssembler</source>
                        <scope>application</scope>
                        <item-class>expense.ExpenseData</item-class>
                        <metadata>
                                  <identity property="id" />
                  <one-to-many property="expenseItems" destination="expense-item" />
                        </metadata>
              </properties>
    </destination>
    when I run application in the first, it run nomarly but when I close and run it again , i get the errror message as below :
    Error: Object instance needs an mx_internal::referencedIds property inorder to be managed: Object
              at mx.data.utils::Managed$/getReferencedIds()[C:\depot\DataServices\branches\milestone\adepd s46_rc\frameworks\projects\data\src\mx\data\utils\Managed.as:292]
              at mx.data::DataStore/restoreAssociations()[C:\depot\DataServices\branches\milestone\adepds4 6_rc\frameworks\projects\data\src\mx\data\DataStore.as:5010]
    - The error message not showed when I remove line <one-to-many property="expenseItems" destination="expense-item" /> .
    Please help me if you know about this problem.
    Thanks so much.

    no body help me !!!

  • PDF Generation with LiveCycle Data Services

    Hi everybody!
    I am using LiveCycle Data Services to generate a dynamic pdf. I worked with this tutorial : livedocs.adobe.com/livecycle/es/sdkHelp/programmer/lcds/pdfgen_1.html and i adapted the code to my own example.
    I created a pdf template with livecycle designer and i succeed to generate the pdf thanks to LiveCycle Data Services.
    Here is my problem :
    In LiveCycle Designer i create a table and bind my data connection (from xml source) to this table and i bind subforms to repeating data.
    It works when i try to open an overview of the pdf with LiveCycleDesigner.
    But when i try to generate the pdf with livecycle data service, there is no repeat of my data. There is only a number of items corresponding to the minimum of repeating i set in livecycle designer binding window...
    Is it possible to generate repeating data with LiveCycle DS ?
    an example of my xml source :
    <item id="1">
         <data>blabla</data>
    </item>
    <item id="2">
         <data>blabla</data>
    </item>
    In livecycle designer, if i set the minimum of repeating to 1,  LiveCycle DS generate a pdf with only one item.
    if i set the minimum of repeating to 2,  LiveCycle DS generate a pdf with only 2 items. etc.
    I don't know how to generate an indeterminate number of items...
    Thanks in advance for your help.
    Bye
    Guillaume

    Hi Guillaume,
    there is no limitation. Dynamic PDF files can be generated with Livecycle Data Services.
    You should have a look at the XML file generated by your Flex code. Try to save it and see how the XML file behaves when you generate a PDF preview with Designer. You can go to the menu:  File >  Properties > Preview > Use XML test data...
    With the XFAHelper class, you can either load a PDF or a XDP file. Have you tried with a XDP ?
    I've attached a dynamic PDF file that I've created for a customer. I generate a dynamic PDF file using LiveCycle Data Services. Maybe you'll find some clues within the file.
    Michael

  • Question about tranferring data from iPhone 3gs to iPhone 4

    I just had a couple quick questions about transferring data from my old phone from my new iPhone 4. The reason i am wondering is because i am worried about whether i will encounter any problems when doing so.
    First off i have already sold my phone today, i reset all data and settings from the phone and gave it to my buddy so its gone. I did a full sync and backup yesterday so all the necessary files should be on my computer(windows 7). Now, im basically wondering if i will run into any problems if i restore my iphone 4 from a backup. My 3gs was running 3.1.2 on att. Now i know IDEALLY i would have updated it to iOS 4 before backing it up and used the newest version of itunes, but i did not. Does anyone think this will be a problem for me?
    Now with that out of the way, my biggest fear is losing my old data(text messages and notes mainly because i am a pack rat for those type of things) so id like to be SURE that none of my old backups will be deleted in any scenario. The reason i dont just restore it right now is because i want my new phone to be as clutter free as possible. I am going to be putting on here only the apps that i used often and would basically like to transfer over the BARE minimum; texts, notes, and highly used apps... So i guess my main question is can you transfer over only certain things like texts and notes after setting up the phone as a new phone. And if i were to set up the phone as a new phone what would happen to my old backups? Would i be able to selectively restore?
    Im afraid that it might not be a possibility to transfer only certain things even though it should be.. i should be able to select a text messages folder and put it on my new phone and be done with it... But anyway i dont want to rant. Can anyone explain to me how this all will work?
    ULTIMATE GOAL: Transfer only texts, notes, certain apps(and their data) and NOTHING ELSE.
    MOST IMPORTANT THING: Not losing texts and notes. I can deal with putting all the old **** on my new phone and cluttering/slowing it down if i NEED to.
    Thank you in advance, sorry for the long post.

    If the most important thing for you is keeping old text messages, notes, and voicemail, then you'll need to sync the phone from your existing backup. I know of no other way to access those items.
    Once you have synced to the new phone, check that you have those items that were important. Then you can reconnect your phone to iTunes, and change the sync settings to remove the apps or other items you no longer want to keep on the phone.
    iPhone backups are stored by iTunes; you can see them by opening your iTunes preferences, clicking on "Devices" and then looking in the window. You can delete old backups from here. I don't know how you can open/read the backups though.
    I don't expect you'd have any problems syncing from your old phone's backup, but it's definitely an either/or situation. Since you got rid of the old phone already, it's too late to email yourself your notes, or copy the text messages. Your previous backup is your only solution.

  • I want to question about the official service at the service center of Sony.

    I want to question about the official service at the service center of Sony.
    long since I like the models and items sony. from start playstation, cameras, camcorders up, I've ever had. and a new camera that I bought two years ie compact cameras Sony Cybershot DSC H200. as of a month ago, a camera was having problems in lenses that would not close. and setting the automatic mode to move by itself. I came to the Sony Service Center in Makassar, precisely on Jl. Shop Pengayomann A5 / 05 (0411) 442340.
    operator initially said only two weeks to work on my camera. but this week has been more dau even want to go in a month tomorrow, dated July 9, no news from the service center. and I kept the call to the office service. as well as assorted reasons. there are no spare parts or technical constraints, and the last one I call to his office, he said the factory spare part is damaged. imported directly from Singapore. I think, ko new spare part it can be damaged before using that? how the quality of this Sony spare part? ugly? not good? why?
    I was disappointed with this situation, where soon it will Eid, want to return home as well to Java. but the camera has not been settled workmanship?
    nah, roughly what is the solution of the Sony plagued with this problem? please help, because he did not know to whom to complain. operator had just said: it's up to the father alone.
    once again I asked for his help. solution. if you can before Eid arrived.
    Thank you,
    AD. Rusmianto

    Hi awwee107, 
    Welcome to the Sony Community! 
    We have forwarded your query to the relevant team for their further assistance and someone from local CC will contact you.
    Thanks!
     

Maybe you are looking for