Use Graphics on Local Machine in Safari

I'm pretty new in using Mac / Safari, so i searched the discussions here but couldn't find what i was looking for.
I'm trying to use graphic files that are stored on my local machine/ local hard drive to be displayed on an online game website. Purpose: to reduce traffic, to speed up the data transfer and to use custom made graphics.
Is there a chance that Safari supports my "desire"? What would the path look like? Using windows i simply put the drive letter and the path in to direct IE towards the locally stored graphics.
Any help would be greatly appreciated!
Thanks in advance.

Yes, that's correct. I want to display a website, some web content but replace some of the graphics i would have to load from the server every time with files i have on my hard drive.
the website (online browser game) supports this feature but i don't know how to tell safari (or maybe firefox) on my mac where to look for the files.
as described above usually i would type something like d:/documents/graphics/ and the browser would know that it is supposed to load the files from the disk, not from the server.
i guess what i also have to verify is that the game supports the safari browser.
thanks for your help!

Similar Messages

  • Use WZZIP in local machine urgent

    Hi
    We use forms 9.0.4, we try use WZZIP in local machine for send email with this zip file, we try use the webutil function, CLIENT_HOST, we put
    CLIENT_HOST('cmd /c cd C:\Archivos de programa\WinZip\WzZIP.EXE c:\TEMPORAL\MAC.ZIP c:\temp\texto1.txt');
    I don't know is possible to use setence or other similar.
    Thank

    Sorry, i write bad, the correct is
    We use forms 9.0.4, we try use WZZIP in local machine for send email with this zip file, we try use the webutil function, CLIENT_HOST, we put
    CLIENT_HOST('cmd /c C:\Archivos de programa\WinZip\WzZIP.EXE c:\TEMPORAL\MAC.ZIP c:\temp\texto1.txt');
    I don't know is possible to use setence or other similar.
    Thank

  • I am using UPK developer 12.1.0 single user. My sofware has crashed and needs reinstallation. Please suggest how can I take back up of my source files. I am unable to open the application and i can not locate the library backup folder on my local machine.

    I am using UPK developer 12.1.0 single user. My sofware has crashed and needs reinstallation. Please suggest how can I take back up of my source files. I am unable to open the application and i can not locate the library backup folder on my local machine.
    Also, does reinstallation takes the back up automatically or the files will be lost. Please help.

    Here are a bunch of scripts to get folder size under all circumstances.  Take your pick.
    https://gallery.technet.microsoft.com/scriptcenter/site/search?query=get%20folder%20size&f%5B0%5D.Value=get%20folder%20size&f%5B0%5D.Type=SearchText&ac=2
    ¯\_(ツ)_/¯

  • Download file to local machine using WPG_DOCLOAD.download

    Hi ,
    i am using database 11g and i am trying to write to file on database server using utl_file and download to the local machine by pl/sql procedure . i am directly executing this procedure in pl/sql . i am getting ORA-06502: PL/SQL: numeric or value error when executing owa_util.mime_header ('application/vnd.ms-excel',TRUE); statement in the procedure . not sure what is happening and i am new in using these features
    here is my code
    CREATE OR REPLACE PROCEDURE UTL_TEST_DOWNLOAD
    AS
    output_file utl_file.file_type;
    vexists BOOLEAN;
    vfile_length NUMBER;
    vblocksize NUMBER;
    l_blob BLOB;
    l_bfile BFILE;
    BEGIN
    output_file:=UTL_FILE.FOPEN('DATA_DIR', 'timesheet.csv', 'w');
    UTL_FILE.PUT_LINE(output_file,'COST_CENTRE'||
    'HISTORY_DATE'||
    'REF_NO'||
    'FIELD_NAME'||
    'VALUE'||
    'DATA_TYPE'||
    'CHANGE_DATE'||
    'INT_REF');
    UTL_FILE.fclose(output_file);
    UTL_FILE.FGETATTR('DATA_DIR','timesheet.csv',vexists,vfile_length,vblocksize);
    IF vexists THEN
    DBMS_LOB.createtemporary (l_blob, TRUE, DBMS_LOB.SESSION);
    l_bfile := BFILENAME ('DATA_DIR', 'timesheet.csv');
    DBMS_LOB.fileopen (l_bfile,dbms_lob.file_readonly);
    DBMS_LOB.loadfromfile (l_blob, l_bfile, DBMS_LOB.getlength (l_bfile));
    DBMS_LOB.fileclose (l_bfile);
    owa_util.mime_header ('application/vnd.ms-excel',TRUE);
    dbms_output.put_line('after owa_util' );
    owa_util.http_header_close;
    WPG_DOCLOAD.download_file (l_blob);
    end if;
    EXCEPTION
    WHEN utl_file.invalid_path THEN
    RAISE_APPLICATION_ERROR(-20001, 'utl_file.invalid_path');
    WHEN utl_file.invalid_mode THEN
    RAISE_APPLICATION_ERROR(-20001, 'utl_file.invalid_mode');
    WHEN utl_file.invalid_filehandle THEN
    RAISE_APPLICATION_ERROR(-20001, 'utl_file.invalid_filehandle');
    WHEN utl_file.invalid_operation THEN
    RAISE_APPLICATION_ERROR(-20001, 'utl_file.invalid_operation');
    WHEN utl_file.read_error THEN
    RAISE_APPLICATION_ERROR(-20001, 'utl_file.read_error');
    WHEN utl_file.write_error THEN
    RAISE_APPLICATION_ERROR(-20001, 'utl_file.write_error');
    WHEN utl_file.internal_error THEN
    RAISE_APPLICATION_ERROR(-20001, 'utl_file.internal_error');
    WHEN OTHERS THEN
    dbms_output.put_line('SQLERRM '||SQLERRM);
    END UTL_TEST_DOWNLOAD
    SQLERRM ORA-06502: PL/SQL: numeric or value error
    The file is getting created all the time i execute this procedure i am getting the above error while executing this statement owa_util.mime_header ('application/vnd.ms-excel',TRUE);

    Hi,
    it seems your issue is with PLSQL product so I would suggest to post your question in the PLSQL forum.
    reference
    PL/SQL
    REgards, Roberto

  • Using InetAddress for ip of local machine

    Hi.
    I'm using InetAddress to obtain the IP address of the local machine. This works fine .. however ... I am trying to simulate a loss of IP address. This is done by using ipconfig/release in DOS. According to DOS, my IP address has now been set to 0.0.0.0, however, InetAddress is still returning the old IP address. My code is as follows :
    InetAddress localHost;
    String localAddress;
    localHost = InetAddress.getLocalHost();
    localAddress = localHost.getLocalAddress();
    Can anyone tell me why this is not now returning 0.0.0.0?
    Thanks,
    Alison Kakoschke.

    I got the same problem. In my case, I want to dynamically detect the IP address of my local machine, which may allocate a new IP address by the DHCP server on the network each time when it is disconnected and then reconnected to the DHCP server. But, the following code:
    String localAddress = InetAddress.getLocalHost().getHostAddress();
    always return the original IP address of the local machine, rather than the new allocated address after disconnected and then reconnected.
    It's emergency! who can help me?!
    please please e-mail to me at: [email protected]

  • Local machine using - expecting remote machine

    Any advice on this one? I did modify the security / firewall to except IChat
    2009-01-04 19:42:44 -0600: No data has been received for the last 10 seconds.
    Audio channel info: local machine using 10.0.1.200:16402, expecting remote machine to send to 68.179.174.46:41078
    Video channel info: local machine using 10.0.1.200:16402, expecting remote machine to send to 68.179.174.46:41078

    Ok,
    Most Cable Modems do not router.
    It means that they pass the Public IP to the Router (Or any computer that might be directly connected if you only have one).
    This also means it is not doing DHCP (so no two lots of DHCP in this case most likely)
    Telling us the Make and Model of the modem will help to confirm this.
    Alternatively you can check if it is in this List (Very new models tend not to be included yet. They work on people sending in info, so not all devices are listed either.)
    Also tell us which version and what firmware the Base Station is Running.
    The set up pages for this can be accessed with Airport Utility in the Applications/Utilities folder.
    This presents you with a list of the Airport Devices it can find in a list on the left.
    Click on yours.
    Click on the Internet icon.
    This pane is essentially in two parts.
    The top is how you are getting connected to the Internet.
    It normally tells you the IP you are getting.
    If it is the same as when you go here the modem is not routing.
    At the Bottom is whether the Base Station is set to DHCP (Share an IP) to the computers (LAN).
    Tell us what you find out.
    If it is a Public IP you see quote it as 90.66.xxx.xxx (Or put some xxx's in somewhere).
    Pic of Internet Pane with Public IP
    Older firmware and Base Stations have slightly different Access methods where you get a little Pop Up window to log on by IP first.
    (I don't have Pics of that at the moment)
    8:04 PM Monday; January 12, 2009

  • Ifs Connection problem from local machine to Ifs server using API

    I am trying to make an API call to connect to Ifs database server running on different machine(UNIX) from local machine. I copied all jar files and /Lib/Ifs/Settings directory to my local machine. All these files are in the classpath of weblogic 6.0 environment. A jsp on weblogic server call a bean which has a responsibibility of connecting to Ifs server to get LibrarySession.
    From Visual Cafe 4.5 everything works fine but when i start weblogic 6.0 outside the visual cafe environment i get the error
    below. I included all the jar files and /Lib/Ifs/Settings in start up script of weblogic server
    Do you know if i missing some thing????
    java.lang.UnsatisfiedLinkError: do_open
    at oracle.jdbc.oci8.OCIDBAccess.do_open(Native Method)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:309)
    at oracle.jdbc.driver.OracleConnection.(OracleConnection.java:198)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(DriverManager.java:517)
    at java.sql.DriverManager.getConnection(DriverManager.java:177)
    at oracle.ifs.server.LibraryConnection.(LibraryConnection.java:235
    at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPo
    ol.java:576)
    at oracle.ifs.server.ConnectionPool.(ConnectionPool.java:321)
    at oracle.ifs.server.S_LibraryService.(S_LibraryService.java:912)
    at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java
    :1129)
    at oracle.ifs.beans.LibraryService.connectLocal(LibraryService.java:408)
    at oracle.ifs.beans.LibraryService.connect(LibraryService.java:280)

    Have you installed the Oracle client software on the machine where you are running WebLogic and your custom iFS application (your bean)?
    It looks like the native JDBC libraries are not available to the JVM where WebLogic is executing your code. iFS uses JDBC to access the Oracle database, and it requires "thick" (OCI8) JDBC to do so. This means that you need Oracle client software to be installed (in an ORACLE_HOME directory) on a computer where you want to use the iFS API.
    If you do have the Oracle client software installed already, then perhaps the WebLogic environment isn't configured to have access to the native JDBC libraries. Normally, as long as $ORACLE_HOME/lib is in the LD_LIBRARY_PATH (on unix) or $ORACLE_HOME/bin is in the PATH (on windows), stuff should just work.
    See if you can find any information about including native libraries (for instance, to use JNI) in the WebLogic documentation. We don't certify with WebLogic, which is why I don't know the answer offhand.

  • Accounts used by application pools or service identities are in the local machine Administrators group.

    I am getting the Warning: "Accounts used by application pools or service identities are in the local machine Administrators
    group."
    Using highly-privileged accounts as application pool or as service identities poses a security risk to the farm, and could allow
    malicious code to execute.  The following services are currently running as accounts in the machine Administrators group: SPUserCodeV4(Windows Service) 
    OSearch14(Windows Service) 
    SPSearch4(Windows Service) 
    WebAnalyticsService(Windows Service) 
    I understand that the users running these Windows Services must not
    be a local administrator of the server. The user I have assigned for the aforementioned Windows Services are in the following Groups in the SharePoint Server:
    IIS_IUSRS
    Performance Monitor Users
    WSS_ADMIN_WPG
    WSS_RESTRICTED_WPG_V4
    WSS_WPG
    Which group must I remove the user from?

    Since I used the same account for all; I am getting the following error message:
    The server farm account should not be used for other services.
     the account used for the SharePoint timer service and the central administration site, is highly privileged and should not
    be used for any other services on any machines in the server farm.  The following services were found to use this account: SharePoint - 80 (Application Pool) 
    SPUserCodeV4(Windows Service) 
    OSearch14(Windows Service) 
    SPSearch4(Windows Service) 
    Web Analytics Data Processing Service(Windows Service) 
    Should I use another non administrator account for farm Administrator?

  • Local machine's taskbar stays in focus after using saved connection settings

    I'm not sure if this is the right place to ask as I have only seen this happen on thin clients we use running Windows Embedded Standard 2009. I cannot reproduce the issue on Windows 7 and do not have any XP machines to hand at the moment (having recently
    killed them all off).
    This is a minor issue but does confuse and annoy some users when they attempt to use these terminals. Basically we have them set up with a saved RDP shortcut that points to our terminal server. When they open this it will connect to the server in full-screen
    as intended, however the taskbar of the local machine remains visible and in focus, and anything the user types will not go in the Username field on the remote server. A single click is all that is required to be able to start entering credentials, however
    you would understand not all users immediately notice and it is quite annoying.
    Any ideas why this happens and how to fix it? It only happens when you use a saved .rdp file and does not happen if you were to open Remote Desktop Connection click Connect.

    H,
    Based on my experience, it seems to be a Windows Embedded Standard 2009 side issue. Therefore, I would like to suggest you post the question in Windows Embedded Standard forums
    for help.
    http://social.msdn.microsoft.com/Forums/en-US/home?category=embeddedwindows
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Error while deploying ear using Oracle weblogic 11g in local machine

    Hi,
    Initially I installed Jdeveloper along with Weblogic and got the below error while deploying. Later I uninstalled Jdeveloper and weblogic, etc and installed a new weblogic on my local machine and tried to deploy ear. But still got the same error. With the same installable file and same ear, we could deploy successfully on my colleagues' machine. Any idea?.
    Satus: deploy Failed
    Description: [Deployer:149026]deploy application part on AdminServer.
    Begin Time: Thu Feb 03 13:45:01 EST 2011
    End Time: Thu Feb 03 13:45:11 EST 2011
    Exception: [J2EE:160149]Error while processing library references. Unresolved Webapp Library references for "ServletContext@22411886[app:part module:part path:/part spec-version:2.5]", defined in weblogic.xml [Extension-Name: jstl, Specification-Version: 1.2, exact-match: false].
    Regards,
    Rama

    and also post the section of weblogic.xml which refers to JSTL library
    some entry like <library-ref>

  • How do you get values of local machine running applet on remote server?

    Hi,
    I have an applet that runs great running the html file on my local machine from a root directory. I've placed my code(java, class, and html files) on the web server and loaded the applet onto a page. The results are merely:
    "Computer Name: localhost"
    "IP Address : 127.0.0.1"
    Instead of:
    "Computer Name: ACTUALNAME"
    "IP Address : 189.40.20.211"
    etc...
    The code is as follows:
    import java.applet.*;
    import java.awt.*;
    import java.net.InetAddress;
    public class IPFinder extends Applet {
    public void paint(Graphics g) {
    super.paint(g);
    try {
    InetAddress localaddr = InetAddress.getLocalHost () ;
    g.drawString("Computer Name: " + localaddr.getHostName (), 2, 13);
    g.drawString("IP Address : "+localaddr.getHostAddress (), 3, 25);
    g.drawString("", 3, 45);
    String str = localaddr.getHostName();
    InetAddress[] localaddrs = InetAddress.getAllByName ( str ) ;
    for ( int i=0 ; i<localaddrs.length ; i++ )
    if ( ! localaddrs[ i ].equals( localaddr ) )
    // g.drawString("Local hostname : " + localaddrs[ i].getHostName () , 3, (i+0)+50);
    g.drawString("Local IP Address("+i+"): " + localaddrs[ i].getHostAddress () , 3, (12*i)+((i+10)+45));
         }} } catch (Exception e) {
    g.drawString("Can't detect localhost : " + e +". Check Network settings.", 3, 60);
    public static void main(String[] args) { new IPFinder(); }
    I'm trying to get Real IP Addresses (as the code was setup to do) from a browser running on the web server. I have read some of the threads in this forum and some mention to use NetworkInterface while others recommended using Sockets (not an option since we do not use them), and another to use a signature as a workaround. Anyone know the best direction to get the results expected?
    Thanks in advance,
    Geoff-

    I have an applet that runs great running the html file
    on my local machine from a root directory. I've
    placed my code(java, class, and html files) on the web
    server and loaded the applet onto a page. The results
    are merely:
    "Computer Name: localhost"
    "IP Address : 127.0.0.1"This indicates that your applet when run over a web
    server has not the rights to query the local name and
    address. Look [url
    http://java.sun.com/j2se/1.4.2/docs/api/java/net/InetAd
    ress.html#getLocalHost()]here. The so-called
    loopback address is 127.0.0.1
    Check your documentation for "signed jar" (or search
    the forum or the sun website) if you want to give your
    applet more rights, but I don't think that this is
    worth the effort in this case.
    gdsimz, since you already started two new threads based on my suggestion, how about at least saying "thank you" or "sorry, didn't help"?

  • Get Data from API which is hosted on local Machine

    I am using VS2013 to develop a databound app in win phone 8. I hosted a api on IIS Express on local machine with IP. When i browse the API on browser is comes easily,But a error is coming when trying to access from VS Solution.I am attaching my code and
    the error. the code is following
                         const string apiUrl = @"http://169.254.80.80/api/guest";
            public MainViewModel()
                this.Items = new ObservableCollection<ItemViewModel>();
            /// <summary>
            /// A collection for ItemViewModel objects.
            /// </summary>
            public ObservableCollection<ItemViewModel> Items { get; private set; }
            private string _sampleProperty = "Sample Runtime Property Value";
            /// <summary>
            /// Sample ViewModel property; this property is used in the view to display its value using a Binding
            /// </summary>
            /// <returns></returns>
            public string SampleProperty
                get
                    return _sampleProperty;
                set
                    if (value != _sampleProperty)
                        _sampleProperty = value;
                        NotifyPropertyChanged("SampleProperty");
            /// <summary>
            /// Sample property that returns a localized string
            /// </summary>
            public string LocalizedSampleProperty
                get
                    return AppResources.SampleProperty;
            public bool IsDataLoaded
                get;
                private set;
            /// <summary>
            /// Creates and adds a few ItemViewModel objects into the Items collection.
            /// </summary>
            public void LoadData()
                if (this.IsDataLoaded == false)
                    this.Items.Clear();
                    this.Items.Add(new ItemViewModel() { ID = "0", LineOne = "Please Wait...", LineTwo = "Please wait while the catalog is downloaded from the server.", LineThree = null });
                    WebClient webClient = new WebClient();
                    webClient.Headers["Accept"] = "application/json";
                    webClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient_DownloadCatalogCompleted);
                    webClient.DownloadStringAsync(new Uri(apiUrl));
            private void webClient_DownloadCatalogCompleted(object sender, DownloadStringCompletedEventArgs e)
                try
                    this.Items.Clear();
                    if (e.Result != null)
                        var books = JsonConvert.DeserializeObject<GuestDetail[]>(e.Result);
                        int id = 0;
                        foreach (GuestDetail book in books)
                            this.Items.Add(new ItemViewModel()
                                ID = (id++).ToString(),
                                LineOne = book.GuestName,
                                LineTwo = book.Nationality,
                                LineThree = book.Profession.Replace("\n", " ")
                        this.IsDataLoaded = true;
                catch (Exception ex)
                    this.Items.Add(new ItemViewModel()
                        ID = "0",
                        LineOne = "An Error Occurred",
                        LineTwo = String.Format("The following exception occured: {0}", ex.Message),
                        LineThree = String.Format("Additional inner exception information: {0}", ex.InnerException.Message)
            public event PropertyChangedEventHandler PropertyChanged;
            private void NotifyPropertyChanged(String propertyName)
                PropertyChangedEventHandler handler = PropertyChanged;
                if (null != handler)
                    handler(this, new PropertyChangedEventArgs(propertyName));
    the error is ...
    {System.Net.WebException: The remote server returned an error: NotFound. ---> System.Net.WebException: The remote server returned an error: NotFound.
       at System.Net.Browser.ClientHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult)
       at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClasse.<EndGetResponse>b__d(Object sendState)
       at System.Net.Browser.AsyncHelper.<>c__DisplayClass1.<BeginOnUI>b__0(Object sendState)
       --- End of inner exception stack trace ---
       at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
       at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
       at System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result)
       at System.Net.WebClient.DownloadBitsResponseCallback(IAsyncResult result)}
    Can anyone help me please, I am stuck with it.
     

    Did you set up your router to forward the request to your computer?  the ip you posted looks an ip your internet service provider gave you.
    Fyi you can get 10 free azure websites

  • I want to set up the Time Machine and I would love to use the Time  Capsule but since I already have a wireless router I need suggestions on  what other external disks Apple could recommend to use with the Time Machine and  how to configure that disk

    I want to set up the Time Machine and I would love to use the Time
    Capsule but since I already have a wireless router I need suggestions on
    what other
    external disks Apple could recommend to use with the Time Machine and
    how to configure that disk.
    A complication that I need to resolve is the fact that I am using Vmware
    Fusion to be able to use Windows on my Mac. Now it seems that Time
    Machine is not backing up my files
    on that virtual Windows without additional configuration and my question
    is whether you can advise me here or whether this is only a matter for
    the Fusion virtual machine.

    If you want to use Time Capsule you can.. you simply bridge it and plug it into the existing router.. wireless can be either turned off or used to reinforce the existing wireless.. eg use 5ghz in the TC which is much faster than your 2.4ghz.
    You can also use a NAS.. many brands available but the top brands are synology, qnap and netgear readynas  series. These will all do Time Machine backups although how well always depends on Apple sticking to a standard. There are cheaper ones.. I bought a single disk zyxel which was rebadged and sold through my local supermarket. It actually works very well for TM at least on Snow Leopard. Major changes were made in Lion and again ML so do not instantly think it will work on later versions. I haven't tried it yet with those versions.
    Any external drive can be plugged into the mac. Use the one with the fastest connection or cheapest price according to your budget. USB2 drives are cheap and plentiful. But no where near as fast as USB3 or FW800. So just pick whichever suits the ports on your Mac. Interesting Apple finally moved to USB3 on their latest computers.
    TM should exclude the VM partition file.. it is useless backing it up from Mac OS side.. and will slow TM as it needs to backup that partition everyday for no purpose.. TM cannot see the files inside it to backup just the changes.
    You need to backup windows from windows. Use MSbackup to external drive.. if you have pro or ultimate versions you can backup to network drive. But MSbackup is a dog.. at least until the latest version it cannot restore the partition without first loading windows. There are about a zillion backup software versions for windows.. look up reviews and buy one which works for you. I use a free one Macrium Reflect which does full disk backups and is easy to restore.. to do incremental backups though you have to pay for it.

  • Using DDE from server machine

    Hi guys, need some help..
    I have designed a forms application(10g). It sits on a server so it can be accessed by multiple users from different computers. I have a documents form which you can use to open documents using DDE as follows
    AppID := DDE.App_Begin('C:\Program Files\Microsoft Office\Office11\EXCEL.EXE '||:SCR_DOCUMENTS.doc_path, DDE.App_Mode_maximized);
    But the document is being opened on the server and not on the client machine, cos obviously its referencing the excel.exe on the servers C drive.
    How do i get this to work so it opens the document on the client machine?

    It will not work on ur client machine as the EXCEL.EXE path may be different on client machine.
    Microsoft changes the path of EXE files according to the version it releases.
    It happens when u upgred existing MS office.
    u will have to get the value of registry entry from the local machine for EXCEL.EXE
    and then try again, hope it will work
    nJoy
    Shantaram

  • Issue on How to mimic Deski document from CMS to local machine, pass parameter, execute and save in a mutiple report format then store in a network drive.

    Post Author: usaitconsultant
    CA Forum: JAVA
    Would you know if there's a way to mimic Deski
    document from BOXI server(CMS) to local machine, pass parameter, execute and
    save in a mutiple report format then store in a local drive or network
    drive? Most examples and tutorials in BO XI R2 I've seen are scheduling while drilling report is for web intelligence only and not desktop intelligence.  Please let me know your ideas. I would really appreciate your help. Thanks.

    Post Author: usaitconsultant
    CA Forum: JAVA
    Hi Ted,
    Thanks for the reply.The file is not available in the server. Though, I checked CMS and I found an instance in history tab and the status is failed with error below. 
                Error Message:
                A variable prevented the data provider Query 1 with BANRRD30 from being refreshed. (DMA0008).When I checked my codes, I found out that the object Im using is for web intelligence data provider. However, I cannot find any documentation and example for passing parameter values in desktop intelligence data provider. Any idea on this? You think this is not suported by Report Engine SDK?Thanks.    

Maybe you are looking for

  • Error message charging is not supported with this accessory

    I have an iPhone 3GS from Jul 2009. Fully updated. I normally charge it using a USB port on my MacBook Pro so it also syncs at the same time. This week began getting an alert on my phone which said "charging is not supported with this accessory". I r

  • My neicehas forgot lock and has been disabled. How do I get it back

    My neice has forgot her pass code and has been disabled, How can I get her back up?

  • Problem with printing from an URL

    Hi, my first post on this forum......so hello everyone !! Im trying to print a file on my server from a flash app, I have been using the printJob class. This function always spools the whole of my parent .swf file and not the file pointed at by the U

  • Mac app store, FaceTime , messages not opening

    Hi - i'm running osx 10.9.4, 2.93 ghz, intel core  i7 i can not open mac app store, FaceTime, messages, maps, contacts  - i recently ran cleanmymac and cleared a bunch of cache, could this have affected? how do i fix? thanks!!

  • Various things shutting my computer down

    read my later post in the thread about the newest problem i was having this problem a few days ago and decided to just reinstall (nothing else going on one night so i redid everything), but this problem is still happening. it started after upgrading