Connectivity through Xml

hey can anybody tell me the difference in compiling from a
flex builder and through command line compiler....
i have a mxml app which is connected to the Xml file.. and it
displays the result on the datagrid...When i compile this code and
run the application it doesnt show me the results .....as in no
output on the datagrid...but this same code when i run in flex
builder by making a new project->mxml application and so on it
shows me the results on the data grid....what exactly is happening
when i compile through the command line compiler....plzz help
mxml file
<?xml version = "1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute" creationComplete="httpserv.send()">
<mx:Script>
import mx.collections.ArrayCollection;
[Bindable]
public var FriendsArray:ArrayCollection;
</mx:Script>
<mx:HTTPService id="httpserv" url="friends.xml"
result="FriendsArray = new
ArrayCollection(httpserv.lastResult.friends)"/>
<mx
ataGrid id="MyGrid" width="60%" height="50%"
dataProvider="{FriendsArray}">
<mx:columns>
<mx
ataGridColumn dataField = "name"
headerText="Name"/>
<mx
ataGridColumn dataField = "nick"
headerText="NickName"/>
<mx
ataGridColumn dataField = "mobno" headerText="Mobile
Number"/>
</mx:columns>
</mx
ataGrid>
</mx:Application>
xml file named friends.xml
<?xml version="1.0" encoding="utf-8"?>
<friends>
<name>Christina Coenraets</name>
<nick>chris</nick>
<mobno>123456789</mobno>
</friends>
<friends>
<name>Louis Freligh</name>
<nick>louie</nick>
<mobno>555-219-2100</mobno>
</friends>
<friends>
<name>Ronnie Hodgman</name>
<nick>ron</nick>
<mobno>555-219-2030</mobno>
</friends>

The Flash Player is prohibited from accessing data from a
domain that is different from the domain from which the swf was
served. And localhost is not the same as localhost:8700.
Tracy

