Distributed Objects over the internet

I'm hoping that someone can help me out here. I'm trying to get distributed objects to work on a game I'm developing. I can make it work if I run both the 'server' and the 'client' on the same machine, but when I try to set it up for use over a network, it crashes when trying to get the rootProxy.
Here's the code for vending the object:
id theServer;
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
MYMessageServer * server = [[MYMessageServer alloc] init];
NSSocketPort * receivePort;
NSConnection * theConnection;
receivePort = nil;
theConnection = nil;
receivePort = [[NSSocketPort alloc] initWithTCPPort:1234];
theConnection = [NSConnection connectionWithReceivePort:receivePort sendPort:nil];
[theConnection setRootObject:server];
[theConnection registerName:@"server"];
theServer = [[theConnection rootProxy] retain];
[[NSRunLoop currentRunLoop] configureAsServer];
[[NSRunLoop currentRunLoop] run];
[server release];
[pool release];
return 0;
This runs fine and seems to vend the object without a problem.
Here's the code for trying to access the vended object:
NSSocketPort * sendPort;
NSConnection * theConnection;
sendPort = nil;
theConnection = nil;
sendPort = [[NSSocketPort alloc] initRemoteWithTCPPort:8081 host:@"192.168.0.5"];
theConnection = [NSConnection connectionWithReceivePort:sendPort sendPort:nil];
server = [[theConnection rootProxy] retain];
if (nil == server) {
NSLog(@"Error: Failed to connect to server.");
} else {
[server setProtocolForProxy:@protocol(MYMessageServerProtocol)];
[server addMessageClient:self];
[server broadcastMessageString:[NSString stringWithFormat:@"Connected: %@ %d\n", [[NSProcessInfo processInfo] processName], [[NSProcessInfo processInfo] processIdentifier]]];
When I use the defaultConnection for the vending of the object and localhost for accessing it on the same machine, everything runs just fine. However, when i try to use the TCP and setup the connection through the network, it crashes on server = [[theConnection rootProxy] retain];
If anyone can make suggestions or offer examples of how to set up this, I would be extremely grateful.
Thanks.
PS 'server' variable is declared in the object.h file.
Mac Pro 4 GB Ram   Mac OS X (10.4.8)

I've only tested this method locally, haven't had time to connect to another remote network to do further testing...
*BETA SOFTWARE - Hamachi and the HamachiX GUI are BETA! Still undergoing testing, bugfixing, etc.*
Look into Hamachi/HamachiX (Hamachi is a hosted VPN app - beta, and HamachiX is a GUI for it - also beta) If this is mission critical work, you may want to wait until it is out of beta..
www.hamachi.cc
http://forums.hamachi.cc/viewforum.php?f=16&sid=8e6c84f54d65b9d8974ca8e1da860932 (Hamachi MacOS X forum)
( - As with all BETA software... YMMV, use at your own risk, you break it you bought it, no blaming Jeff for loosing your data, stop use immediately if rash, shortness of breath, or annal leakage is observed.. talk to your Dr. about other supplements and medication you may already be taking. - )
(I'd really like to see Apple license Hamachi - once it's out of beta of corse -and integrate it into the next version of ARD... seems slick.)
I have 3 Macs right now on a Hamachi network, named **, and a password **. Once all 3 Macs are connected to the Hamachi network, I enter the 2 ARD client Macs Hamachi IPs 5..*. into ARD.
So far, so good.
Leo Laporte and Steve Gibson have discussed Hamachi and it's use on the Security Now! podcast.
http://www.grc.com/securitynow.htm
ep #18 (Titled "Hamachi" Rocks!) and #19 (Titled VPNs Three: Hamachi, iPig, and OpenVPN) specifically ....
One thing not made clear at the Hamachi or HamachiX web sites is that HamachiX (GUI) also installs Hamachi (get to avoid the command line if you wish) if it isn't already installed.
Good luck.
Jeff
PowerBook G4 550 512MB ram, 40GB HD, SuperDrive, PowerMac G5 2x2.3GHz - 2.5GB   Mac OS X (10.4.2)   250GB HD, Mac mini - 1GB Ram, Apple 20" LCD connected to mini+PM G5 via DVI Swit

Similar Messages

  • Distributing Jobs over the internet

    Hello, I have no idea if this is possible to do with Qmaster.
    I am a film student in Santa Barbara, California and I would like to be able to submit my Shake, Maya and Compressor projects to my parents Macs in their house in Orange County so that I can save time when rendering my projects.
    Is this possible to do with Qmaster? Do I need some sort of Mac OS X server software running on a mac to do this? Any help if this is even possible and how i might set this up would be greatly appreciated!
    Thanks in advance.

    Yes it is possible if you have the public address of the computer they are on and the Qmaster node installed it works just fine. It will be slow to upload the batch depending on your upload speed etc.
    Good Luck

  • JMF over the Internet / NAT problems

    Hi folks,
    I wonder if someone could help me out. I'm trying to get RTP streaming to work over the internet; specifically to get a server (with a public IP) to send an RTP stream to a client behind a NAT (so with a private IP address). This is the set-up I have at the moment:
    Client expects RTP traffic from server to arrive at its local port A. The server sends out RTP traffic from its local port B (i.e. the RTPManager running on the server is initialised with port B).
    Before any RTP transmission occurs, the client sends a few UDP packets from its local port A to the server's port B and also to a different port C. The server listens to these packets on port C, and extracts the client's public IP and port (i.e. the IP address of the NAT router plus the public port on the NAT that is mapped to port A on the client).
    When the server starts the streaming shortly afterwards, it sends the RTP packets to the public IP/port it detected earlier. The idea being the NAT should forward those packets to port A on the client. But this doesn't seem to be working....
    Does anyone have any ideas what's going wrong? Has anyone else had to tackle similar issues?
    Thanks in advance for any help.

    * @(#)RTPSocketAdapter.java     1.2 01/03/13
    * Copyright (c) 1999-2001 Sun Microsystems, Inc. All Rights Reserved.
    * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
    * modify and redistribute this software in source and binary code form,
    * provided that i) this copyright notice and license appear on all copies of
    * the software; and ii) Licensee does not utilize the software in a manner
    * which is disparaging to Sun.
    * This software is provided "AS IS," without a warranty of any kind. ALL
    * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
    * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
    * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
    * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
    * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
    * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
    * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
    * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
    * POSSIBILITY OF SUCH DAMAGES.
    * This software is not designed or intended for use in on-line control of
    * aircraft, air traffic, aircraft navigation or aircraft communications; or in
    * the design, construction, operation or maintenance of any nuclear
    * facility. Licensee represents and warrants that it will not use or
    * redistribute the Software for such purposes.
    package org.zajacslv.java.Telefon;
    import java.io.IOException;
    import java.net.InetAddress;
    import java.net.DatagramSocket;
    import java.net.MulticastSocket;
    import java.net.DatagramPacket;
    import java.net.SocketException;
    import javax.media.protocol.DataSource;
    import javax.media.protocol.PushSourceStream;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.SourceTransferHandler;
    import javax.media.rtp.RTPConnector;
    import javax.media.rtp.OutputDataStream;
    * An implementation of RTPConnector based on UDP sockets.
    public class RTPSocketAdapter implements RTPConnector {
    DatagramSocket dataSock;
    DatagramSocket ctrlSock;
    InetAddress addr;
    int port;
    int portC;
    SockInputStream dataInStrm = null, ctrlInStrm = null;
    SockOutputStream dataOutStrm = null, ctrlOutStrm = null;
    public RTPSocketAdapter(InetAddress addr, int port) throws IOException {
         this(addr, port, 1);
    public RTPSocketAdapter(DatagramSocket dsRTP, DatagramSocket dsRTCP,
    InetAddress IaRTP, int portRTP, InetAddress IaRTCP, int portRTCP)
    dataSock = dsRTP;
    ctrlSock = dsRTCP;
    //IaRTP == IaRTCP;
    //portRTP+1 == portRTCP przez firewoll moze byc inaczej !!!
    addr = IaRTP;
    port = portRTP;
    portC = portRTCP;
    public RTPSocketAdapter(InetAddress addr, int port, int ttl) throws IOException {
         try {
         if (addr.isMulticastAddress()) {
              dataSock = new MulticastSocket(port);
              ctrlSock = new MulticastSocket(port+1);
              ((MulticastSocket)dataSock).joinGroup(addr);
              ((MulticastSocket)dataSock).setTimeToLive(ttl);
              ((MulticastSocket)ctrlSock).joinGroup(addr);
              ((MulticastSocket)ctrlSock).setTimeToLive(ttl);
         } else {
              dataSock = new DatagramSocket(port, InetAddress.getLocalHost());
              ctrlSock = new DatagramSocket(port+1, InetAddress.getLocalHost());
         } catch (SocketException e) {
         throw new IOException(e.getMessage());
         this.addr = addr;
         this.port = port;
    portC = port+1;
    * Returns an input stream to receive the RTP data.
    public PushSourceStream getDataInputStream() throws IOException {
         if (dataInStrm == null) {
         dataInStrm = new SockInputStream(dataSock, addr, port);
         dataInStrm.start();
         return dataInStrm;
    * Returns an output stream to send the RTP data.
    public OutputDataStream getDataOutputStream() throws IOException {
         if (dataOutStrm == null)
         dataOutStrm = new SockOutputStream(dataSock, addr, port);
         return dataOutStrm;
    * Returns an input stream to receive the RTCP data.
    public PushSourceStream getControlInputStream() throws IOException {
         if (ctrlInStrm == null) {
         ctrlInStrm = new SockInputStream(ctrlSock, addr, portC);
         ctrlInStrm.start();
         return ctrlInStrm;
    * Returns an output stream to send the RTCP data.
    public OutputDataStream getControlOutputStream() throws IOException {
         if (ctrlOutStrm == null)
         ctrlOutStrm = new SockOutputStream(ctrlSock, addr, portC);
         return ctrlOutStrm;
    * Close all the RTP, RTCP streams.
    public void close() {
         if (dataInStrm != null)
         dataInStrm.kill();
         if (ctrlInStrm != null)
         ctrlInStrm.kill();
         dataSock.close();
         ctrlSock.close();
    * Set the receive buffer size of the RTP data channel.
    * This is only a hint to the implementation. The actual implementation
    * may not be able to do anything to this.
    public void setReceiveBufferSize( int size) throws IOException {
         dataSock.setReceiveBufferSize(size);
    * Get the receive buffer size set on the RTP data channel.
    * Return -1 if the receive buffer size is not applicable for
    * the implementation.
    public int getReceiveBufferSize() {
         try {
         return dataSock.getReceiveBufferSize();
         } catch (Exception e) {
         return -1;
    * Set the send buffer size of the RTP data channel.
    * This is only a hint to the implementation. The actual implementation
    * may not be able to do anything to this.
    public void setSendBufferSize( int size) throws IOException {
         dataSock.setSendBufferSize(size);
    * Get the send buffer size set on the RTP data channel.
    * Return -1 if the send buffer size is not applicable for
    * the implementation.
    public int getSendBufferSize() {
         try {
         return dataSock.getSendBufferSize();
         } catch (Exception e) {
         return -1;
    * Return the RTCP bandwidth fraction. This value is used to
    * initialize the RTPManager. Check RTPManager for more detauls.
    * Return -1 to use the default values.
    public double getRTCPBandwidthFraction() {
         return -1;
    * Return the RTCP sender bandwidth fraction. This value is used to
    * initialize the RTPManager. Check RTPManager for more detauls.
    * Return -1 to use the default values.
    public double getRTCPSenderBandwidthFraction() {
         return -1;
    * An inner class to implement an OutputDataStream based on UDP sockets.
    class SockOutputStream implements OutputDataStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         public SockOutputStream(DatagramSocket sock, InetAddress addr, int port) {
         this.sock = sock;
         this.addr = addr;
         this.port = port;
         public int write(byte data[], int offset, int len) {
         try {
              sock.send(new DatagramPacket(data, offset, len, addr, port));
         } catch (Exception e) {
              return -1;
         return len;
    * An inner class to implement an PushSourceStream based on UDP sockets.
    class SockInputStream extends Thread implements PushSourceStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         boolean done = false;
         boolean dataRead = false;
         SourceTransferHandler sth = null;
         public SockInputStream(DatagramSocket sock, InetAddress addr, int port) {
         this.sock = sock;
         this.addr = addr;
         this.port = port;
         public int read(byte buffer[], int offset, int length) {
         DatagramPacket p = new DatagramPacket(buffer, offset, length, addr, port);
         try {
              sock.receive(p);
         } catch (IOException e) {
              return -1;
         synchronized (this) {
              dataRead = true;
              notify();
         return p.getLength();
         public synchronized void start() {
         super.start();
         if (sth != null) {
              dataRead = true;
              notify();
         public synchronized void kill() {
         done = true;
         notify();
         public int getMinimumTransferSize() {
         return 2 * 1024;     // twice the MTU size, just to be safe.
         public synchronized void setTransferHandler(SourceTransferHandler sth) {
         this.sth = sth;
         dataRead = true;
         notify();
         // Not applicable.
         public ContentDescriptor getContentDescriptor() {
         return null;
         // Not applicable.
         public long getContentLength() {
         return LENGTH_UNKNOWN;
         // Not applicable.
         public boolean endOfStream() {
         return false;
         // Not applicable.
         public Object[] getControls() {
         return new Object[0];
         // Not applicable.
         public Object getControl(String type) {
         return null;
         * Loop and notify the transfer handler of new data.
         public void run() {
         while (!done) {
              synchronized (this) {
              while (!dataRead && !done) {
                   try {
                   wait();
                   } catch (InterruptedException e) { }
              dataRead = false;
              if (sth != null && !done) {
              sth.transferData(this);
    }

  • Synchronous communication over the internet

    Hi Experts,
    I need a server-client based application model which:
    - communicates over the Internet (both server and client could be behind a firewall/router).
    - is capable of passing objects by reference (like Java's RMI-JRMP/RMI-IIOP).
    - can handle client side call-backs.
    - is part of the standard Java API.
    I thought about RMI-IIOP.
    Can RMI-IIOP handle all of the criterias in the list?
    Is there any other way to implement such an application in Java?
    Thank you very much in advance!

    ejp wrote:
    - is capable of passing objects by reference (like Java's RMI-JRMP/RMI-IIOP).That is meaningless and impossible.That is meaningful and possible and implemented since Java 1.1 for remote objects which have been exported. That is the essence of RMI and RMI/IIOP.Nope. No way to move the actual instance of an object from one application to another.
    Conceptually it is. Which is exactly what RMI does. And exactly what I meant.
    - can handle client side call-backs.That doesn't make much sense. Did you mean server side call backs? Where the server is attempting to initiate (start) a connection with a client? If so that is almost always a bad idea.A callback is a callback into the originating client. I don't know why you're making such a fuss about that. I wouldn't call it a server-side callback myself.Because there is no need to differentiate that requirement unless it means something different than a standard type of RMI call.
    Then you are going to need to write a lot of code for a real application.
    Nothing canRMI and RMI/IIOP can do all that. They can do everything the OP specified except callback through client-side callbacks, and there are commercial solutions available for that.Again - moving the instance. Not the data. Not simulating it via a behavior interface.

  • OD over the Internet

    Hi,
    Is it possible to have OD athentification over the internet? Example if users in my network leave to go home they would still be able to connect to OD without having to connect to VPN?
    Jeremie

    If your workstations are bound to the OD domain and you are establishing users as mobile accounts (through MCX or profile manager) then your have the option of defining a cached account.  In this method, the user must be on the LAN for initial account creation, then the user can use the system offline despite being an OD account.
    Now, opening OD to the world is possible.  But recall that you will need to open LDAP and Kerberos.  And then you must protect against man in the middle attacks.  I just prefer to not open up LDAP as it is world readable and if someone is doing intrusion discovery this is a great way of getting half of the keys to the kingdom.
    If you have multple locations, then use VPN appliances to link your locations.  Then use replica/relay servers to distribute your domain to the multiple locations.

  • ARD over the internet - one external IP, multiple clients

    I have a tricky question (at least it is tricky for me)...
    The objective: To connect to a single static external IP over the internet and gain access to the 4 or so ARD client computers that are on the network within.
    Currently I connect to the external IP and have configured my router to forward the relevant ports to a single client computer (one internal IP using the relevant port 5900 forwarding as suggesting in the user manual).
    My question is, what do I have to do to be able to have access to (and control) more than one of the ARD clients on the network within??
    Any help here would be much appreciated!
    My thanks in advance.

    Setup a VPN or install ARD admin on the one client you have access to and control the other clients from there.
    can you explain to me how to set up ARD admin, and access?
    I'm trying to use NAT portmapping and some how it's not working.
    Thanks,

  • Oracle over the Internet

    We want to publish Oracle reports on a web site. Oracle database server (8.1.5) is behind the firewall. All necessary ports have been opened in the firewall. 8.1.5 network client files have been installed on the Web server. When trying to connect to a net_service_name, the Oracle server listner.log file reports a successful connection:
    30-MAY-00 16:49:53 * (CONNECT_DATA=(SERVICE_NAME=EDL)(CID=(PROGRAM=C:\Program Files\Oracle\jre\1.1.7\bin\jrew.exe)(HOST=NYM)(USER=pxxx))) * (ADDRESS=(PROTOCOL=tcp)(HOST=20x.20x.xxx.xxx)(PORT=33207)) * establish * EDL * 0
    However, I receive an error at the client end. Here's the entry in sqlnet.log:
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=dataglow)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=EDL)(CID=(PROGRAM=C:\Program Files\Oracle\jre\1.1.7\bin\jrew.exe)(HOST=NYM)(USER=pxxx))(SERVER=dedicated)))
    VERSION INFORMATION:
    TNS for 32-bit Windows: Version 8.1.5.0.0 - Production
    Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 8.1.5.0.0 - Production
    Time: 31-MAY-00 11:07:43
    Tracing to file: D:\orant\network\tools\sqlnet.trc
    Tns error struct:
    nr err code: 0
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 538
    TNS-00538: Message 538 not found; product=NETWORK; facility=TNS
    nt secondary err code: 65
    nt OS err code: 0
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleORCL)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))')))(CONNECT_DATA=(SID=ORCL)(CID=(PROGRA M=C:\Program Files\Oracle\jre\1.1.7\bin\jrew.exe)(HOST=NYM)(USER=pxxx))(SERVER=dedicated)))
    VERSION INFORMATION:
    TNS for 32-bit Windows: Version 8.1.5.0.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 8.1.5.0.0 - Production
    Time: 31-MAY-00 11:07:43
    Tracing to file: D:\orant\network\tools\sqlnet.trc
    Tns error struct:
    nr err code: 0
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 530
    TNS-00530: Protocol adapter error
    nt secondary err code: 0
    nt OS err code: 0
    Is this a firewall issue? Does anyone have any tips for getting web publishing to work? I've noticed in other postings that Java thin client doesn't work through a firewall. Does jrew.exe referenced in log files imply that we're using Java thin client?
    Thank you.

    You can do this. If I were setting something like this up, I would want Connection Manager installed at the database site to get the connection through the firewall. I would probably want Oracle Advanced Security configured as well to ensure that the data flying over the internet was encrypted.
    Beyond that, I would do a serious security audit of the database. Make sure it's running the latest patchset, that the principle of least privilege has been followed exactly, that data modifications are done through stored procedures and packages, etc.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How do I backup my time capsule to another time capsule over the internet

    I have a Time Capsule that I use for backups locally within my own home. My parents have one as well that they use for their backups. Ideally it would be great to have my backups offsite -- if your house burns down it doesn't help that your backups were in the house...
    So is there a way to copy (automatically) the image from one TC to another and vice versa over the internet?

    No, there isn't, and even if there was, it would take forever, or possibly longer. 
    Any backup done over the internet will be quite slow; upload speeds are generally much, much slower than download speeds.  Some of the companies that do internet backups, such as Mozy, Carbonite, etc., actually ship you an external HD for the first backup.  You ship that back, they load it onto their servers, then do "incremental" backups of what's changed over the net.
    In addition, it's not a good idea to back up a backup; any problem with the original will be copied to, and perhaps magnified, on the copy. 
    A much better approach is to get a portable external HD; do backups to it, then take it to a secure off-site location.  See #27 in Time Machine - Frequently Asked Questions for some suggestions, especially the pink box there.
    It still might be a good idea to have some limited data backed-up over the internet, such as relatively-small things and/or things that rarely change.

  • How do I access my time capsule over the internet

    How do I access my time capsule over the internet. I've already set it up to share over WAN, but I have ATT so my TC is connected to the router provided by ATT can I still access my TC via the internet even though its not directly connected to the Ethernet?

    The TC should be in bridge mode.. not setup to share over wan.. that will never work. That is assuming you haven't bridged the ATT router.
    Once you bridge the TC see if you can setup BTMM using icloud settings in the TC. As per the Apple docos.. here.
    You should also be able to directly access the TC since you have a router with dyndns client at a guess.. the setup is simply forward port 548 to the TC.
    Google search this.. there is huge number of resources available. eg
    http://useranswer.com/answer/how-can-i-access-my-time-capsule-remotely-with-iclo ud/

  • Can not view video over the Internet on WVC80N

    I set up the web cam, set up the port forward etc so now I am able to:
       1. view/change web cam settings inside my home network.
       2. view video inside my home network.
       3. view/change web cam settings over the Internet.
    But I am not able to view video over Internet. Every time I did so (using IE browser), after clicking the view video button, I got an error : There are too many user connections or the device is busy, please try again latter.
    Anyone has a fix on this? I set up port forwarding on port 1024 (that's how I can chage settings over Internet).
    I spent 2 hours on the phone with Linksys tech support but they could not find the reason.
    Thanks,
    Sam

    Who is your ISP? How you are trying to access your Camera from the remote location? Along with Port 1024 you need to do port forwarding for port 80 on your router for the Cameras IP address. As WVC80N works on your HTTP Port.
    To access your camera from the Remote location, you need to use http://wan ip:80.

  • Unable to see Dashboard over the internet (Portal)

    Dear All,
    I have one issue here which is bit technical,
    I have made an Xcelsius Dashboard (Connection Type: Excel XML Maps (BW Queries)) and uploaded SWF file on to KM Repository in Portal. I have created Document iview and a role to published the dashboard on Enterprise Portal.
    Now when i am trying to access that Dashboard from Portal within local network it works fine but when i try opening the same Dashboard over the internet from home it gives an error.
    ERROR DETAILS:
    To access external data, add a cross-domain policy file to the external data web server.
    For more information, on the Adobe website, see the article u201CCross-domain Policy File Specificationu201D.
    If the problem persists, contact the file creator or your system administrator.
    Error: Error #2048
    Connection Type: Excel XML Maps
    File URL: https://www.portal.com/irj/go/km/docs/documents/dashboards/dashboard1.swf
    External Data URL: http://bwserver.domain.com:8000/sap/bc/bsp/sap/zbo_data/Data.xml?infocube=ZFIGL_FM&query=ZFIGL_FM_Q0003_BO&VAR_NAME_1=0P_FYRA&VAR_VALUE_EXT_1=2009
    I have added crossdomain into WebAppl Srvr of BW Server .. Created BSP Application ---> Imported crossdomain file ---> set BSP App in Default Service.
    Please suggest me possible Solutions.

    Closing Thread

  • Unable to see Dashboard over the internet Using Enterprise Portal

    Dear All,
    I have one issue here which is bit technical,
    I have made an Xcelsius Dashboard (Connection Type: Excel XML Maps (BW Queries)) and uploaded SWF file on to KM Repository in Portal. I have created Document iview and a role to published the dashboard on Enterprise Portal.
    Now when i am trying to access that Dashboard from Portal within local network it works fine but when i try opening the same Dashboard over the internet from home it gives an error.
    ERROR DETAILS:
    To access external data, add a cross-domain policy file to the external data web server.
    For more information, on the Adobe website, see the article u201CCross-domain Policy File Specificationu201D.
    If the problem persists, contact the file creator or your system administrator.
    Error: Error #2048
    Connection Type: Excel XML Maps
    File URL: https://www.portal.com/irj/go/km/docs/documents/dashboards/dashboard1.swf
    External Data URL: http://bwserver.domain.com:8000/sap/bc/bsp/sap/zbo_data/Data.xml?infocube=ZFIGL_FM&query=ZFIGL_FM_Q0003_BO&VAR_NAME_1=0P_FYRA&VAR_VALUE_EXT_1=2009
    I have added crossdomain into WebAppl Srvr of BW Server .. Created BSP Application ---> Imported crossdomain file ---> set BSP App in Default Service.
    Please provide possible solutions

    We have the same problem.
    The Solution 1.
    http://wiki.sdn.sap.com/wiki/display/EmTech/Addcrossdomain.xmlontherootofSAPWebapplication+server
    and 2.
    http://www.asabau.com/2009/04/crossdomain-policy-file-in-sap-web-application-server/
    does not work.
    How you have fix it?
    regards
    Chris

  • How to share videos with family over the internet

    I have a ton of home videos that I have edited with Final Cut and I would like to find a way to share those with family and friends across the country. Is there any way to do this in the Apple ecosystem. If not, what do most recommend as the best way to do this? Thanks

    Thanks for the reply... I'm actually looking for something that would allow me to have all the content available in a library so friends and family can see all the content and then choose what to watch. Ideally, it would be like iTunes or iPhoto only that it could be accessed by multiple people from all over the internet. I think Apple is missing a huge niche in this area.

  • How do I use airport utillity with Time Capsule(or any airport extreme) over the internet without mobile me? iCloud has disabled this function?

    How do I connect to my Airports/time capsules over the internet using the mobileme function under icloud?

    i want to do the same. i tried entering my @me.com account and does not work, but if I tried to go to icloud.com and using my @me.com works
    why?
    does the Airport express needs to be upgraded as well

  • Access Time Capsule over the internet

    Hey guys! I have a problem. I cannot access my Time Capsule over the internet.
    I have a Time Capsule 2013 which connects to the internet using a PPPoE connection and which provides wireless connection to other peripherals in my house.
    The TC is running the latest firmware and I've added my iCloud account in AirPort Utility settings, in order to access the TC over the internet, via Back to My Mac.
    Whenever I'm away from home, I cannot access the TC.
    I see it in Finder's sidebar, but whenever I press the "Connect As.." button I get the following error:
    "There was a problem connecting to the server “Time Capsule”.
    The server may not exist or it is unavailable at this time. Check the server name or IP address, check your network connection, and then try again."
    I must add that I have a dynamic IP. Whenever the Time Capsule restarts, it gets a different IP.
    Am I missing something?
    Please help me. It's really important for me to be able to reach it when I'm away from home.

    So the modem is bridged and the TC is doing the PPPoE authentication.. and it gets a public IP on the WAN interface.
    The dynamic nature of the IP is not a problem with the BTMM and iCloud type system which should keep the intermediate connection in the cloud up to date.
    What about the connection at the other side.. are you getting a public IP.. are you behind a firewall or restricted access? Remember both sides of this have to work.
    See this thread.. you are not alone.. all is not sweetness and light unless you get a proper business account with static IP.
    https://discussions.apple.com/thread/3699096?start=0&tstart=0
    Apple info has a bit about issues that people experience.. and Tesserax has some setup info.
    Remote Access
    I would use the public IP and see if it works.. that means you need to check the IP before you leave home or use your phone tether and do the test at home so you can type in the public ip and use direct access .. at least to test it.

Maybe you are looking for

  • Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10?

    Is it possible in iTunes 11 to get the old album list view, with covers and track listings like in 10? If not, then to me that is a huge retrograde step

  • The Install problem 10.1.0.3 on linux itanium

    hi. I met the installation problem 10.1.0.3 on linux itanium due to ntcontab.o. When I stoped and restarted the installation (too many times!), it break in the same point... (99%) The log file produced: /usr/bin/make -f ins_net_client.mk ntcontab.o O

  • Delete requests in PSA found error DDL time

    Hello Experts, I got the following situation and I'd like some suggestions from anyone who used to got the similar problems: - SAP BI-QA were refreshed from SAP BI-Production - delete old requests in PSA - found the following errors: (1) DDL time(___

  • Webcenter Spaces PS2 link service question

    Hi, Is it possible to use the webcenter links service to link a document to another document residing in a different group space in PS2? For example, group space 'A'is a Knowledge Center (KB) and contains lots of docs. Group Space 'B' is a project gr

  • How to make a Storybook Template on Author

    I have noticed in the ibookstore that there are several books like The Ugly Duckling that have templates resembling storybooks, where you can swipe the page vertically and a page flipping animation will flip you to the next page as if it were an actu