Directory List from XML

I would outsource this section of a Flash site to someone who
understands
actionscript and xml.
The section that needs to be created is a project title
directory.
The project title list or directory:
1. needs to be created from an existing XML file.
2. be displayed in Flash as 3 columns with a scroll when
necessary. Each
column lists all Proj_title's for that Category.
3. Clicking on a Proj_title from the list would open up that
project in the
existing allprojects.fla.
The All Projects page is already done and pulls its data from
the same XML
file.
It displays scrolling images of products. When an image is
clicked, a
detailed section opens with other images and text all coming
from the same
xml file. This section is completed. Now with a Directory
List, the same
happens when clicking on a Proj_title from the list.
The directory list is what needs to be done.
The XML file contains: Image, Category, Proj_title,
Thumbnail, Summary,
Description, Picture1, Pic1Desc, Picture2, Pic2Desc,
Picture3, Pic3Desc,
Use, Builder, Builder etc.....
The XML file used for the directory is the same used for the
rest of this
allprojects.fla..
Please find link to see the xml file:
www.filecondo.com/allimages.xml
If you are interested in this freelance job please respond to
this post.
Thank you

The IsGetDevice operation will get you all the devices including their extension numbers from a CME. You need to set up the router XML interface on the router as per this document: http://cisco.com/en/US/docs/voice_ip_comm/cucme/srnd/design/guide/managcme.html#wp1076023
then follow the appropriate developer guide which you can get here: http://www.cisco.com/cgi-bin/dev_support/access_level/product_support (under voice gateway applications)
You'll also find searching this forum for the topic useful as there are a few things the developer guide fails to mention (specifially that you need to urlencode the message before sending).

