Connectivity Problem with WPF Viewer and Oracle based imbedded reports

I've been using code to modify the Database, Username and Password in imbedded reports for quite a few years.  Whether I was using C++ V6 or C# in VS2008, the process has been basically the same.  Now I am trying to use the WPF Viewer in VS2010 and am getting an "ORA-00942: table or view does not exist" error.  I perform a successful Connectivity Test and receive the error when I'm trying to view the report. 
If I comment out all of the code that sets the source of the data and performs the connectivity test, the report shows up in the viewer and I'm presented a logon window similar to what I see when i design the RPT file in Crystal Reports. i.e the "Server Name:" shows the name of the Oracle Database I used when I designed the report; the "Database: " is empty; the "Login ID:" displays an edit box and contains the User ID I used when designing the report; and the "Password: " displays an edit box in which I type the password.  Once I click on the OK button, the report is displayed in the WPF viewer.
Here is the code starting after I have loaded the report into a ReportDocument:
if(report.IsLoaded)
  CrystalDecisions.Shared.TableLogOnInfo crTableLogonInfo;
  CrystalDecisions.CrystalReports.Engine.Tables crTables = report.Database.Tables;
  foreach(CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
    crTableLogonInfo = crTable.LogOnInfo;
    crTableLogonInfo.ConnectionInfo.LogonProperties.Clear( );
    crTableLogonInfo.ConnectionInfo.Attributes.Collection.Clear( );
    crTableLogonInfo.ConnectionInfo.DatabaseName = null;
    crTableLogonInfo.ConnectionInfo.ServerName = MyDatabase;
    crTableLogonInfo.ConnectionInfo.UserID = MyUsername;
    crTableLogonInfo.ConnectionInfo.Password = MyPassword;
    crTable.ApplyLogOnInfo(crTableLogonInfo);
  report.SetParameterValue("StartingCPID", "AAAAAA");
  report.SetParameterValue("EndingCPID", "ZZZZZZ");
  if(report.Database.Tables[0].TestConnectivity())
    reportViewer.ViewerCore.ReportSource = report;
    reportViewer.ToggleSidePanel = SAPBusinessObjects.WPF.Viewer.Constants.SidePanelKind.None;
  else
    MessageBox.Show("Unable to Connect to Database in report.");
Any idea what I'm doing wrong or what is different in this version?

See if the KB [
[1448013  - Connecting to Oracle database. Error; Failed to load database information|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433343338333033313333%7D.do] helps.
Also the following may not hurt to have a look at (if only for ideas):
[1217021 - Err Msg: "Unable to connect invalid log on parameters" using Oracle in VS .NET|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313337333033323331%7D.do]
[1471508 - Logon error when connecting to Oracle database in a VS .NET application|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433373331333533303338%7D.do]
[1196712 - Error: "Failed to load the oci.dll" in ASP.NET application against an Oracle database|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393336333733313332%7D.do]
Ludek
Follow us on Twitter http://twitter.com/SAPCRNetSup

Similar Messages

  • Is there a fix for the connectivity problems with iPhone 5S and ISO 7.0.2?

    Is there a fix for the bluetooth connectivity problems with iPhone 5S and ISO 7.0.4?
    I am having problems connecting the BT Audio and the handsfree phone connectyion is unreliable in 2012 Mitsubishi Lancer XL.
    All worked OK with ISO 6.

    Hello CraigNicholson
    You would need to sync with iTunes to get that process to work for you. Check out the article below for more information on how to resolve that issue to get the proper token to use Push Notifications again.
    iPad and iPod touch: Unable to use YouTube or Push notifications
    http://support.apple.com/kb/ts3305
    Regards,
    -Norm G.

  • Performance problem with WPF Viewer CRVS2010

    Hi,
    We are using Crystal Reports 2010 and the new WPF Viewer. Last week when we set up a test machine to run our integration tests (several hundred) all report tests failed (about 30 tests) with a timeout exception.
    The testmachine setup:
    HP DL 580 G5
    WMWare ESXi 4.0
    Guest OS: Windows 7 Enterprise 64-bit
    Memory (guest OS): 3GB
    CPU: 1
    Visual Studio 2010
    Crystal Reports for Visual Studio 2010 with 64 bit runtime installed
    Visual Studio 2008 installed
    Microsoft Office 2010 installed
    Macafee antivirus
    There are about 10 other virtual machines on the same HW.
    I think the performance problem is related to text obejcts on a report document viewed in a WPF Viewer. I made a simple WPF GUI with 2 buttons and the first button executes a very simple report that only has a text object with a few words in it and the other button is also a simple report with only 1 text object with approx. 100 words (about 800 charchters).
    The first report executes and displays almost instantly and the second report executes instantantly but displays after approx. 1 min 30 sec.
    And execute in this context means that all VB.Net code runs in the compiler without any exception or performance problem. The performance problem seems to come after viewer.Show() (in the code below) has executed.
    I did another test on the second report and replaced the text obejct with a formula field with the same text as the text object and this test executed and displayed the report instantly.
    So the performance problem seems to have something to do with rendering of textobjects in the WPF Viewer on a virtual machine with the above setup.
    I've made several tests on local machines with Windows XP (32 bit) or Winows 7 (64 bit) installed and none of them have this performance problem. Its not a critical issue for us because our users will run this application on their local PCs with Windows 7 64-bit but its a bit problematic for our project not being able to run all of our integration tests but I will probably solve this by using a local PC instead.
    Here is the VB.Net code Im using to View the reports:
    Private Sub LightWeight_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
            Dim lightWeightReport As New CrystalDecisions.CrystalReports.Engine.ReportDocument
            lightWeightReport.Load(Environment.CurrentDirectory & "\LightWeight.rpt")
            ' Initialize Viewer
            Dim viewer As LF.LIV.PEAAT.Crystal.Views.ReportViewer = New LF.LIV.PEAAT.Crystal.Views.ReportViewer()
            viewer.Owner = Me
            viewer.reportViewer.ViewerCore.ReportSource = lightWeightReport
            viewer.Show()
        End Sub
        Private Sub LightWeightSlow_Click(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs)
            Dim lightWeightReport As New CrystalDecisions.CrystalReports.Engine.ReportDocument
            lightWeightReport.Load(Environment.CurrentDirectory & "\LightWeightSlow.rpt")
            ' Initialize Viewer
            Dim viewer As LF.LIV.PEAAT.Crystal.Views.ReportViewer = New LF.LIV.PEAAT.Crystal.Views.ReportViewer()
            viewer.Owner = Me
            viewer.reportViewer.ViewerCore.ReportSource = lightWeightReport
            viewer.Show()
        End Sub
    The reports are 2 empty default reports with only 1 textobject on the details section.
    // Thomas

    See if the KB [
    [1448013  - Connecting to Oracle database. Error; Failed to load database information|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433343338333033313333%7D.do] helps.
    Also the following may not hurt to have a look at (if only for ideas):
    [1217021 - Err Msg: "Unable to connect invalid log on parameters" using Oracle in VS .NET|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313337333033323331%7D.do]
    [1471508 - Logon error when connecting to Oracle database in a VS .NET application|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433373331333533303338%7D.do]
    [1196712 - Error: "Failed to load the oci.dll" in ASP.NET application against an Oracle database|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393336333733313332%7D.do]
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Connect problem with db link and scheduler_jobs on 10.2.0.4.0

    hello guys
    i have got this problem, i hope someone can help me to understand and solve it.
    I have a pl/sql procedure where is referenced a table on a db_link. I own all the grants needed, and if i recall it in an anonymous block, it seems to work.
    i.e
    create or replace procedure routine_1 is
    v_app varchar2(1);
    begin
    select 'x'
    into v_app
    from other_user.some_table@my_db_link
    where rownum<2;
    end routine_1;
    Instead, while recalling it from a job scheduled with dba_scheduler package, with the same user, while opening the cursor where the db link table is referenced, i got a connect error:
    ORA-01017: invalid username/password; logon denied
    ORA-02063: preceding line from xxxxxx (where xxxxxx is the db link)
    i would like to understand where i am mistaking. I already checked the user for the connection in the scheduled job and is the same of the anonymous block call.
    thanks in advance
    Claudio

    hello dracis
    thanks for the new answer.
    i have not access to metalink. Anyway, oracle version is 10g not 11.
    Anyway, about dbms_job package (Scheduler is the newer version of dbms_job), i found a phrase on a site saying this:
    "Jobs that reference database links will fail if the database link is not fully qualified with the username and password. This is another subtle consequence of the execution environment of jobs."
    Probably the cause is that the db link, to work, must be owned by the same user that owns the procedure where is referenced. In this way we hope ownername and password are in some way accessible.
    We are trying to check this solution, but we have to wait for some grants.
    Claudio

  • Problem with Java 5 and Oracle 10g JDBC driver

    Hi All,
    Currently we upgrade our web application to Java 5 and Oracle 10.2 JDBC driver. And we encountered a bug, when the user entered the information through UI and data didn't store into database (Oracle 9i). The problem is that this bug is not happend so often maybe once a day and this did not happen before we upgraded to Java 5 and Oracle 10.2 JDBC driver. Does anyone encounter the same problem ? Is this Java 5 problem or Oracle JDBC driver problem ?
    Thanks,

    sounds like a database problem...
    Are you using a driver version that's supported for your database engine?
    What else did you change? We once ran into a major bug in our application that had for 5 years been masked by performance problems in our hardware and infrastructure.
    Once those were resolved the bug showed itself and caused tens of thousands of records to be erroneously inserted into our database every day.
    It's certainly NOT a problem with your JVM (if it's a decent one, like the Sun implementation).
    So it's either your database, your driver, your network (dropping packets???), or your application.
    The upgrade may just have exposed something that was already there.

  • Why won't Apple fix the wifi connectivity problem with the iMac and new OS instead of just havin us go through hours of useless mock fixes!

    I have spent hours with apple care about this problem with wifi connectivity.  According to all the posts I'm not alone.  I love my new IMAC
    but i'll be glad to go back to my PC just so I can get my email without all the headaches.  It seems that Apple has lost interest in
    the IMAC and all of the problems associated with the new OS. 

    Keep in mind that ASC is where people go to get help, so yes, you are seeing reports of people who are having WiFi connection issues. But while it might seem like there are lots of people having trouble, given the sheer number of iMacs in use, it is a very small number. Also keep in mind that WiFi isn't totally under Apple's control. There are dozens of WiFi routers. Even worse, the manufacturers of WiFi routers often release firmware upgrades to fix flaws without ever informing the consumer. And just to add to the confusion, while WiFi 801.2 n routers have been sold for several years, for most of that time there was no agreed upon standard!
    So if you'd like help, first, what router do you have and have you checked the vendor site to see that it has the latest firmware?

  • Problems with Discoverer Viewer and the printable page

    Hi,
    I have a problem in Discoverer Viewer. I run a workbook, see the results and I click on "Printable Page". I set the page setup options to "Portait" and "100% scale". I preview the workbook in a PDF file and it's ok, I see the results in "Portait" and "100%".
    I close the PDF file and I click again on the "Printable Page". This time, I set the workbook to "Landscape" and "20% scale". I preview the workbook in a PDF file and it's NOT ok, the results are still in "Portait" and "100%". And the date/time in the workbook is the time when I run the workbook the first time. So, it's seems like a browser cache problem. The problem repeats until I clear the brower cache. At that moment, the workbook will take the page setup that I set at this time. However, it will be the same workbook with the same results until I clear the cache once again.
    If I save the PDF file on my Windows Desktop and I overwrite it each time, it's ok.
    Can somebody help me on this??
    Thank you!
    Mathieu

    Hi Michael,
    I'm clearing the browser cache by going in Tools -> Internet Options. In the "General" tab, I click on the "Delete files..." in the "Temporary Internet Files" section" (middle of the window).
    But I don't indicate that Discoverer is saving my printable page changes. I say that the first time I run a workbook, Discoverer saves it (the results) in the "Temporary Internet Files" folder in a PDF file. Each time I run the same workbook after that, Discoverer don't overwrite the file in the "Temporary Internet Files" folder. He takes the PDF file that is already there and show it to me. So, the results are the same even if the data has changed. It does this until I clear the browser cache (it deletes the PDF file in the "Temporary Internet Files" folder).
    Do you understand?
    Regards,
    Mathieu

  • Time Capsule Connectivity Problem with Airport Utility and Mavericks

    I have a Time Capsule from 2011 which worked perfectly with my IMac and Airport Utility 5.6.1 but since the upgrade to Mavericks, I cannot get it to work with Airport Utility. Any help much appreciated. Thanks.

    When you say.....
    I cannot get it to work with AirPort Utility....
    What does not work?  Can you open up AirPort Utility and  take us through the steps? What happens after each step?

  • Problems with photo view and email

    My iphoto has started acting very badly. When I click on a thumbnail to view a photo, I often get a big grey area with an X in it. And the email photo feature won't work anymore. I click email, it starts to process it and then nothing. this is pretty serious because I use iphoto to store and organize all my pics.
    I am using version 6.0.6

    Marty
    Is that an X or a ! ? Folks usually report an !
    The ! or ? turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    The most common cause of this is User Activity in the iPhoto Library Folder in the Finder.
    Have you altered, moved or renamed anything in the iPhoto Library Folder?
    If you haven't, then try rebuilding the database. Hold down the apple and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose the top three options.
    If that fails you may have a damaged db file.
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new library:
    Note this will give you a working library with the same Rolls and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library on your desktop and find the Originals folder. From the Originals folder drag the individual Roll Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Regards
    TD

  • Connection problems with Magic Mouse and handoff

    I did a clean install of 10.10.3 and since then the Magic Mouse has had problems connecting. First it wouldn't pair. After a few reboots and repeated attempts I was able to pair the mouse with the rMBP. After waking from sleep it now no longer connects. I select the mouse in the Bluetooth menu and connect. Connection appears on the screen, but the mouse doesn't respond. After a few moments I get Connection Lost on the screen.
    In addition to the mouse problems I have completely lost any hand off capability to or from the iPhone to the rMBP or back. It's like the Bluetooth connection between the devices is not working or is too weak to function.
    It would be very much appreciated if any one has any suggestions on the cause or to a solution.
    Thanks.

    Hey Tom,
    NVRAM and PRAM are, while technically different, effectively the same. Newer systems utilize NVRAM to store the same information that was stored in PRAM on older Macs.
    On older Mac computers, similar information was stored in Parameter RAM (PRAM). Resetting NVRAM on Intel-based Macs using the same key combination is like resetting PRAM.
    How to Reset NVRAM on your Mac
    https://support.apple.com/en-us/HT204063
    Cheers,
    Allen

  • Problems with materialized view and fk between two db

    Hi,
    i have two databases db1 and db2 and from db1 is a table(DM_MESSDATEN) which contains a foreign key to a table(DM_FAUNA) in db2.
    Now I want to write my done steps to get more clearification and hopefully someone can point out my wrong steps.
    1st
    i create the tables inside db1 without a foreign key to the table in db2.
    2nd
    i create a database link inside db1 to db2
    create public database link DATENBANK2 connect to phantomas identified by bachelor06 using 'DMDB2';
    3rd
    now and here i stuck want to create a materialized view inside db1
    create materialized view DATAMART_MVW AS
    select * from DM_MESSDATEN, DM_FAUNA@DATENBANK2
    where DM_MESSDATEN.FAUNA_ID=DM_FAUNA.FAUNA_ID;
    or should the view be created inside of db2?
    4th
    and then i want to reactivate the foreign key inside the table of db1- but can't because of
    problems in step 3 :(
    So it would be nice if someone could help me
    thanks a lot
    thomas

    I think you haven't been clear in your statement of your problem:
    now and here i stuck want to create a materialized view inside db1Why are you stuck? If you want to enforce a froeign key locally using data from a remote database then you need to build a materialized view on your local table tablespace that sucks data across from the remote database. You can then create a foreign key on your local table using the local MV.
    If the remote table is updated frequently and you want the local MV kept in sync then you will need to put soem further replication in place. For instance you may need to create a materilaized view log on the remote database.
    Cheers, APC

  • Connection problems with PALM TX and WRT160N router

    I purchased a WRT160N wireless router. My computers connected with no problems, but when I attempted to connect my Palm TX I ran into a bunch of problems. At first the Palm would not even find the network. I eventually was able to configure the router so that the Palm can now find the network, but it still will not connect. I have removed the security from the network and rebooted both with no luck. I read that I am supposed to set the type to b/g mixed, frequency to 40 mghz, the wide channel to 6 and the other channel to 8. I was able to set the b/g mixed, the frequency to 20, the wide channel defaults to 3 (I cannot change this) and the other channel to 8. Any ideas?

    Changing Router to b/g Mixed fixed the problem.
    I had the same trouble. I've been trying to connect my Palm TX to my brand new Linksys WRT160N for a day and a half. Tried EVERYTHING....SSID Broadcast on/off, WEP, WPA, Security all off, nothing helped. I just switched the router settings to B/G Mixed. The TX connected immediately.
    B/G will be fine, even though the router's optimum performance is N. My broadband operates at 25Mbs. 802.11g has a transfer rate of up to 54Mbs where N is well over 100. "G" will easily keep up with my internet's best speed. And I can still Wi-Fi with my TX at 802.11b (11Mbs).
    I can temporarily switch to "N" if I ever want to transfer huge amounts of data between my "N" Laptop and my Desktop PC.
    Message Edited by mgordonb on 12-16-2008 06:25 PM

  • Connection problems with FCE HD and a Canon XL1

    I just can not get the system to see the camera so I can capture. I have an external Firewire drive as my scratch disc. Any advice? Thanks!

    Ian & Tom, First of all thanks for your ideas and quick replies, I really appreciate it.
    I'm using a (Belkin) FW hub but have re-routed things so the camera is going directly to one of the computer's two FW ports. Have tried all suggestions provided in your posts but the best I'm able to get is a message that reads, "Unable to initialize video deck. You may still use Capture Now." When I go to capture mode, however, no controls are usable and it says, "not communicating."
    Tom, I went to System Profiler and am not seeing the Canon. My computer has two FW ports and I'm only seeing the hub (and not the camera plugged into the other port). What's strange is that the hub is showing an "unknown device" but there's not an unaccounted for device plugged into the hub. I've tried the camera in both of the computer's FW ports to no avail. I'm guessing that's the weak link.
    Regarding full system info...
    - PowerMac G4, dual 1.27 GHz PowerPC
    - OS X 10.4.10
    - FCE HD 3.5.1
    - EZ Quest external FW drive
    - Canon XL1 (but my material was shot with a Panasonic DVX 100A, I'm just using the older Canon to capture for editing to save wear on the Panasonic's playback deck -- but the Panasonic connects just fine)
    Any other info needed? You guys totally rock for trying to help me with this -- good karma!

  • Connection problems with idea pad and public network

    My Lenovo Idea Pad connects fine at home on our ATT internet connectoin, but will not connect to a local public network at a local departent store.  Anyone having suggestions email me at xxxxxxxxxxxxxx  Thank you!\
    Richard
    Moderator note; e-mail address removed to stop the spambots getting it

    I just saw your post and I resolved this on mine for my wired connection. I'm willing to bet that the issue is the same for wireless. Here's what I found.
    Issue:
    During the installation, iTunes installs some network components related to mobile device support over ethernet(Apple Mobile Device Ethernet Service - netaapl.inf). At the same time, according the logs, the install process removed OEM18.inf. This almost exactly coincided with the time that I saw the network connection die (preceded it by a few seconds).
    Basically, iTunes appears to be removing a required network component.
    Resolution:
    After installing iTunes and the network connection breaking, remove the network device from Device Manager and allow Windows to reinstall it automatically.
    The following instructions are for Windows 7, but they are close enough to follow for other versions of Windows.
    1. Click the Start button (Jewel in Vista and Win7).
    2. Right-click Computer and click Manage in the menu that appears (type your password or click Yes if prompted).
    3. On the left side of hte Computer Management window, click Device Manager.
    4. Click the arrow (or plus sign) next to Network Adapters to expand that section.
    5. Right-click your network adapter and click Uninstall in the menu that appears.
    6. Click OK.
    7. Reboot.
    Windows should automatically detect and reinstall your network device on boot.

  • Connection problems with ESA C160 and WSA S160

    currently I have deployed ESA C160 and WSA S160 devices in a network but I cannot remotely connect to the devices.
    I have installed Cisco 2811 Terminal server with octal cable connections and cannot seem to get terminal access.
    As well I have connected the Management Interface to a local switch and provisioned VLANs on subnet 192.168.42.X to allow for access but no connection seems to work to gain access to the devices.
    I am wondering if there is a specific cable configuration or connection which will allow me access to the applicances for configuration.
    Any help is appreciated!

    HI
    Are you attempting a remote connection to the serial ports via 2811? I may be missunderstanding your post.
    The serial ports are 9600 Baud 8N1.  Typically you will use a null modem cable for the connection.
    For the network you should be able to connect to the manamgement interface  SSH and HTTPS should be enabled by default. If you connect directly to this port using a crossover cable can you establish a connection?
    If the network connection is failing I would first start with the serial port so you can verify that the configuration is as you expect it to be, meaning the IP address and services enabled. If everything checks out in the configuration. I would next test using a crossover cable on the same subnet. If that works then I would connect the appliance to a switch and test from there. The biggest questions that come up are can you route to the appliance over the network and can you resolve the host over the network.
    Christopher C Smith
    CSE
    Cisco IronPort Customer Support

Maybe you are looking for

  • Some questions on the 5800 GPS

    Hi folks i am debating at the moment whether to upgrade from my N95 to a N95 8GB or the lovely 5800, i prefer the symbian OS so im glad to stay with these two phones. now i had tomtom 6 working fine on my N95 and i know it will work ok on the N95 8GB

  • Desktop freeze on user load- only spotlight icon appears

    I've got a problem with my main user load up. When I log in, my desktop picture (background) appears and then the spotlight icon top right but NOTHING else. The finder freezes and I can't access anything- all I can do is force a power-down and login

  • Is it possible to replace my W520 screen with new IPS version?

    My W520 laptop continues to give good reliable service. \ However I now look with envy the latest versions that use IPS screens. This is important to me as I am a pro photographer. I would like to know if is possible to upgrade/replace my existing sc

  • How for J. sakes do i use the MIC + 5.1 se

    I have a medusa headphones with headset The 5. works but the top mic jack on the XI-FI Music will NOT work. The only way any mic works is on a 2 speaker setup and using the lower mic jack. But that aint the way im paying 00+ bucks. And btw wheres my

  • Canon Printer suddenly won't print pdfs

    All of sudden it won't print pdfs. It will print from Pages, Textedit etc but if I try and Print a PDF I get a Canon Error Number : 94 A paper size that cannot be fed from the cassette was selected. Load paper in the auto sheet feeder, and press the