Is there a bug with calling 'eval' from a mathscipt node in a LV exe as of LV 8.2?

Hi.
I have a large LV VI that calls dynamic VIs, and one of these VIs has a mathscript node that calls a script that has an 'eval' operation.
The VI runs properly.
I made an executable.  And though the dyamic VIs are called properly, it now generates a -90001 error at that mathscript node and
I've traced it down to the eval line.
There is also an sprintf on that line, but I saw a LV 8.5 fixed bugs list that made some kind of a reference to 'eval' but wasn't clear
as to the nature of the problem.
Any ideas?

I believe you are referring to CAR 41K7AIKQ entitled "eval function needs to be blocked from the run-time engine" linked in the LabVIEW 8.5 bug fixes document.
The root of this CAR is that the eval function is not supported in the runtime engine, yet this wasn't documented in LabVIEW 8.2.  The net result is that in the 8.2 help for eval, there's no mention that it is actually unsupported in the runtime, but in the 8.5 help, there is.  This and you would receive a more descriptive error saying "'Function not available (RTE)" instead of the generic -90001 which is "A problem occurred in a subVI call".
Regards,
Craig D
Applications Engineer
National Instruments

Similar Messages

  • HT203200 Is there a problem with redeeming movies from itunes?  I purchased some movies with digital copies.  But I can not download, due to Code redemption being temporary unavailable for the past 2 days.

    Is there a problem with redeeming movies from itunes.  I purchased some movies with digital copies.  But i can not download movies, due to code redemption being temporary unavailable.

    Hi there Cedric!
    I have an article here for you that I believe will help you out with this issue by reporting it to iTunes. That article can be found right here:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Is there a bug with creating a contact out from an app?

    I work with my iPhone 3GS OS 3.1.3 and use email, calendar and contacts fully synchronized with the Exchange server at the office. And so far, It works great. But, unfortunately, is there a little bug.
    I use only the contacts folder from Exchange and there is no "local" iPhone only contacts folder. But now when I create a new contact out from an app, Maps for example, it is not stored in a default contacts folder (I can also not define such a one anywhere), but somewhere in nirvana??
    In the contacts, he is nowhere to be found, and is therefore not synchronized with my Exchange server. Only with the iPhone search this contact can be found and is still accessible.
    Someone else has also noticed this problem already? Is there a workaround for it?

    It's part of your dev agreement, especially when working with betas. If you can get in to download them, you should be able to hit everything else, including the forums.
    Get the login sorted out and you'll have significant resources that will make it worthwhile.
    Typically that bounce needs you to use the Safari(Mac) menu 'Empty caches'.
    Good luck in any case.

  • C++ API: is there a bug with Map::InvokeAll?

    Hello,
    I'm trying to use entry processors for doing like "put if absent", "delete where", ...
    I works fine except for the return values. Whatever I do, the map returned by InvokeAll is always empty!
    This a simple example:
    #include <coherence/net/cachefactory.hpp>
    #include <coherence/util/extractor/KeyExtractor.hpp>
    #include <coherence/util/filter/AlwaysFilter.hpp>
    #include <coherence/util/filter/LikeFilter.hpp>
    #include <coherence/util/filter/NotFilter.hpp>
    #include <coherence/util/filter/PresentFilter.hpp>
    #include <coherence/util/HashSet.hpp>
    #include <coherence/util/processor/ConditionalPutAll.hpp>
    #include <coherence/util/processor/ConditionalRemove.hpp>
    namespace ch = coherence::net;
    namespace cu = coherence::util;
    namespace cl = coherence::lang;
    namespace {
    void dumpMap(cu::Set::View vSetResult, const std::string &message)
    std::cerr<<message<<": ";
    for (cu::Iterator::Handle hIter = vSetResult->iterator(); hIter->hasNext(); )
    cu::Map::Entry::View vEntry = cl::cast<cu::Map::Entry::View>(hIter->next());
    cl::String::View key = cl::cast<cl::String::View>(vEntry->getKey());
    cl::String::View val = cl::cast<cl::String::View>(vEntry->getValue());
    std::cerr<<"("<<vEntry->getKey()<<","<<vEntry->getValue()<<"), ";
    std::cerr<<std::endl;
    void dumpCache(ch::NamedCache::Handle hCache, const std::string &message)
    dumpMap(hCache->entrySet(), message);
    void initCache(ch::NamedCache::Handle hCache)
    hCache->clear();
    hCache->put(cl::String::create("01"), cl::String::create("v:01"));
    hCache->put(cl::String::create("05"), cl::String::create("v:05"));
    hCache->put(cl::String::create("11"), cl::String::create("v:11"));
    hCache->put(cl::String::create("15"), cl::String::create("v:15"));
    hCache->put(cl::String::create("21"), cl::String::create("v:21"));
    hCache->put(cl::String::create("25"), cl::String::create("v:25"));
    void testInvokeAll()
    ch::NamedCache::Handle hCache(ch::CacheFactory::getCache("first_cache"));
    std::cerr<<"== init"<<std::endl;
    initCache(hCache);
    dumpCache(hCache, "init");
    std::cerr<<"== emulation putIfAbsent"<<std::endl;
    cu::Map::Handle entries = cu::HashMap::create();
    entries->put(cl::String::create("01"), cl::String::create("v:01MOD"));
    entries->put(cl::String::create("==="), cl::String::create("===MOD"));
    entries->put(cl::String::create("11"), cl::String::create("v:11MOD"));
    entries->put(cl::String::create("+++"), cl::String::create("+++MOD"));
    cu::InvocableMap::EntryProcessor::Handle processor = cu::processor::ConditionalPutAll::create(
    cu::filter::NotFilter::create(cu::filter::PresentFilter::getInstance()), entries);
    cu::Map::View res = hCache->invokeAll(cl::cast<cu::Collection::View>(entries->keySet()), processor);
    // BUG ? should return a result set of 4 entries but returns an empty set
    std::cerr<<"res size "<<res->size()<<std::endl;
    dumpMap(res->entrySet(), "res");
    // The job has be done correctly
    dumpCache(hCache, "putIfAbsent");
    std::cerr<<"== emulation delete where key in ('11', '===')"<<std::endl;
    cu::Set::Handle keys = cu::HashSet::create();
    keys->add(cl::String::View("11"));
    keys->add(cl::String::View("==="));
    cu::InvocableMap::EntryProcessor::Handle processor = cu::processor::ConditionalRemove::create(cu::filter::AlwaysFilter::getInstance(), true);
    cu::Map::View res = hCache->invokeAll(cl::cast<cu::Collection::View>(keys), processor);
    // BUG ? should return a result set of 2 entries but returns an empty set
    std::cerr<<"res size "<<res->size()<<std::endl;
    dumpMap(res->entrySet(), "res");
    // The job has be done correctly
    dumpCache(hCache, "delete where");
    std::cerr<<"== emulation delete where key like '2%'"<<std::endl;
    // should return entries as the corresponding flag is set to true
    cu::InvocableMap::EntryProcessor::Handle processor = cu::processor::ConditionalRemove::create(cu::filter::AlwaysFilter::getInstance(), true);
    cu::Filter::View f = cu::filter::LikeFilter::create(cu::extractor::KeyExtractor::create(), cl::String::create("2%"));
    cu::Map::View res = hCache->invokeAll(f, processor);
    // BUG ? should return a result set of 2 entries but returns an empty set
    std::cerr<<"res size "<<res->size()<<std::endl;
    dumpMap(res->entrySet(), "res");
    // The job has be done correctly
    dumpCache(hCache, "delete where2");
    int main(int argc, char** argv)
    try
    ch::CacheFactory::configure(ch::CacheFactory::loadXmlFile("client-cache-config.xml"));
    testInvokeAll();
    ch::CacheFactory::shutdown();
    catch(const cl::Exception::View &e)
    std::cerr<<"Ouch! "<<e<<std::endl;
    return 0;
    The output is:
    == init
    init: (11,v:11), (01,v:01), (25,v:25), (05,v:05), (21,v:21), (15,v:15),
    == emulation putIfAbsent
    res size 0
    res:
    putIfAbsent: (===,===MOD), (11,v:11), (01,v:01), (25,v:25), (+++,+++MOD), (05,v:05), (21,v:21), (15,v:15),
    == emulation delete where key in ('11', '===')
    res size 0
    res:
    delete where: (01,v:01), (25,v:25), (+++,+++MOD), (05,v:05), (21,v:21), (15,v:15),
    == emulation delete where key like '2%'
    res size 0
    res:
    delete where2: (01,v:01), (+++,+++MOD), (05,v:05), (15,v:15), The cache is modified as expected but the maps returned by invokeAll are always empty!
    Is it a bug? Do I understand the documentation incorrectly? Do I use the API incorrectly?

    Yes, I've noticed the difference between ConditionalPut and ConditionalPutAll. Ther constructor are:
    * Construct a ConditionalPut that updates an entry with a new value
    * if and only if the filter applied to the entry evaluates to true.
    * This processor optionally returns the current value as a result of
    * the invocation if it has not been updated (the filter evaluated to
    * false).
    * @param vFilter the filter to evaluate an entry
    * @param ohValue a value to update an entry with
    * @param fReturn specifies whether or not the processor should
    * return the current value in case it has not been
    * updated
    ConditionalPut(Filter::View vFilter, Object::Holder ohValue,
              bool fReturn = false);and
    * Construct a ConditionalPutAll processor that updates an entry with
    * a new value if and only if the filter applied to the entry
    * evaluates to true. The new value is extracted from the specified
    * map based on the entry's key.
    * @param vFilter the filter to evaluate all supplied entries
    * @param vMap a map of values to update entries with
    ConditionalPutAll(Filter::View vFilter, Map::View vMap);
    ConditionalPut has an extra flag for returning the new value. It does work with a call to invoke, I've tested it. Why can't we do the same with ConditionalPutAll? Do I have to N ConditionalPut instead of 1 ConditionalPutAll in order to know if my values have been updated?
    ConditionalRemove has the same flag than ConditionalPut:
    * Construct a ConditionalRemove processor that removes an
    * InvocableMap entry if and only if the filter applied to the entry
    * evaluates to true.
    * This processor may optionally return the current value as a result
    * of the invocation if it has not been removed (the filter evaluated
    * to false).
    * @param vFilter the filter to evaluate an entry
    * @param fReturn specifies whether or not the processor should
    * return the current value if it has not been removed
    ConditionalRemove(Filter::View vFilter, bool fReturn = false);But when used with invokeAll, it doesn't return any value as shown in the example I've sent. Is it a bug or a designed feature?

  • Problem with calling Webservice from Java Webdynpro

    Hi,
    I have a scenario where I need to call a Webservice through my Webdynpro application. I need to pass few parameters(of type string) and the Webservice is suppose to retrun a few records based on the input values.
    When I run the webservice directly using the browser, the output is in XML format.
    When I create a model for the webservice in webdynpro, the return value is a Node element of type java.lang.Object. From webdynpro, I am successfully able to make a call to the Webservice (as there is no exception with model execute command), but the return value is always null. I am not sure if the webservice is not returning any data or if I am not reading the correct context element. There is no documentation available for the webservice either.
    Can anyone tell me what is that I am missing. Is it not possible for Webdynpro to call a webservice which can return only XML data?
    Any help on this issue would be greatly appreciated.
    Thanks,
    Sudheer

    Hi Sudheer,
    You can refer to wiki link (& other links available at the end in this)
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/wdjava/faq-Models-AdaptiveWebService
    Kind Regards,
    Nitin

  • Is there a bug with stateful WebServices in JDeveloper 10.1.3.1 ?

    Hi
    I created an ultra simple JAX-RPC Webservice from the following class using the JDeveloper WebService Wizard:
    class myWebService
      private static int SessionId;
      public myWebService() {SessionId++;}
      public int getSessionID() {return SessionId;}
    } I declared this WebService as Stateful with Session Scope. The Timeout is 600s;
    Running this WebService in JDeveloper 10.1.3 (using the generated HTML-Testinterface) I see that "getSessionID" returns the same ID on each invocation. Obviously state is managed correctly.
    However, running the same WebService in JDeveloper 10.1.3.1 I see that "getSessionID" returns a different ID on each invocation. Obviously state has been lost.
    Is this a bug in JDeveloper?
    Thanks for your help.
    Frank Brandstetter

    Is anyone using stateful webservices with JDeveloper 10.1.3.1 ?

  • Is There A Bug With The Line-In Volume Setting ?

    I use an audio mixer and microphone to put voice-overs into programs like Audacity, Sound Studio and the Voice Over Tool in Final Cut Express.
    The mixer is connected to the Line In socket on my eMac.
    I like to set the Line In Volume to Maximum in the System Preferences.
    However, sometimes when I close one of the above programs, the Line In Volume Control reverts to a default midway setting (50%).
    This is not a terrible problem but it is irritating having to reset the volume control.
    Is it a known problem and is there a cure?
    Ian.
    PS. I did a search and there was a similar sounding question three weeks ago but for some mysterious reason it was archived before anyone could answer.

    I have done some testing in the last 20 minutes and am convinced there is a conflict caused by Final Cut Express 3.0.
    I opened and closed Audacity, Sound Studio and iMovie three times each with no problem.
    I did the same with FCE and each time the Line In Volume control had reverted to the 50% setting.
    So it appears there is a bug (at least with my setup).
    Is there a cure - other than resetting System Preferences every time?
    Ian.

  • Are there serious bugs with SUN one studio

    sometimes when I an trying to perform some particular type of operations in SUN one studio community edition on my pentium III 600MHz 256MB RAM system, SUN one studio vapourises from the deskop even faser than it does when u exit normally, i changed platform to Linux installing the linux binaries..the same problem also occurs..I heppens usually when i right click on a package trying to add new bean, or JSP or some other features
    Well i hope it is not my own machine that is bugging SUN studio
    Thanks

    I do but it still retains the same problem. I have jdk1.4.1 and yet it just vaporises from my desktop. Do SUN one studio have serious memory conflict with certain processes or what.

  • Is there a problem with importing photos from Photomatix into V4.4?

    I just upgraded to V4.4.  When I import hdr pictures from Photomatix (stacked with the original) I get the #2 on one of the photos as I should.  However, when I try to expand the selectioon by clisking on #2 all I get is 1 of 2 or the #2, I cannot see the imported hdr picture.  I've even tried right clicking and expanding the stack but nothing seems to work.  This worked fine in V4.3 so it is a new problem.  I do a lot of landscape photography including panoramas and this is a real problem for me.  Hopefully there's a simple solution.
    Thanks for your help.

    This might help...  sync photos to a device...
    http://support.apple.com/kb/HT4236

  • Problem with calling dispose() from static method

    I have one class, where I have this:
    EditorWindow.disposeWindow();and class EditorWindow, where I have static method
    protected static void disposeWindow() {
        dispose();
    }But, dispose() cant be called from static method. Is there any way to hide or close the EditorWindow window?

    kaneeec wrote:
    I dont have references of these windows, because it would be too difficult. They are created just by new Window().setVisible(true);It's not difficult:
    Window w = new Window();
    w.setVisible(true);Now you have a reference (w) to your window that you can later call dispose() on.
    w.dispose();dispose() isn't a static method, so you have no choice but to call it on a specific instance.

  • Is there a bug with the formatting of formula results?

    Looking to see if anyone else is having this issue.
    When I create a cell who'se contents are the result of a formula, I normally end up with at least two digits to the right of the decimal point. If I hit the decrease digits button in the toolbar I get MORE digits.
    When I hit another format button like currency or percentage and then go back to just numbers, I again get a couple of digits to the right of the decimal point, but then the decrease digits button works as intended.
    Its not a huge deal - but I do have to hit 4 buttons instead of two. This happens in almost every cell that contains a forumla result - but not straight data cells.
    Anyone else getting this? I'd love a fix if one is in the works, its annoying.
    Cheers!

    I think what you are seeing is a feature, not a bug. sharknca hit the nail on the head. Some experimentation will demonstrate that Numbers, when in automatic mode, will format to include all the significant decimals, based on the internal resolution of the machine. Also, in Automatic mode, Numbers will not show the + sign to indicate truncation, until you try to do an override, as you found out.
    To observe what is going on, enter the formula =PI() in a cell formatted as automatic and look at the Cells Inspector, with that cell selected. You will see that even though you are only seeing as many decimals as your narrow column will display, the Inspector shows 14 digits after the decimal.
    Now, edit the formula to =10*PI(). The shifts the decimal point one place right, leaving only 13 meaningful digits to the right of the decimal, and the Automatic Format recognizes this and adapts. =100*PI() reduces the number to 12 digits, etc.
    At this point, the cell still only displays what it can, with no complaint. Try to do an override in the number of decimals displayed and you can start decrementing, but you start from wherever the Automatic format has put you based on the available resolution, and if you have a narrow column, you may see a + sign, and if you were headed for, say, two places, you may have a way to go.
    Regards,
    Jerry

  • Is there a bug with the font size setting?

    I am using the Samsung Galaxy S3 phone. I cannot change the font size using the settings in mobile firefox. It appears to be stuck on the smallest font. I have uninstalled and reinstalled the app with no success. Any suggestions on how I can fix this?

    I have done some testing in the last 20 minutes and am convinced there is a conflict caused by Final Cut Express 3.0.
    I opened and closed Audacity, Sound Studio and iMovie three times each with no problem.
    I did the same with FCE and each time the Line In Volume control had reverted to the 50% setting.
    So it appears there is a bug (at least with my setup).
    Is there a cure - other than resetting System Preferences every time?
    Ian.

  • Is there a bug with OnLoad in V2.2?

    I put the following "alert('Hey')" (including the double quotes) in the Page's On Load Page HTML Body Attribute. I expected Application Express to generate:
      <body onload="alert('Hey')">but it generated:
    <body alert('Hey')>and I do not see the alert. What am I doing wrong? When I try to put
      onload="alert('Hey')"into the field I get the following Application Express error when I try to Apply Changes:
    1 error has occurred
        * You may not declaratively set cursor focus if you specify an ONLOAD in this attribute. You can programatically set cursor focus by using the following syntax:
    onload="mystuff(); first_field();"The only way I was able to get this to work was to put
      "alert('Hey')"in the field, export the application, edit the export putting in
      onload="alert('Hey')"import the file, and run it. It works runs fine. If I try to edit the onload attribute, I get the error.
    I have an example with the application export: http://apex.oracle.com/pls/otn/f?p=21812
    I tested this in v 2.0.0.00.49 and I am able to enter the onload command into the field.
    Mike

    Hello,
    I will try again. 'IF' you want a custom javascript onload, lets say onload="doSomething('custom javascript')" you need to turn off the Cursor Focus so it will look like this.
    <br><br>
    <img src="http://i8.tinypic.com/25a6vys.png" border="0" alt="Image and video hosting by TinyPic">
    <br><br>
    If you still want to focus your first item with your custom javascript you need to include it in your onload by hand like this,
    <br><br>
    <img src="http://i8.tinypic.com/25a6zya.png" border="0" alt="Image and video hosting by TinyPic">
    <br><br>
    this is to keep from introducing bad html into the page, previously we let your get away with this even though it is bad html and could cause unforeseen results, lets just say we are trying to help you write better webapges if you want too or not.
    Carl

  • Is there a bug with firefox when supporting "aria-labelledby" attribute for span element?

    I use firefox 10.0.3, and using JAWS 13 to read the screen.
    I set the "aria-labelledby" attribute for the span, and only first element content was read even I set three 'id' for this attribute. This can work well under IE8.
    <pre>&lt;table role="grid" summary="Details table"&gt;
    &lt;tr&gt;
    &lt;td type="columnTitle"&gt;&lt;span tabIndex="0" role="gridcell"&gt;Date&lt;/span&gt;&lt;/td&gt;
    &lt;th id="_NS_hdr1" role="columnheader" type="columnTitle"&gt;&lt;span tabIndex="-1" role="columnheader"&gt;3/4&lt;/span&gt;&lt;/th&gt;
    &lt;th id="_NS_hdr2" role="columnheader" type="columnTitle"&gt;&lt;span tabIndex="-1" role="columnheader"&gt;3/11&lt;/span&gt;&lt;/th&gt;
    &lt;th id="_NS_hdr3" role="columnheader" type="columnTitle"&gt;&lt;span tabIndex="-1" role="columnheader"&gt;3/18&lt;/span&gt;&lt;/th&gt;
    &lt;th id="_NS_hdr4" role="columnheader" type="columnTitle"&gt;&lt;span tabIndex="-1" role="columnheader"&gt;3/25&lt;/span&gt;&lt;/th&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;th id="_NS_hdr5" role="rowheader" type="columnTitle"&gt;&lt;span tabIndex="-1" role="rowheader"&gt;Count&lt;/span&gt;&lt;/th&gt;
    &lt;td headers="_NS_hdr1 _NS_hdr5" type="datavalue"&gt;
    &lt;span tabIndex="-1" id="_NS_N158B5CC0.1614A0C80" role="gridcell" aria-labelledby="_NS_hdr1 _NS_hdr5 _NS_N158B5CC0.1614A0C80"&gt;0&lt;/span&gt;
    &lt;/td&gt;
    &lt;td headers="_NS_hdr2 _NS_hdr5" type="datavalue"&gt;
    &lt;span tabIndex="-1" id="_NS_N158B5CC0.1614A1200" role="gridcell" aria-labelledby="_NS_hdr2 _NS_hdr5 _NS_N158B5CC0.1614A1200"&gt;75&lt;/span&gt;&lt;/td&gt;
    &lt;td headers="_NS_hdr3 _NS_hdr5" type="datavalue"&gt;
    &lt;span tabIndex="-1" id="_NS_N158B5CC0.1614A1780" role="gridcell" aria-labelledby="_NS_hdr3 _NS_hdr5 _NS_N158B5CC0.1614A1780"&gt;231&lt;/span&gt;
    &lt;/td&gt;
    &lt;td headers="_NS_hdr4 _NS_hdr5" type="datavalue"&gt;
    &lt;span tabIndex="-1" id="_NS_N158B5CC0.1614A1D00" role="gridcell" aria-labelledby="_NS_hdr4 _NS_hdr5 _NS_N158B5CC0.1614A1D00"&gt;81&lt;/span&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;</pre>

    Hi MacroZ,
    I understand your point. JAWS support different ways to navigate the page, such as use 'tab' key to navigate clickable items, or use 'Ctrl+Alt+arrow keys' to navigate the data table cells.
    I removed the 'gridcell' role from data cells and when I use 'Ctrl+Alt+arrow keys', it works well(I move to one cell, and it can read column title, then row title, then cell value). So it's acceptable because at least we have one way to read this data table :)
    There is one more thing I want to ask, I have one page that include one iframe, and the page inside the iframe has several hyper links, I start JAWS13, then use 'tab' key to navigate these links inside the iframe page, when I navigate to one link, I press 'enter' key to goto the new page, then I found all links in the new page do not work when I navigate to any of them and press 'enter' key(it can works well when using mouse click). Seems there's no problem under IE8, I'm not sure this issue comes from JAWS or firefox, so hope you can help to confirm on this, many thanks!

  • Help with calling packages from crystal reports

    hi I am trying to call a package from crystal reports, but geting an error
    Failed to open a rowset
    4200:datadirect:odbcdriver:odbc oracle driver: unrecognised escape sequence.
    im sure its somthing realy stupid im doing wrong any ideas????
    the command in crystal is
    {CALL  Enhanced_Pharos_Report.run_report
    (NVL({?var_detail_id},0))}
    the package, which works as a stand alone object is
    ----------spec------------------
    create or replace package Enhanced_Pharos_Report
    AS
    TYPE result_set_type IS REF CURSOR;
    PROCEDURE run_report
    (var_detail_id NUMBER, v_Media_Object_Name out varchar2);
    end;
    -----------body-----------------------
    create or replace package body Enhanced_Pharos_Report as
    v_Media_Object_Name varchar2(300);
    function Media_Object_Name(var_Detail_id Number) return varchar2 as
    Result varchar2(300);
    begin
    SELECT promo_name
    INTO Result
    FROM promo
    WHERE promo_id = (SELECT promo_id
    FROM promo_plan
    WHERE promo_plan_id = (SELECT promo_plan_id
    FROM event_promotion
    WHERE detail_id = var_Detail_id));
    return(Result);
    end Media_Object_Name;
    PROCEDURE run_report
    (var_detail_id NUMBER, v_Media_Object_Name out varchar2)
    is
    begin
    v_Media_Object_Name := Media_Object_Name (var_detail_id);
    end;
    end;

    Are you able to view your report on the browser in the format:
    http://myserver:portno/report_name.rpt

