Problem Connection at Runtime

Hi everybody,
Context: Crystal Reports 9, Windows XPPro, SQL Server
When I change my report to another Datasource at runtime doesn't work I retrive always the same data from the original Datasource.
Below the code I'm using
    Dim sql As String, ConnectionInfo As CRAXDRT.ConnectionProperties
    Dim server As String, db As String
    sql = "MYRPT.rpt"
    Set CrxReport = CrxApplication.OpenReport(sql)
    Set ConnectionInfo = CrxReport.Database.Tables(1).ConnectionProperties
    ConnectionInfo.DeleteAll
    server = "NEWSERVER"
    db = "NEWDB"
    ConnectionInfo.Add "Provider", "SQLOLEDB"
    ConnectionInfo.Add "Data Source", server
    ConnectionInfo.Add "Initial Catalog", db
    ConnectionInfo.Add "User ID", "X"
    ConnectionInfo.Add "Password", "X"
Thanks for any help.
Jaime Zamora

Post Author: phoenixvn
CA Forum: .NET
Thanks for your answers.I have found a way to overcome the problem and here is my code:        private bool ApplyLogOn(string password, ReportDocument reportDocument, string serverName, string userName) {            TableLogOnInfo li;            foreach (Table table in reportDocument.Database.Tables) {                li = (TableLogOnInfo)table.LogOnInfo.Clone();                li.ConnectionInfo.UserID = userName;                li.ConnectionInfo.Password = password;                li.ConnectionInfo.LogonProperties.Set(CONNECTION_URL, CONNECTION_URL_VALUE + serverName);                li.ConnectionInfo.LogonProperties.Set(JDBC_CONNECTION_STRING, JDBC_CONNECTION_STRING_VALUE + serverName);                table.ApplyLogOnInfo(li);                // Tests the connection.                if (!table.TestConnectivity()) {                    return false;                }            }            return true;        }

Similar Messages

  • Problem connect to Portal with SLD

    Hi , i have problem connect the portal (7.0) whit SLD server
    The SLD server is configured in the Solution Manager.
    SLD: ctsi386nt02.ctsnx.com:sapgw00
    the check connect SLD failure. show messages.
    [Thr 4724] *  ERROR       partner 'ctsi386nt02.ctsnx.com:sapgw00' not reached
    [Thr 4724] *
    TIME        Tue May 03 14:15:29 2011
    [Thr 4724] *  RELEASE     700
    [Thr 4724] *  COMPONENT   NI (network interface)
    [Thr 4724] *  VERSION     38
    [Thr 4724] *  RC          -10
    [Thr 4724] *  MODULE      nixxi.cpp
    [Thr 4724] *  LINE        2823
    [Thr 4724] *  DETAIL      NiPConnect2
    [Thr 4724] *  SYSTEM CALL connect
    [Thr 4724] *  ERRNO       10061
    [Thr 4724] *  ERRNO TEXT  WSAECONNREFUSED: Connection refused
    [Thr 4724] *  COUNTER     25
    [Thr 4724] *
    [Thr 4724] *****************************************************************************
        Return code: RFC_FAILURE(1)
        error group: 102
        key: RFC_ERROR_COMMUNICATION

    Hi,
    User SLD - doesn't matter on name belogns to system where SLD is configured and running. SO I guess you have SLD on Solman.
    In case you didn't configured SLD on portal you have to set up on portal on visual admin choose Cluster > Server >Services > SLD Data Supplier > tab Runtime > HTTP Settings and add data of your Solman's SLD hostname port and user (SLDDUSER)
    In case of you have SLD also on portal, go to SLD page e.g. http://<hostname>:5<system_number>00/sld
    On the SLD initial page, choose Administration and in the section Server > Data Suppliers.
    add data of your Solman SLD
    Check web  http://help.sap.com/saphelp_nw70/helpdata/en/ee/74b3407e73c57fe10000000a1550b0/frameset.htm
    Best regards,
    Peter

  • Unable to overwrite the ODBC connection in runtime

    Hi,
    I have a VS2008 application which is using CR2008. Problem is I am not able to change the ODBC connection in runtime to any server other than the one that was used to create the report
    We are using infoobject model to retrive the report form CMC.
    Couple of thing I tried.
    First One:
    ConnectionInfo objConnectionInfo = new ConnectionInfo();
                   objConnectionInfo.ServerName = "Server Name";
                   objConnectionInfo.DatabaseName = "Database Name";
                   objConnectionInfo.UserID = "UserID";
                   objConnectionInfo.Password = "Pwd
                   objConnectionInfo.IntegratedSecurity = true;
                   objConnectionInfo.AllowCustomConnection = true;
                   TableLogOnInfos objTableLogOnInfos = new TableLogOnInfos();
                   TableLogOnInfo objTableLogOnInfo = new TableLogOnInfo();
                   objTableLogOnInfo.ConnectionInfo = objConnectionInfo;
                   objTableLogOnInfos.Add(objTableLogOnInfo);
                    Crv.LogOnInfo = objTableLogOnInfos;
    Second One:
                        ReportLogons logns = ceReport.ReportLogons;
                        ReportLogon logn = logns[1];
                        logn.UseOriginalDataSource = false;
                        logn.CustomServerName = "ServerName";
                        logn.CustomDatabaseName = "Database Name";
                        logn.CustomUserName = "Userid";
                        logn.CustomPassword = "Pwd";
    Above methods I tries but I am unable to change my connection string,Some one please advise on this.

    Make sure you have SP 2:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    Try one of our sample apps:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    recommend vbnet_win_dbengine
    Do this with a report that has no subreports 1st.
    In your code samples, you are trying to use integrated security in one, not in the other. Is the report designed with Integrated security or not? Re. integrated security, see [this|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b021e47e-be1d-2b10-c6b2-efa9db3abd6b] article.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Error BISoapConnection – READ_ONLY_STORE while modifying Connection at runtime from EM-MBean Browser

    I’m trying to create a webapp having a page pulling the BI analytics content using the BI-ADF control. I then deploy this on another standalone weblogic server.
    While this deployment works and I’m able to acess my pages etc. The connections are created statically in Jdeveloper
    However, the requirement is to be able to create/modify the connections at runtime. I am trying the way to do this using System MBean Browser but seems like I missed any configuration while creating the deployment, since I get the error for the READ_ONLY_STORE for this connection.
    Much appreciated any advice from you.

    Here is my help:
    The entire line of output up until the actual error means absolutely nothing to me or anyone else except you; it is means anything at all, then you need to get into your debugger and start stepping thorugh your code until you hit the error and see what is actually happening, then if you are stuck, write a question stating what the problem is and where it occurs in your code. You chould give some of the variable states in the same scope during the iteration inwhich the error occures, but unless you are willing to do this, I doubt anyone is going to do your debugging for you--paticulary since this is not even your own code.

  • I'm trying to set up my Ipod, but when I go to sign in with an apple ID it says 'Could not sign in: there was a problem connecting to the server'.

    I just bought a 3rd generation ipod touch. It was professionally refurbished. I'm trying to set it up, and everything seems to be working fine, until we get to the wifi. I live on campus and our wifi is username and password protected. I signed in and everything seemed to work fine, and in the top left hand corner I have all the bars for wifi. However, when I go to sign in with an apple ID it says 'Could no sign in: there was a problem connecting to the server'. I've tried turning it on and off again, tried signing on to our wifi again, but it all isn't working. What can I do?

    I also encountered the same problem. Try using a different email address or try signing in later.

  • I am having problems connecting to home wifi.  It was working, but now all I get is a blank white screen.  I re-booted with no success.

    I am having problems connecting to home wifi.  It was working, but now all I get is a blank white screen.  I re-booted with no success.

    Hi, blank white screen where exactly?
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.

  • Problems connecting multiple macs to an Airport Extreme network.

    I think this problem is similar to a previous post, but is individual in some ways.
    I have 2 Airport Extreme basestations covering a large flat connected by Ethernet extending a single network. I did try to extend the network wirelessly, but this was plagued with problems where the network would work for 10 mins, then drop out as I think the basestations are slightly too far apart.
    Connected to the network are a number of machines:
    Wirelessly we have 3x iPhones, 1x G4 Cube, 1x iMac (current model), 2x MacBook Pro (previous model) & 1x PC.
    Wired via a hub is an Apple TV, PS3, Nintendo Wii, Denon Home Cinema Amp, PS2
    For aprox 6 months I have had major problems connecting all the wireless machines at the same time. I have played around with the security as per previous posts with varying degrees of success.
    I seem to have the most problems with the iMac. The iMac will not join the network when there is any form of wireless security. Every time I try to set up a password it hangs when trying to join and I finally get the "There was a error joining xxxx network".
    After more playing around I managed to get all the machines working by having no security on the network and locking the network down by MAC addresses.
    Since last Thursday I now have a new problem. The iMac joins and stays on the network perfectly, but the second my second MacBook Pro is switched on and joins the network, the internet connection on the iMac drops out. In addition, as we use the iMac as a media server, all other machines connected to the iMac for either file sharing or iTunes sharing then get the error "the remote machine is failing to respond. Please check firewall settings if there are any". What is strange is that the iMac remains on the network, full signal, independent IP address and the second the MacBook Pro is switched off, works perfectly again.
    I have tried wiping both the iMac & the MacBook Pro and re-installing their operating systems, but this only solves the problem for aprox 24 hours then all of a sudden the issue re-appears.
    Can anyone out there help?

    Let's double-check the AirPort Express Base Station's (AX) settings ...
    Perform a "factory default" reset of the AX
    o (ref: http://docs.info.apple.com/article.html?artnum=108044)
    Either connect to the AX's wireless network or connect directly, using an Ethernet cable, to the Ethernet port of the AX, and then using the AirPort Utility in "Manual Setup" mode, check the following settings:
    AirPort > Base Station
    o Base Station Name: <rename or leave default>
    o Base Station Password: <enter desired password>
    o Verify Password: <re-enter desired password>
    o Remember this password in my keychain: (optional)
    o Set time automatically: (unchecked)
    AirPort > Wireless
    o Wireless Mode: Join a wireless network
    o Network Name: <existing AEBSn's wireless network>
    o Wireless Security: <select the encryption type of the existing wireless network>
    o Wireless Password: <enter the existing wireless network password>
    o Verify Password: <re-enter the existing wireless network password>
    Music
    o Enable AirTunes (checked)
    o iTunes Speaker Name: <enter desired speaker name>
    o iTunes Speaker Password: (optional)
    o Verify Password: (optional)
    o Click Update to write the new settings to the AX
    In iTunes:
    iTunes > Preferences... > Advanced > General
    o Look for remote speakers connected with AirTunes (checked)

  • TS3048 My early 2009 Mac Pro does not connect via bluetooth to my sound bar or bluetooth mini speakers. Both my wireless keyboard and mouse have no problems connecting. What do I need to do to connect to external bluetooth devices?

    My early 2009 Mac Pro does not connect via bluetooth to my sound bar or bluetooth mini speakers. Both my wireless keyboard and mouse have no problems connecting. What do I need to do to connect to external bluetooth devices?

    I would always have a wired keyboard and mouse on hand (need not be expensive ... any cheap wired devices will work).  "Emergency recovery" procedures can activate features in random order, so the opportunity to select a recovery partition may pass before the wireless devices are recognized.
    That will let you select the "turn on Bluetooth" icon.

  • Problem connecting MacBook to a Sharp video projector

    One of the great things I like about Macs is the easy way they (usually) connect to a video projector. Unlike a lot of my friends who run PCs with Windows I never had any problems whatsoever connecting my MacBook to a projector at the university and start my presentations.
    Until today that is.
    I tried to connect my MacBook with Apple's mini-DVI to VGA adapter to a Sharp ("Notevision") video projector and although the MacBook had the projector (even with its correct name "PG-M20X" and available resolution settings) listed under "Displays" immediately, I couldn't get the projector to show any more than "no signal" whatever input source I chose...
    What did I do wrong? Or is it the projector that is somehow "incompatible"?! Please help!
    MacBook Mac OS X (10.4.9) Core Duo 2GHz, July 2006
    MacBook   Mac OS X (10.4.9)   Core Duo 2GHz, July 2006

    Maybe this could help as well:
    After we tried several things with the MacBook (reboot, "detect displays" etc.), we successfully connected a Powerbook (15", FireWire 800, late 2003) to the projector, using Apple's DVI-VGA Adapter.
    So that did work out fine, but the MacBook didn't work on the projector. The cable that came with the projector was a VGA--DVI-A cable: there were only a few pins on the DVI-end of it going into the DVI-Connector on the projector. Could it have something to do with that? But why didn't the Powerbook have any problems connecting to the projector then?
    MacBook Mac OS X (10.4.9) Core Duo 2GHz, July 2006

  • Having problems connecting a late 2011 Macbook Pro 2.2ghz i7 to a Sony KDL-32L5000 using a display miniport to DVI adapter (DVI to VGA cord). The TV is not detecting the macbook. Anyone have this problem?

    Having problems connecting a late 2011 Macbook Pro 2.2ghz i7 to a Sony KDL-32L5000 using a display miniport to DVI adapter (DVI to VGA cord). The TV is not detecting the macbook. Anyone have this problem?

    You really have to mess with the resoluton, espescially the refresh rate, as it varies from projector to projector, monitor to monitor. Even within the same brand! Because so many manufacturers are trying so many different things to become the next cool kid on the block, and the way the formats are being configured that's now part of the game.
    That's why so many professionally produced corporate shows hire a dedicated projectionist for the video presentations. Too many bugs in the honey.
    Refresh & sesolution are the first things to look at.
    Just so you know that colors in PowerPoint PC, and PowerPoint Mac, don't exactly match... go figure.
    I forgot to mention another thing, sometimes it's the projector that needs to be tweaked.

  • Having problems connecting MacBook Pro 2010 TO vizio 60 " tv

    having problems connecting MacBook Pro 2010 TO vizio 60 " tv using mini displayport to VGA adapter
    non support warning appears pn tv monitor

    However, I still don't get a view of anything on the desktop except for the standard Apple swirl.
    Can you drag windows to the other display?
    In the "Arrangement" tab of "Displays" system preference, you can drag the display pictures to match the actual arrangement, drag the menu bar to the other display, or enable mirroring.

  • Problem connecting my macbook pro to a wired internet connection via ethernet cable adapter

    I am having a problem connecting my macbook to a wired internet connection in an area in my workplace where there is no wifi.  The macbook works fine on the same internet connection via wifi in other parts but when I add it as a wired connection it doesn't show any connection.  I have turned off wifi to make sure that it is not trying to pick up a poor connection but I still can't get this to work.  I think I am trying to set up the connection properly but can't be completely sure.  Any help would be appreciated.

    Open System Preferences>Network and make sure Ethernet is selected. If it is, open Advanced Settings (at the bottom of the Network window). Click on the TCP/IP tab. Configure IPv4 should be set to "Using  DHCP".
    Configure IPv6 should be set to "Automatically". When those are set click the "Renew DHCP Lease" button

  • Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. scree

    Not sure that I have selected the correct forum.  Hope my questions are clearly stated.
    Having problems connecting iMac(late 2006) running 10.7.5 to a Samsung Flat Screen TV using separate audio/speaker cable and HDMI standard cable, mini-DVI to HDMI video converter.  TV displays generic Apple galaxy background and "some" windows (e.g. screen resolution choices).   It does not show Mail or Safari menus.  System preferences'  display "gathered" the Samsung and chose its resolution.  I did not find a way to select the Samsung as my display.
    In addition to having old hardware, we have Verizon FIOS providing internet and TV access.  Is there any way to make this work for us?  We would like to stream video (Netflix) and view shows from the Web.  Do we need Apple TV to do this?  Or is it not possible with our old iMac?  My husband thinks that our Airport could be a factor. 
    Thank you

    Lately, I have been seeing a lot of posts with users trying to use their Macs/iMacs to mirror their streaming video from their Macs to an HDTV.
    There are, actually, many alternatives to choose from than just from a Mac.
    You need to have or invest in a WiFi capable router for all of these examples.
    Apple TV only integrates with WiFi and newer Mac hardware. So, if you want to have total integrated experience, if you have a 2011 Mac or newer, you might as well pay the $100 for the AppleTV box.
    If you have a older Mac, like I have noticed many users do, then you have other options.
    If you want to elimate long cable clutter and having your Mac at the mercy of your TV all of the time,  you can still use the AppleTV box independently or purchase cheaper alternative media streaming boxes from Roku, Sony, Boxee or any number of electronics manufacturers that now have media streaming boxes and media streaming capability built into DVD/Blu-ray players.
    These eliminate long cable clutter by being close to the HDTV where shorter, less expensive cables can be used.
    Another alternative for iPad users is to use an iPad with the USB/HDMI video adapter and use your iPad as the streaming box. This ties up your iPad in much the same way as it does with your Mac, but again the iPad can be close to the TV and use minimal cables to the TV.
    Another alternative to is to use a combination of an iPad and your Mac to stream content that is only available to stream online from a computer. In this case, you can use a desktop remote app on your iPad and Mac. A good and cheap Desktop Remote app is Splashtop Remote. This allows you to completely connect your iPad remotely, over Wifi, to your iMac desktop. The app streams both video and sound to the iPad which is still connected to your HDTV. The resultant stream video picture will be smaller than the size of your HDTV, but it will still be plenty large enough to watch. Again, if you own a iPad and an Intel Mac, this method also allows minimal cabling to the TV.

  • There was a problem connecting to the server ... OS 10.8.4 + WD NAS

    Dear all,
    first my configuration:
    iMac from mid 2012, MacOS X Mountain Lion, 10.8.4, iPhoto 09 v. 8.1.2 - all software updates done and up-to-date
    MacBook Pro late 2011, MacOS X Mountain Lion, 10.8.4
    NAS WD My Book World Edition II (white light), 2 x 1TB (configured RAID : 1TB mirrored), original firmware (01.02.14 with MioNet built on Thu Feb 9 14:11:48 CST 2012 ) NFS, AFP enabled
    a win 7 laptop and plenty of other devices
    everything on a LAN with GB router + WiFi
    I have my iPhoto library on my iMac, but the photos (the originals) stored on the NAS. I have the option "copy photos to library when importing" disabled. So I guess iPhoto has a reference / link in the library to the original files.
    Everything used to work fine until some weeks ago. Not sure what happened but suddenly I got the error message "There was a problem connecting to the server ... Check the server name or IP address, and then try again. ..." when I tried to import photos stored on my WD NAS.  When I want to display any photo stored on the NAS - same thing.
    Now I guess I have a bunch of gray hairs more while trying to get this fixed.
    I tried so many of the tips posted everywhere including booting in save mode, deleting the .plist files (first I actually tried to clean them using Xcode first before deleting them), etc. I cleared out KeyChain. I removed all recent entries (folders) and recent servers from the "history". I tried to connect as guest or named user. There are also no "logIn items" pointing to the NAS. I even tried to disable / enable AFP + NFS on the NAS, not to mention countless restarts of all the machines
    One other thing I noticed: Before that problem occured I was able to select the NAS in Finder and it would show me all the shares. When I selected one of them it was mounted automatically. When I select it now I get "connecting" for a loooong time and then "Connection Failed". Most of the time (not always!) however I am able to get in via "Go -> Connect To Server - smb://<nas server name>). And suddently after that also selecting the NAS in Finder shows me all the shares! Hoever even this not in 100% of all cases. I can replicate this from the iMac and the MacBook.
    I do use an external HD for TimeMachine to back up my data (directly connected via USB). No issues there.
    Not I really don't know what to do any more
    Do you have any ideas? Did anyone ever get a response from Apple with a useful solution that really hit the core of the issue?
    Thank you!

    SOLVED!! and I want to share the solution which worked for me with everybody here. Ultimately I had to install nettalk 2.2 on my NAS as described here: http://mybookworld.wikidot.com/netatalk2-2-on-whitelight . A nice description on how to do that can be found here: http://forums.macrumors.com/showthread.php?t=1102423 .
    One last remark: When asked about the "DHX2 login process", I opted to install the original version, so I can confirm this one works too.

  • "There was a problem connecting to the server" in iTunes after migrating to new mac

    I have a problem that is driving me crazy with my brand new iMac. I see many other people posting similar issues, but none of the other solutions seem to work for me.
    I had a MacPro and bought a new iMac, on which I used Migration Assistant to set up. So the new iMac is virtually the same as my old machine in terms of appearance and installed applications. Both machines have Mountain Lion 10.8.2. All software on both machines has been through Software Update and is fully up to date, as are the connected devices (iPhone and iPad).
    The problem is with iTunes. Every time I start iTunes (I think at the moment it checks my two connected devices) I get a pop up dialogue saying:
    There was a problem connecting to the server "MacPro".
    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.
    This dialogue continues to pop up constantly as long as iTunes is open, interrupting my work and frustrating me no end. The old machine is of course turned off and indeed is not available -- but I can't find what on the new iMac is so desperate to connect to it.
    So far I have tried completing erasing my iTunes library, deleting all the preferences, reinstalling iTunes from a fresh download of the dmg, safe rebooting several times with no peripherals connected at all, and deleteing other preferences like the Login Items, iPhone config and iPhoto. I have also cleared Recent Items from the apple menu and opened "Connect to Server" in the finder and cleared all servers from the dropdown menu.
    Last night I also completely restored my iPhone from scratch to see if that would clear away the issue and I have connected both iPhone and iPad to go through any apps that have permission to write content to my computer and deleted all of them completely from the devices.
    Nothing has changed at all after all that, and I have run out of ideas. Clearly there is something somewhere that has my old machine's name hard coded in it but I can't see any way to search for it. I would grep my Library folder but I think a lot of the files are binary so I'm not sure that would unearth anything. I've seen many posts saying that Apple phone support (which I would qualify for) can't help with this issue and so I have put off phoning them to simply run through all the things I've already tried.
    Any advice that anyone could offer would be extremely helpful. I can't use iTunes at all like this as it disrupts everything I try to do on the new machine.
    many thanks!!

    Nothing at all? Can't anyone help with this issue at all? I would be grateful for any suggstions as it is driving me crazy. It happens every time I open iTunes and also every time I open Mail.

Maybe you are looking for

  • Transfer posting using MM and SD

    Hi people, In the transfer postings using MM and SD, we have the following steps: Create the PO type UB Create the delivery document using VL10B Create MIGO and J1B1N using VL02N I would like to know about the information of tab "Value with taxes" of

  • Can't fix this code

    im still new to the j2me thing , so guys i need ur help if you plz , i should add a try block but its not working, waiting for ur replies . import java.util.*; import java.io.*; import javax.microedition.io.*; import javax.microedition.io.file.*; imp

  • Need it's Urgent- PA Help

    Hi Friends,      I need a Resume on HR-PA,PT and PD.      My requirement is Urgent Friends.     If u have content and Bullets for resume then     pls send it to [email protected]     Thanks in Advance. Regards, Manian.

  • Date addition

    I would like to display a date in the future based off of a date a user enters in a date field as well as a choice they make out of a drop list. Drop List (dl1) allows the user to select choices "1 week, 2 weeks, 3 weeks, 4 weeks" etc up to "9 weeks"

  • Oracle licensing and support of Toplink

    I know this is not a typical forum entry, but I'm at my wit's end, so I hope someone can help me... We purchased Toplink from Webgain (UK) and have been using it productively for quite some time. I have a licensing query about Toplink, which I have b