Similar Messages

  • Directory listing from my OS X 10.5.8 server into a text file

    Does anyone know how I can get a directory listing from my server, which I can put into an Excel Spreadsheet?
    Thanks

    Download the free TextWrangler and drag the enclosing folder into it. Alternatively, open the AppleScript Editor in the /Applications/Utilities/ folder, paste the following in:
    do shell script "ls -AR " & quoted form of POSIX path of ((choose folder) as alias) & " >> ~/Desktop/inventory.txt"
    and run it as is.
    (104088)

  • Cannot "enable directory listing" from the wadm CLI

    With SJSWS 6.1 sp1 up to sp11, there was a documented bug that caused directory listing to work even though the ACL was:
    acl "default";
    authenticate (user, group) {
      prompt = "Sun ONE Web Server";
    allow (read, execute, info) user = "anyone";
    allow (list, write, delete) user = "all";With SJSWS 7.0, this bug was fixed. The default installed ACL is exactly the same from 6.1 to 7.0. e.g. the "list" right is given only to [all] authenticated user, and not everyone. So requesting a "GET /images/" will give you a 401 unauthorized, as should have happened in 6.1, which causes your browser to prompt you to login.
    By default, 7.0 webserver configs are created with directory listing enabled with "index-common". But it can also be disabled, directing the user to a defined static file on the web server disk. i.e.:
    Service method="(GET|HEAD)" type="magnus-internal/directory" fn="send-error" path="/path/on/disk/notFound.html"In either case, out of the box, neither enabling nor disabling directory listing matters because the default ACL denies directory listing in the prior case, and denies the "notFound.html" response in the later. Note "allow (list) user = all" requires authentication for the "list"privilege.
    To fix this, you change the ACL so the "list" privilege is in the first ACI, i.e., 'allow (read, execute, info, list) user = "anyone";'
    The problem is that even though the ACL file can be modified in the Admin Web GUI, it cannot be modified from the the wadm CLI.
    So, because of this, technically one cannot truly enable directory listing (wadm enable-directory-listing) using wadm. The best you can do is manually edit the existing ACL, or create a new ACL file and set that new file using wadm.
    I don't even see a way, using wadm, to dump new content into the ACL file. Without the GUI, you are stuck. And you cannot perform remote administration for this feature using wadm.
    If we admins are creating TCL scripts to automate creating and configuring webserver configs, this feature cannot be configured.
    I would like to know if I am wrong, and how I could resolve this using the wadm CLI alone.
    And if the default is going to remain that the "list" privilege requires authentication, this should be documented in the SJSWS7 documentation for enabling and disabling directory listing.

    pull-config does not work in this case because of two reasons:
    1. you must still manually edit the ACL file (can already do that on the admin server)
    2. and you must make that change on a node which has the configuration
    In my case, I want to remotely manage the configuration using wadm. But I do not want to log into one of the nodes in the server farm.
    And I want to avoid having to edit the ACL file manually if possible, or through the GUI which requires manual intelligent point-and-click efforts.
    Seems like my only bet is to:
    1. create the config via the wadm tcl shell
    2. then outside of the wadm command, execute some script that can perform a scp to the admin server, or a ssh for a local copy of a previously written ACL file - which requires a lot of extra setup to make that happen.
    3. then get back into wadm to execute the other tasks
    I want to avoid step #2.

  • Directory Listing from Web

    Hi All,
    I am trying to populate a menu with a list of PDF files from
    a particular folder. I've got this working perfectly for a local
    path using the FileXtra4 xtra, but I'm stumped with getting a
    folder from the web. I've tried the Buddy Web xtra, but it returns
    an empty list when I use:
    fileList = bwFileList("
    http://www.awebsite.com/stuff/",
    Maybe I could embed a Flash Movie and have Flash pass the
    list to Director?
    I'm using Director and Flash MX 2004
    Any help much appreciated
    Thanks guys,

    Hi,
    I'm not sure about Buddy Web xtra (I've not used it), but you
    have a couple of other options:
    1. Use the excellent free and for absolutely no sane reason
    depreciated MultiUSer Xtra to create a network connection with an
    ftp server and use standard ftp commands to get a directory
    listing. see
    http://www.lingoworkshop.com/Testzone/FTP_Client_Test.php
    2. Use getNetText to ask a server-script to return the list
    of files. This is probably the safest but is dependent on the
    server (example php script attached).

  • Retrieve file/directory listing from a URL

    I am building an applet to view images located on a given URL (not the same as the codebase URL...). The problem is how to see which directories and files that are located on the given URL? File.list() works fine as long as I'm the pictures are located on my own computer, but I would like to do something like:
    File f = new File(new URL("http://.../imagelibrary"));
    String [] x = f.list();
    Please help me out!
    You'll get credited for it - I promise!
    /Markus

    Hi,
    I make a try to help you. A applet has only a HttpConnection to the server. Typical over this connection you can receive a file. E.g., when you connect the http-server by a browser, you becomes a html-page, with a table or list from the directory,when it allowed. Over a HttpURLConnection you can receive this html-code by the following code-snippet:public class DownLoad {
         public static void main(String args[]) {
              try {
                   java.net.URL url = new java.net.URL("http://localhost:8080/../images/");
                   java.io.InputStream in = url.openStream();
                   int count = in.available();
                   byte content[] = new byte[count];
                   in.read(content, 0, count);
                   String contentAsString = new String(content, 0, count);
                   System.out.println(contentAsString);
              } catch (Exception e) {
                   e.printStackTrace();
    }Now you can show this in the applet directly or you parse the contentAsString and find the entry in the table/list.
    Hope thats help
    Roland

  • How to load images in List from Xml and view the image and resize the image & save in Flex?

    Hi Friends,
    I am new to flex i am doing application for image resizing rotating and save the resize image.
    I want to load the images from xml file to listcontrol and show that images as a icon in the listview,then i want to drag that image to panel that time it should show it original size of the Image.then it allows user to resize ,crop,rotate the image.then i want to save the resize image,when i save the resize image it should replace the original image in the xmllist.
    I am looking for some useful suggession ,if you dont mind want to see some snippet code.
    It will help me to understand the concept.
    Cheers,
    B.Venkatesan

    Not in Crystal Reports Basic for Visual Studio 2008. You'll have to upgrade to CR 2008 (12.x). Then use kbase [1320507|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] as a guide on how to do this.
    Ludek

  • Directory listing from a JAR file

    Hi,
    I want to know how i can get a list of files in a certain directory located inside a jar file.
    Thanks

    Programmatically, you need to parse the JAR with the help of java.util.zip.
    From the command prompt, you can do it with "jar -t archive.jar"

  • Using LINQ to extract list from XML [OpenXML]

    The following is the XML file that is generated from Word document through OpenXML:
    XML Link here
    I want to get the following list using LINQ:

    Hi,
    Take a look at this blog post:
    http://blogs.msdn.com/b/ericwhite/archive/2008/07/10/how-to-create-hierarchy-from-flat-data-using-linq.aspx
    It does exactly what you are wanting to accomplish.
    One point - if you want to get the text of those headings exactly, including the numbering, then you will want to make use of ListItemRetriever, which returns the list item (i.e. 1.1.1.1) for any given paragraph that is part of a numbered or bulleted list.
    http://openxmldeveloper.org/blog/b/openxmldeveloper/archive/2014/04/03/announcing-a-complete-re-write-of-listitemretriever-cs.aspx

  • Off Topic - Automatic creation of a Directory listing in XML

    Sorry if this is off topic.
    OK my fingers are getting tired... is there a tool, or widget that will read the contents of a directory and generate an index XML file of that directory?
    Running Mac OS X 10.6x server and we are hosting our own content. looking for a better way than hand-typing the directory of files for an RSS feed to iTunes U.

    Not currently - well at least not easily - there is always the programatic approach.
    I would suggest you can create an FSDB repository - this means you can then create your structure in the file system using standard desktop tools.
    After that you could do a mass copy back into the db based KM repository if you so wished.
    For your downstream systems you could always ICE the data across meaning you dont have to create everything again.
    Haydn

  • Populate dropDown or listBox with Directory Listing

    I need to populate a dropDown or listBox component with a directory listing from the Server.
    For example:
    \Import\XML_Files\*.xml
    Can someone point me in the right direction?
    Thanks

    Here is a hint
    File directory = new File(path);
    String[] files = directory.list();
    List fileList = new ArrayList();
    Populate the "fileList" with "files" (may need to create an object to get the file name)
    Ex
    class MyFileObject(){
    private String fileName;
    public getFileName(){
    return fileName;
    Create a object list data provider with the File List above. Now bind this data provider to the drop down list
    See my blog on how to use the Object List Data Provider
    http://blogs.sun.com/roller/page/winston?entry=objectlistdp_sample_project
    - Winston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • How to load the .xml file list from 'C:\Drag_list\Modified' into xmltype tb

    Hi all experts,
    I am in Oracle Enterprise Manager 11g 11.2.0.1.0.
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Feb 22 11:40:23 2011
    is there anyone know why
    SQL> create or replace directory XMLDIR as '/xdb/faq/testdata'
    2 /
    SQL> set long 10000 pages 200 lines 150
    SQL> --
    SQL> select xmltype(bfilename('XMLDIR','2003.xml'),nls_charset_id('AL32UTF8'))
    2 from dual
    worked. but
    SQL> create or replace directory XMLDIR as 'C:\Drag_list\Modified';
    SQL> select xmltype(bfilename('XMLDIR','2011.xml'),nls_charset_id('AL32UTF8'))
    from dual
    did not work?
    IS there any way I can load the .xml file list from 'C:\Drag_list\Modified' into xmltype table?
    Thanks.

    did not work?Generally we'll need a bit more info than "it didn't work", was there an ora-X error message? What was the error?
    Assuming you're on *nix a 'C:\<folder name>\...' directory spec just plain won't work, the directory has to point to a valid storage location on the database server host.
    Try a host command (at the database server) and make sure the .xml file name and location is valid, in sqlplus a "bang" (exclamation) runs a host command, i.e.:
    SQL> !ls -l /xdb/faq/testdata
    ... usr grp ... 2003.xml
    ...But if you are on windows, its the `host` command:
    SQL> host dir c:\drag_list\modified
    mm/dd/yyyy ... 2011.xml
    ...  The create directory ... as ... must point to a valid storage location for it to work, at least that is step one.

  • How to load the .xml file list from 'C:\Drag_list\Modif into xmltype table?

    Hi all experts,
    I am in Oracle Enterprise Manager 11g 11.2.0.1.0.
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Feb 22 11:40:23 2011
    is there anyone know why
    SQL> create or replace directory XMLDIR as '/xdb/faq/testdata'
    2 /
    SQL> set long 10000 pages 200 lines 150
    SQL> --
    SQL> select xmltype(bfilename('XMLDIR','2003.xml'),nls_charset_id('AL32UTF8'))
    2 from dual
    worked. but
    SQL> create or replace directory XMLDIR as 'C:\Drag_list\Modified';
    SQL> select xmltype(bfilename('XMLDIR','2011.xml'),nls_charset_id('AL32UTF8'))
    from dual
    did not work?
    IS there any way I can load the .xml file list from 'C:\Drag_list\Modified' into xmltype table?
    Thanks.
    Edited by: Cow on Apr 13, 2011 12:58 AM

    This is a question better suited for the sql and pl/sql support forum, since it is NOT an APEX based question..: PL/SQL
    Thank you,
    Tony Miller
    Webster, TX
    On the road of life...There are 'windshields', and there are 'bugs'
    (splat!)
    "Squeegees Wanted"
    If this question is answered, please mark the thread as closed and assign points where earned..

  • How to populate a sharepoint 2010 list from the active directory. How to populate a sharepoint 2010 list with all sharepoint user profiles

    How to populate a sharepoint 2010 from the active directory.
    I want a list of all the computers in the active directory,
    another one with all users.
    I want also to populate a sharepoint 2010 list from the sharepoint user profiles.
    Thanks
    sz

    While
    the contacts list is usually filled out for contacts that are outside the company, there are times when you would use a contacts list to store internal and external resources.  Wouldn’t it be nice if you didn’t have to re-type your internal contacts’
    information that are already in the system?  Now you can with a little InfoPath customization on the contacts list. 
    Here’s our plan:
    Create the contacts list, and open in InfoPath
    Create a data connection to the User Profile web service
    Customize the form adding some text, a people picker and a button
    Create InfoPath rules that will populate the contact fields from the user fields in the User Profile store
    Let’s get going!  Before we begin, make sure you have InfoPath 2010 installed locally on your computer.  I also want to give credit Laura
    Rogers and Darvish Shadravan’s book Using
    Microsoft InfoPath 2010 with Microsoft SharePoint 2010 Step by Step.  I know it looks like a lot of steps, but it’s easy once you get the hang of it.
    So obviously we need a contacts list.  If you don’t already have one, go to the SharePoint site where it will live, and create a contacts list.
    From the list, click the List tab on the ribbon, then click Customize form:
    So now we have our form open in InfoPath 2010.  Let’s add our elements to the form. 
    Above all the fields, let’s add some text instructing users what to do with the the field we’re about to add (.e.g To enter an existing user’s information, choose the user below).
    Insert a people picker control by clicking the Person/Group Picker control in the Controls section of the ribbon.  This will add a column to the contacts list called group.
    Below the people picker, insert a button control from the same section of the ribbon as above.  With the button still highlighted, click the Control Tools|Properties tab on the ribbon. 
    Then in the Label box, change the text to something more appropriate to our task (e.g. Click here to load user data!).
    You can drag the button control a little larger to account for the text.
    We should end up with something like this:
    Before we can populate the fields with user data, we need to create a connection to the User Profile Service.
    Add a data connection to the User Profile Service
    Click the Data tab on the ribbon, and click the option From Web Service, and From SOAP Web Service.
    For the location, enter the URL of your SharePoint site in the following format – http://<site url>/_vti_bin/UserProfileService.asmx?WSDL.  Click Next.
    Note - for the URL, it can be any SharePoint site URL, not just to the site where your list is.
    For the operation, choose GetUserProfileByName.  Click Next.
    Click Next on the next two screens.
    On the final screen, uncheck the box for “Automatically retrieve data when form is opened”. This is because we are going to retrieve the data when the button is clicked, also for performance reasons.
    Now we need to wire up the actions on our button to populate the fields with the information for the user in the people picker control.
    Tell the form to read the user from the people picker control
    Click the Home tab on the ribbon.
    Click the button control we created, and under the Rules section of the ribbon, click Manage Rules. Notice the pane appear on the far right.
    In the Rules pane, click New –> Action. Change the name to something like “Query and load user data”.
    Leave the condition to default (none – rule runs when button is clicked).
    Click the Add button next to “Run these actions:”, and choose “Set a field’s value”.
    For Field, click the button on the right to load the select a field dialog.  Click the Show advanced view on the bottom.  At the top, click the drop down and choose the GetUserProfileByName
    (Secondary) option.  Expand myFields and queryFields to the last option and highlightAccountName.  Click ok. 
    For Value, click the formula icon. On the formula screen, click the Insert Field or Group button. Again click the show advanced view link, but this time leave the data
    connection as Main. Expand dataFields, then mySharePointListItem_RW.  At the bottom you should see a folder called group (the people picker control we just added to the form).  Expand this, then pc:Person,
    and highlightAccountId.  Click Ok twice to get back to the Rules pane.
    If we didn’t do this and just queried the user profile service, it would load the data of the currently logged in user.  So we need to tell the form what user to load the data for.  We take the AccountID field from the people
    picker control and inject into the AccountName query field of the User Profile Service data connection. 
    Load the user profile service information for the chosen user
    Click the Add button next to “Run these actions:”, and choose Query for data.
    In the popup, for Data connection, click the one we created earlier – GetUserProfileByName and clickOk.
    We’re closing in on our goal.  Let’s see our progress.  We should see something like this:
    Now that we have the user’s data read into the form, we can populate the fields in the contact form.  The number of steps to complete will depend on how many fields you want to populate.  We need to add an action step for
    each field.  I’ll show you one example and then you will just repeat the steps for the other fields.  Let’s update the Job Title field.
    Populate the contact form fields with existing user’s data
    Click the Add button next to “Run these actions:”, and choose “Set a field’s value”.
    For Field, click the button on the right to load the select a field dialog.  Highlight the field Job Title.
    For Value, click the formula icon. On the formula screen, click the Insert Field or Group button.  Click the Show advanced view on the bottom. At the top, click the
    drop down and choose theGetUserProfileByName (Secondary) option.  Expand the fields all the way down until you see the Value field.  Highlight it but don’t click ok, but click the Filter
    Data button, then Add. 
    For the first dropdown that says Value, choose Select a field or group.   The value field will be highlighted, but click the field Name field
    under PropertyData.  Click Ok. 
    In the blank field after “is equal to”, click in the box and choose Type text.  Then type the text Title. 
    Click ok until you get back to the Manage Rules pane.  The last previous screen will look like this.
    We’re going to update common fields that are in the user’s profile, and likely from Active Directory.  You can update fields like first and last name, company, mobile and work phone number, etc.  For the other fields, the
    steps are the same except the Field you choose to update from the form, and the very last step where you enter the text will change.  Here’s what the rules look like when we’re done:
    We’re all done, good work!  You can preview the form and try it now.  Click Ctrl+Shift+B to preview the form.  Once you’re satisfied, you can publish the form back to the library.  Click File –> Quick
    Publish.  Once it’s done, you will get confirmation:
    Now open your form in SharePoint.  From the contact list, click Add new item.  Type in a name, and click the button and watch the magic happen!

  • Get file list of directory files from URL ?

    Hello,
    GIven a URL directory, I would like to get a list of all the files in that URL directory:
    url = new URL("http//www.example.com");
    c = url.getContent();
    // Suppose there is a file http://www.example.com/myfile.txt
    // How do I get a list from c?
    Essentially, I want something equivalent to the File "list" method
    file = new File("H:/tmp");
    list = file.list()
    Thanks in advanced.

    Crosspost: http://forum.java.sun.com/thread.jsp?thread=518669&forum=17&message=2475782

  • Photoshop batch produce titles from XML or text list

    Hi,
    Is it possible to use photoshop to batch export a large list of titles from XML or some kind of text list?
    e.g.
    Home
    My Account
    Products
    Downloads
    Help
    etc
    For example, a website uses a lot of images as H1 titles for things  such as 'My Account' & 'Downloads' etc. I have a large text list of  these. Is there a script or plugin, that will take this list a given a  selected size & type face, produce images as cropped down GIFs.
    The  correct size is the size of the title. For example, create a new  document -> type some text -> hold down cmd and click the T on the  layer -> this will create the selection, and select crop from the  image drop down. That's the size I'm after.
    I can create  an action to do the bit above, but I'm unsure of how to feed the text in  to photoshop 1 title at a time. I've looked at the jQuery Sifr plugin,  but the idiots want to use images
    Thanks
    Any help on this would be great.
    Thanks
    Oli

    I don’t follow – what’s the input and what exactly is Photoshop supposed to put out?
    For example, a website uses a lot of images as H1 titles for things such as 'My Account' & 'Downloads' etc. I have a large text list of these. Is there a script or plugin, that will take this list a given a selected size & type face, produce images as cropped down GIFs.
    What size would be the »correct size« and how is Photoshop to deduce it?
    The correct size is the size of the title. For example, create a new document -> type some text -> hold down cmd and click the T on the layer -> this will create the selection, and select crop from the image drop down. That's the size I'm after.
    I can create an action to do the bit above, but I'm unsure of how to feed the text in to photoshop 1 title at a time. I've looked at the jQuery Sifr plugin, but the idiots want to use images
    Thanks

Maybe you are looking for