Maybe you are looking for

  • My plan.Is it possible?External drive for a network!

    I have an eMac.I just purchased a Western Digital 250 Gig firewire external hard drive.I haven't formatted it yet.I have some questions.I want to store my iTunes folder,iPhoto folder,my iMovie folder,and back up my internal eMac hard drive on it.How

  • Syncing I Touch and Using the Home Sharing

    I have 2 questions. Yesterday I tried to sync my iTouch with my computer upstairs, but somehow it gave me a 'USB not connected.' (Of course, it was the first time, after a great while, to sync my itouch after I've download so much stuff to the iTouch

  • Cannot start Elements - msg "Elements has stopped working"

    THis is the detail: roblem signature:   Problem Event Name:          APPCRASH   Application Name:          Photoshop Elements 10.0.exe   Application Version:          10.0.0.0   Application Timestamp:          4e70bafc   Fault Module Name:          S

  • Wrt54g v8.2

    hi everyone i must give a big thanks in advance. first i would like to say the router works, i did not have any troubles setting it up regardless of the operating systems on my computers! however i have to ask' what happened to the performance, seems

  • Transport/Export/Import Role Assignments

    Hi all, it´s possible to transport, export or import role assignments from one portal to another? we implement a testsystem for our customer and want to copy all role assignments from all users from productive to testsystem. best regards Christian