Similar Messages

  • Implement HSBC connect through XML MESSAGE

    Hi all,
    We are planning to implement HSBC connect through “HSBC ISO 20022 XML MESSAGE” to send payment file from SAP to HSBC connect for Asia and Middle East region. Can someone please guide me to develop payment file generation program in HSBC ISO 20022 XML MESSAGE format. If any example code is of great help. Sharing your experiences is a great help to me in this regard ..
    Thanks in advance.

    Hi Eman,
    Please go through the design we made for a bank interface.
    - We had generated IDOC XML file, configured partner profiles for the same.
    - These IDOC files were sent to the XI systems where where ISO XML files were generated.
    - These ISO XML's were in sync with the banks ISO XML.
    - They are received from the Banks side and the data is further processed by the banks SAP system.
    I Hope this information will be helpful.
    PS : The bank configurations can be country specific.
    Regards,
    Himanshu.

  • Xcelsius connectivity through XML data button

    While using XML data button, In URL Box we need an script.that will return the correctly formatted XML data source How can we do the coding of that script  and How to do its Local Hosting?
    Is there any other method or application that can be provided in the URL box so that it also returns the correctly formatted XML data source? are there some demos of it?//

    Yes, Data connection works. I can connect to Xcel, Access, xml data.
    In fact What I am trying is to do is thi:
    1 - From a user interface with some select dn list box
    2 - Use adodb connection to pull data from an access database with the selected info in the UI
    3 - format selected data as xml and load xml data into xcelsius- Run Time.
    That is quite simple with xml button but otherwise it seems difficult. I have tried different things but how to trigger the script is the problem
    Any idea?
    Thank U in advance

  • How to read the pdf through XML in background

    Dear Experts,
    I need to pass the value of PDF forms  stored in directory  into R/3 through XML..In foreground it is working perfectly but in background i am facing problem in ADS connection.
    Regards,
    Amitav

    Hi,
    Can You give the code for debugging.
    Thanks,
    Shiva
    Edited by: Shiva GuruNathan on Sep 21, 2009 9:01 AM

  • BPC server connectivity through Public IP

    Hi,
    We want to connect remotely to BPC server over internet. Though server has been put over public IP(through some internal server), while connecting it throws an error message. We are connecting through default port as well as secure port. Is there any port needed to be opened on this server so that we can access BPC application remotely. Port number currently opened is 3200.
    If anyone has done this remote connectivity with BPC earlier please share your experience?
    Thanks,
    Raman

    Thanks Ethan, we are able to connect remotely on port number 80, however we need to change this port number to some other port number due to potential security threat. To accomplish this I changed port number in the IIS to 90 as well as the Web and ServerManager configuration files.
    I followed the folowing instructions as per install guide:
    To change the port number for the Web configuration file, open the Web.config file: <Server
    install folder>\Websrvr\web\Web.config, and change the value of the port number
    in the AppServer_URL key.
    To change the port number for the Server Manager configuration file, open the <Server
    install folder>\Server Managment\OsoftInstall.xml file, and change the value of the
    port number in the <port><PORT></port> key.
    I did exactly as per the instructions above but not able to connect to BPC even in the local network. I am not sure what is going wrong. Addtionally when I launch BPC serverManager now I get the error tHAT USER DOESN'T HAVE sYSaDMIN PREVILEGE.
    Appreciate your help on this issue.
    Thanks,
    Raman

  • Problem with socket connection through Java Embedding...

    We are trying to create a simple socket connection to a socket server through BPEL PM using the Java Embedding component.
    BPEL Process : Client makes an asynchronous request. Passes an input variable. The input variable is sent to the Server Program through a socket connection through the Java embedding component.
    Server: We are running a simple Socket Server program from command prompt.
    The code below works fine as long as we do not try to receive a response from the server (Commented Code).
    If we uncomment the code and try to receive a response, it refuses to create an instance for the BPEL Process. And sometimes restarts the BPEL Server.
    Client Code:
    String msg="NONE";
    try{
    org.w3c.dom.Element input = (org.w3c.dom.Element) getVariableData("inputVariable","payload","/client:clientProcessRequest/client:input");
    msg = input.getNodeValue();
    Socket clientsoc=new Socket("ServerIP",1000);
    PrintWriter out1=new PrintWriter(clientsoc.getOutputStream());
    out1.write(msg);
    out1.flush();
    BufferedReader cin1=new BufferedReader(new InputStreamReader(clientsoc.getInputStream()));
    msg=cin1.readLine();
    setVariableData("outputVariable","payload","/client:result",new String(msg));
    clientsoc.close();
    catch(UnknownHostException e)
    System.err.println("Don't know about host: dev.");
    System.exit(1);
    catch (IOException e)
    System.err.println("Couldn't get I/O for "+ "the connection to: dev.");
    System.exit(1);
    }

    Repost

  • HT1430 I CANT GET my IPad to connect to my WiFi and now I can't get it to go back so I can connect through iTunes- any ideas??

    cannot get iPad to connect to WiFi because I can't find the password-and now i can't get the iPad to reset to be able to connect through iTunes--help

    cannot get iPad to connect to WiFi because I can't find the password-and now i can't get the iPad to reset to be able to connect through iTunes--help

  • Help I purchase an Ipad yesterday I amusing internet connection through a netgear wired to my home computor since yesterday I am unable to open my emails or access my bank account ps I am not technical I am with orange broad band and have followed their i

    Help I purchased an ipad yesterday I am using internet connection through a wired up netgear router through my pc.Since then I cannot open my hotmail emails or access my online banking on wired pc and the navigator on ipad not working.
    I would appreciate help I followed all directions that Orange provided with netgear router

    Something here may help
    http://www.apple.com/uk/support/ipad/contact/
    pick a subject from left hand panel
    and this
    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf

  • HT2250 I have been able to get my MacBook Pro to print wirelessly through my Airport device. How do I make it so other computers (non-Mac) can also print wirelessly as well? They are able to connect through my wireless network but can't print.

    I have been able to get my MacBook Pro to print wirelessly through my Airport device. How do I make it so other computers (non-Mac) can also print wirelessly as well? They are able to connect through my wireless network but can't print.

    Well, you could install the drivers to the wireless printer in you other computers.
    blue apple > System Preferences... > sharing
    check printer sharing.

  • How can i airplay from my mac connected through ethernet to an aple tv 2 on wifi

    Hi everyone..
    im having troubles using Airplay on my mac.. i connect my mac to the internet and home network using an ethernet connection to my router (non apple branded router) .. my apple tv 2  is connected to my home wifi network from the same router.. when i first set up my apple tv.. i was able to see the Airplay icon on itunes and it would let me Airplay media from my mac to my apple tv.. however.. it disconnects after a little while.. same thing with viewing my itunes library from apple tv.. i was able to detect my shared library from the apple tv.. i was able to play some media but then it disconnected after some time.. but now.. the Airplay icon doesnt show up in itunes anymore.. and i cant see my shared library from my apple tv neither.. ive looked around for a solution and followed the tip to turn the ipv6 off.. it worked for some time but now the problem is back..
    i know the obvious solution is to connect my mac to the same wireless network as my apple tv.. but i would like to keep it connected through ethernet..
    Mac OS X Lion 10.7.4
    Apple TV 2 software version 4.4.4
    Thanks in advance

    thisguy. wrote:
    ......i know the obvious solution is to connect my mac to the same wireless network as my apple tv.. but i would like to keep it connected through ethernet.........
    I wouldn't say that was the obvious answer at all, my Mac is connected by ethernet and 6 of my 7 Apple TV's are connected by wifi, I haven't had any of your problems. The problem is most likely on your network.
    Intermittent problems
    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.
    Consistent Problems
    A frequent cause of consistent failure to enable AirPlay or HomeSharing at all, is the service being blocked on the network. Make sure your network isn't hidden, has a unique name, that MAC address authentication is disabled, security is set to use WPA 2 Personal and that there is only one router/device acting as a DHCP server and providing NAT services.
    Make sure your router/computer allows access over the following ports
    Port
    Type
    Protocol
    Used By
    80
    TCP
    HTTP
    AirPlay
    443
    TCP
    HTTPS
    AirPlay
    554
    TCP/UDP
    RTSP
    AirPlay
    3689
    TCP
    DAAP
    iTunes/AirPlay
    5297
    TCP
    Bonjour
    5289
    TCP/UDP
    Bonjour
    5353
    TCP/UDP
    MDNS
    Bonjour/AirPlay
    49159
    UDP
    MDNS (Win)
    Bonjour/AirPlay
    49163
    UDP
    MDNS (Win)
    Bonjour/AirPlay
    Refer to your router manual/manufacturer for any settings that are specific to that model.
    Another frequent cause of consistent failure to enable AirPlay or HomeSharing at all, is security software, in many cases configuring it correctly, disabling it or even uninstalling it can help, but in some cases the security software can cause problems that simply reconfiguring, disabling or uninstalling cannot reverse.
    If you are consistently unable to activate AirPlay, have tried all the steps in this article and have security software installed on your system, you might benefit from contacting its provider or participating in any online forums they run to discuss the matter with them.

  • My IPOD and Macbook Pro both will not connect to the Itunes store through Itunes says no internet connection, but I can connect through safari and I have a internet connection

    My IPOD and Macbook Pro both will not connect to the Itunes store through Itunes says no internet connection, but I can connect through safari and I have a internet connection

    As I mentioned above, I am not very tech savvy so I have no idea why a wireless protocol would be showing up there, I'm just listing everything I see in hopes that someone might know something I can try. This is why I am asking for help here - I'm not sure what has happened that has made me unable to connect, especially since it seemingly occured while nobody was using the computer.
    I guess I should clarify that I'm not a total hillbilly- normally my firewall is set to 'on', but I set it to 'off' to try and troubleshoot the issues here as I was told that sometimes it can interfere with the computer's ability to connect to the internet. If this is not the case and firewall does not affect anything, I will turn it back on while I try to fix this.
    I have tried the method you mentioned above a few times - I actually contacted my ISP earlier this week and they recommended resetting the router like that. They didn't mention any known network issues.

  • I can print from my macbook pro using airport express usb connected printer, however my iPad is looking for an airprint printer.  Can I direct the iPad to the usb connected printer.  Both macbook and iPad confirm a wifi connection through the airport exp.

    I can print from my macbook pro using airport express usb connected printer, however my iPad and iphone are looking for an airprint printer.  Can I direct the iPad/iphone to the usb connected printer.  Macbook iphone and iPad confirm a wifi connection through the airport express.

    You will need to install an App like Print Central on the iPad to try to print to the printer. It will allow you to print to most printers. Check with their support folks if you need more info.
    PrintCentral for iPad on the iTunes App Store

  • How can I know which clients are connected to my network through express and which are connected through extreme?

    I have an airport express extending, through wireless, a network provided by an airport extreme. How can I know which clients are connected to my network through express and which are connected through extreme?
    Here you can see both routers:
    I would expect to some clients connected to the express, other than the extreme. And that's all I see: only the airport extreme appears as client of the airport express.
    Below, one can see the summary of the config for both routers.
    Would somebody explain it?
    Thanks,
    Marcelo
    Message was edited by: Marcelão

    please disregard this answer.
    Message was edited by: Marcelão

  • Getting Creative Zen player to connect through amarok [SOLVED]

    Edited 12-27 to include new info
    I'm trying to get myCreative Zen player to connect through amarok but am having some problems. After some looking around I figured out the libmtp in the extra repository doesn't support this player, but the newest versions do. I made a new package for libmtp-0.2.4 and installed it since there's been some tweaks that affect this player since 0.2.2 which is in testing. I also had to recompile amarok since one of libs changed a name with the new libmtp. The instructions from libmtp mentioned udev rules needed to be defined, which was done by copying a file from the source code into /etc/udev/rules.d. That file (minus the parts relating to other players, which is pretty much the same as here):
    # UDEV-style hotplug map for libmtp
    # Put this file in /etc/udev/rules.d
    ACTION!="add", GOTO="libmtp_rules_end"
    ATTR{dev}!="?*", GOTO="libmtp_rules_end"
    SUBSYSTEM=="usb", GOTO="libmtp_usb_rules"
    # The following thing will be deprecated when older kernels are phased out.
    SUBSYSTEM=="usb_device", GOTO="libmtp_usb_device_rules"
    GOTO="libmtp_rules_end"
    LABEL="libmtp_usb_rules"
    # Creative ZEN 8GB
    ATTR{idVendor}=="041e", ATTR{idProduct}=="4157", SYMLINK+="libmtp-%k", MODE="666"
    GOTO="libmtp_rules_end"
    LABEL="libmtp_usb_device_rules"
    # Creative ZEN 8GB
    ATTRS{idVendor}=="041e", ATTRS{idProduct}=="4157", SYMLINK+="libmtp-%k", MODE="666"
    GOTO="libmtp_rules_end"
    LABEL="libmtp_rules_end"
    When I plug the player to my usb port dmesg gives
    usb 5-1: new high speed USB device using ehci_hcd and address 8
    usb 5-1: configuration #1 chosen from 1 choice
    As my normal user amarok doesn't seem to recognize anything, and mtp-detect gives:
    libmtp version: 0.2.4
    Attempting to connect device(s)
    usb_claim_interface(): Operation not permitted
    LIBMTP PANIC: Unable to initialize device 1
    LIBMTP PANIC: configure_usb_devices() error code: 7 on line 1561
    Detect: There has been an error connecting. Exiting
    As root mtp-detect gives me a bunch of output that seems like it's doing what it should, also while it's spitting this out the screen on the player changes to say it's docked, which wasn't happening as the normal user. This makes me think it's some permissions issue. I did find things from google telling me that sometimes the user needs to be added to a certain group to use libmtp, though it seemed somewhat distro dependent. My main user is in the following groups: dbus hal network audio optical storage scanner camera users thinkpad
    However I don't think my problems are solely permission related, since even as root amarok won't recognize the player. I can use gnomad2 as root, which mostly works, though it crashes when I try and close gnomad after adding music and the player thinks it's still docked even after unplugging it. I had to use a pin to reset it just to turn it off. When I ran it from a console I got the following output at the end after the crash
    PTP: Closing session
    ERROR: Could not close session!
    inep: usb_get_endpoint_status(): Protocol error
    outep: usb_get_endpoint_status(): No such device
    usb_clear_halt() on IN endpoint: No such device
    usb_clear_halt() on OUT endpoint: No such device
    usb_clear_halt() on INTERRUPT endpoint: No such device
    The application 'gnomad2' lost its connection to the display :0.0;
    most likely the X server was shut down or you killed/destroyed
    the application.
    Any suggestions for where to go from here?
    Last edited by mcmillan (2008-01-11 05:38:14)

    I tried uploading onto my school website, but it doesn't seem accessable from there. However I just modified the version number from the regular Pkgbuild file from abs. What I have is:
    # $Id: PKGBUILD,v 1.8 2007/05/20 19:11:05 travis Exp $
    # Maintainer: damir <[email protected]>
    #Contributor: Kevin Edmonds <[email protected]>
    pkgname=libmtp
    pkgver=0.2.4
    pkgrel=1
    pkgdesc="library implementation of the Media Transfer Protocol"
    arch=("i686" "x86_64")
    url="http://libmtp.sourceforge.net"
    license=("LGPL")
    depends=("libusb")
    source=(http://easynews.dl.sourceforge.net/sourceforge/libmtp/$pkgname-$pkgver.tar.gz)
    options=('!libtool')
    #md5sums=('597b62d994d9491531b9e67190f6cfe7')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=$startdir/pkg install
    If you still have trouble building it let me know some other way than that I can send you the package.
    I've been meaning to post an update about my issues. I've figured out that when I connect the player it creates device nodes with the root group.  Some have permissions set to 666, which seems to fit with the udev rules I posted. But some of them are only rw for owner and group, others only have read permissions. As a test I tried changing the permissions by hand to 666, and I can use gnomad as my regular user, though it's buggy and seems to crash randomly (not just when I transfer files like I originally thought). I haven't been able to test what amarok does, since for some reason it stopped working this weekend and I haven't had a chance to figure out what happened. It seems there some problem with the udev rules, but I don't know much about how that works to figure out what's going wrong.

  • When i try to connect my iPhone 4S into iTunes through wifi or USB it will not connect the other thing  is when i hook up my iPad into iTunes it will connect through wifi but not USB? Now is this a issue with my iPad and iPhone or is this iTunes?

    When i bought my iPhone and my iPad they both were on iOS 7.0.2 i updated them shortly after thinking the new iOS 7.0.4 was better. i see its not but they both worked great with iTunes before and after the update. My question is why is my iPhone not connecting to iTunes? it will not connect through USB or wifi and i know that the setting to do that is turned on. my iPad connects through iTunes through wifi but not USB. This isnt making any sense but i wanna know is this a iTunes issue? or is it my phone and iPad??

    This can sometimes be the result of a faulty/damaaged USB sync cable.  Do you have another cable you could test it out with?
    B-rock

Maybe you are looking for

  • Error while creating Oracle DB connection in Endeca Intergrator 3.1

    Hi All, I am facing an issue while creating a new Oracle DB connection using Inegtator in 3.1 version. I get the following exception: loader constraint violation in interface itable initialization: when resolving method "oracle.jdbc.OracleConnectionW

  • Proxy Activation - ECC 6.0 to SAP PI system

    Hi All, Our envirnonment - 1) SAP ECC 6.0 ( R/3 system) 2) SAP PI ( R/3 system) To  establish communicate between SAP ECC 6.0 to SAP PI ( R/3 system using proxies )- we have setup following steps on ECC 6.0 system- 1) Created a HTTP connection in the

  • Table style doesn't display when viewed or when project is published

    I'm running RH8 (with RH8 Server).  The table style no longer displays when viewed or when published.  I checked the table style of the same project (but older version) and the styles to me looked the same.  It displayed fine last week (famous last w

  • SMS Related Issues of E series Devices

    Hi Nokian  Want to ask you some question   I am using Nokia E63 1) How to copy sms from memory card to phone memory Note i have already transferred messages from phone memory to Memory Card but now want to again change the memory to phone memory but

  • W520 BIOS image ISO not working

    I have a Thinkpad W50, and I'm trying to update the BIOS.  I've downloaded the update ISO from the service site, and it has filename 8buj19uc.iso.  However, when I burn the image, there is nothing on the disc.  I've used both Brasero on RHEL, and the