Smart tunnel used for access other than native application?

Dear all,
i have a question about smart tunnel. my situation is, i need to  access to the server on certain IP address that using a port (example : port 5007) that is native for the application. that application is customized application just for my company.
Question is :
1. can i use smart tunnel to access the application for that particular port (ex : port 5007, 8476) ?
2. i have so many grup servers (other than group server A) with so many costumized application with native port . is there any other way for me to access to that IP without using smart tunnel? because this project requirement is
Clientless application access using application/Agent in user's PC, such as RDP, SSH & Native Application and ohers.
Group Server A
IP                                     Port
10.194.24.99
5007, 80, 9593, 9594, 9595
10.194.22.99
82
192.9.1.99
23, 449, 8470, 8476, 9470, 9476, 992
My ASA is 9.1.3 and my ASDM is 7.1.3
Please kindly to help, any reponse i appreciated
source : http://www.cisco.com/c/dam/en/us/solutions/collateral/enterprise/design-zone-security/tunnel.pdf

See http://www.mozilla.org/projects/netlib/PortBanning.html
* http://kb.mozillazine.org/network.security.ports.banned.override

Similar Messages

  • I am getting this message "This address uses a network port which is normally used for purposes other than Web browsing. Firefox has canceled the request for your protection." I know the site it's mine so I need to access it.

    Note I also need to be able to install an active x feature.

    See http://www.mozilla.org/projects/netlib/PortBanning.html
    * http://kb.mozillazine.org/network.security.ports.banned.override

  • When I enter the mac address of my HT Rec'r in the address field I get the following error: This address uses a network port which is normally used for purposes other than Web browsing. Firefox has canceled the request for your protection.

    Need to access the receiver to set up internet radio. Followed instruction in receiver owner's manual

    See:
    * http://www.mozilla.org/projects/netlib/PortBanning.html
    * http://kb.mozillazine.org/network.security.ports.banned.override

  • Why can't you use PipedXputStream in other than threaded application

    I have need for usage of these in a non-threaded application, however the Javadoc indicate this should not be done.
    "Attempting to use both objects from a single thread is not recommended, as it may deadlock the thread."
    As the Java community is composed of some brilliant people, I am curious as to why any limitation of this sort has not been fixed/addressed?
    What is the root cause of these deadlock situations?
    Thanks in advance.
    Steve

    899559 wrote:
    I have need for usage of these in a non-threaded application, however the Javadoc indicate this should not be done.Because using streams in a single thread makes no sense, since you can just use method calls. And that avoids the situation were you could be trying to write more than the stream buffer can hold or trying to read more than you wrote to the stream.
    data = getData();
    outPipe.write(data);
    data = inPipe.read();
    doSomethingWith(data);
    // is just a roundabout way of coding
    doSomethingWith(getData());

  • Opening multiple reports in Crystal Reports for VS causes database connect limit to be reached.  Seems to be no way to force Crystal Reports to close database connection (other than exiting application)

    I am working on upgrading an application that has been in use for many years.  The application is written in VB6 and I have been tasked with upgrading the current application to Crystal Reports for Visual Studio.  I am using Crystal Reports for VS Version 13.0.12.1494.  The system's database is a Sybase SQL Anywhere 16 database with an ODBC connection using integrated login.  Each of the reports has the database connection set up from within the report.  There is only once database server, so each of the reports are pointing to the same DB.  The database server is currently installed as a "Personal Server" with a limit of 10 connections. 
    I have implemented the CR viewer as part of a COM-callable wrapper that exposes a COM interface for VB6 to interact with.  Inside of my viewer component is a Winform that embeds the Crystal's Report viewer.  The COM interface basically maps the basic Crystal apis to methods that the VB6 can call (i.e., Load Report, Set Field Text, Update SQL Query, etc).  This architecture is working as designed and the reports are displaying correctly and responding correctly to changes in queries, etc.
    The issue is that after I open 9 reports, the tenth one will respond with an error indicating that the database connection limit has been reached.  The database connections used by the reports aren't released until after the application is closed.  The application is designed for a secure environment that prohibits the non-administrative user from accessing the systems desktop, so asking the user tor restart the application after 10 reports isn't a viable option.
    I have checked and database connection pooling is turned off for the SQL Anywhere 16 driver.
    I have been digging on this for a few days and have tried adding code in the FormClosed event to close and dispose of the Report Document as follows:
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    reportDoc.Close();
    reportDoc.Dispose();
    GC.Collect();       // Force garbage collection on disposed items
    I have also tried the following (as well as maybe 20 or so other permutations) trying to fix the issue with no success.  
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    foreach (Table table in reportDoc.Database.Tables)
         table.Dispose();
    crystalReportViewer1.ReportSource = null;
    reportDoc.Database.Dispose();
    reportDoc.Close();
    reportDoc.Dispose();
    reportDoc = (ReportDocument)crystalReportViewer1.ReportSource;
    GC.Collect();       // Force garabe collection on disposed items
    Any ideas or suggestions would be greatly appreciated.  I have been pulling my hair out on this one!

    Hi Ludek,
    Thanks so much for the quick reply.  Unfortunately I did not have time to work on the reporting project Friday afternoon, but did a quick test this morning with some interesting results.  I'm hoping if I describe what I'm doing, you can show me the error of my ways.  This is really my first major undertaking with Crystal Reports.
    If I simply load the report, then close and dispose, I don't hit the limit of 10 files.  Note that I do not logon manually in my code as the logon parameters are all defined within the reports themselves.  The logon happens when you actually view the report.  Loading the report doesn't seem to actually log in to the DB.
    What I did was create a very simple form with a single button that creates the WinForm class which contains the Crystal Viewer.  It then loads the report, sets the ReportSource property on the CrystalReportsViewer object contained in the WInForm and shows the report. The report does show correctly, until the 10 reports limit is reached.
    The relevant code is shown below. More than I wanted to post, but i want to be as complete and unambiguous as possible. 
    This code displays the same behavior as my earlier post (after 10 reports we are unable to create another connection to the DB).
    // Initial Form that simply has a button
      public partial class SlectReport : form
            public SelectReport()
                InitializeComponent();
            private void button1_Click(object sender, EventArgs e)
                ReportDocument rd = new ReportDocument();
                ReportForm report = new ReportForm();
                try
                    rd.Load(@"Test.rpt");
                    report.ReportSource = rd;
                    report.Show();
             catch (Exception ex)
                  MessageBox.Show(ex.Message);
    // The WinForm containing the Crystal Reports Viewer
        public partial class ReportForm : Form
            public ReportForm()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
                this.crystalReportViewer1.RefreshReport();
                this.FormClosed += new FormClosedEventHandler(ReportForm_FormClosed);
            void ReportForm_FormClosed(object sender, FormClosedEventArgs e)
                ReportDocument rd;
                rd = (ReportDocument)crystalReportViewer1.ReportSource;
                rd.Close();
                rd.Dispose();
            public object ReportSource
                set { crystalReportViewer1.ReportSource = value; }
    Again, any guidance would be greatly appreciated. 

  • Report on PO's raised for vendors other than fixed vendor

    Hi
    Is there any report which gives list of PO's which are raised for vendors other than fixed vendors
    We are maintaining sourcelist
    we need a helath report which gives list of POs in which buyer used other than fixed vendor
    Thanks

    hi,
    In sap there is no one common report availlable for this. you want to develop a customized report for this.alternate solution is  get the one time vendor list in MKVZ trx. pass the values in me1l trx where you can get the desired result.
    Regards,
    velu

  • TS3297 iTunes puts up a message "The item you've requested is not currently available in the Hong Kong Store." I had not requested anything from the HK store at that point, and I have never used any store other than the HK one. How I can clear that messag

    I've been running iTunes on WinXP for years with few problems.  I have all my iTunes files on an external USB drive. I just bought a new PC running Win7, 64-bit.
    I connected the external USB drive to the new PC and installed 64-bit iTunes on it. When iTunes started up, I pointed it at the iTunes directory in the external drive, using Edit > Preferences > Advanced > iTunes Media Folder Location. It showed a progress bar that it was updating the iTunes Library. I signed in and authorized the new machine. I have one spare authorization.
    Then iTunes put up a message "The item you've requested is not currently available in the Hong Kong Store." I had not requested anything from the HK store at that point, and I have never used any store other than the HK one.
    When I click OK, the iTunes Store page remains blank, apart from saying "iTunes Store" in the middle of the page.
    I went to "View My Account" and pressed the Reset button to "Reset all warnings for buying and downloading items", but that doesn’t fix this particular warning. I also tried Edit > Preferences > Advanced > Reset Warnings and Rest Cache.
    But still, every time I click the “App Store” button in the iTunes Store window, the message appears. If I click the Books, Podcasts or iTunesU buttons, these display normally.  So I’m stuck with being unable to purchase apps, other than through my iPad and iPhone.
    If I move the external drive back to the XP machine, the same thing happens.  If I go to another PC - a notebook running Vista - everything is normal.
    Any idea how I can clear that message?
    Thanks for any help you can offer.

    Further info on my question above.
    I have tried re-validating my credit card, which apparently fixed it for some. 
    I have also tried uninstalling, re-downloading and installing again.
    Neither of these steps fixed the problem.

  • Are there any other flash players that you can use on Safari other than Adobe

    Are there any other flash players that you can use on Safari other than Adobe?

    Not as far as I am aware.
    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS The latest version, 10.2.152.25 or later, is for Intel Macs only, as Adobe no longer support the PPC platform. Note that the latest Flash Player update only works on YouTube with Safari in 32 bit mode - until YouTube correct this.

  • Why do PDF's offset use decimal system other than Hex?

    Hi,
    I  found PDF format's byte offset in xref table using decimal system other than hex ,so I feel it which is really special because many file format use hex offset,e.g. tiff,PE,etc.
    so I want to know why PDF format's byte offset choose to use decimal system?
    Thanks!

    Not a known problem. And the "already launched" problem points to an issue with Reader.
    Please submit some samples with a bug report for Reader to debug.
    Here is what the issue looks like (click to zoom) :
    On the left side is the PDF file opened with no other instances of Adobe Reader open. On the right side is what the exact same file looks like when opened after another instance of Reader (displaying another PDF file) was already open.
    It's as if the font rendering engine was incapable of multi-threading. Like Reader can only render the font properly if the PDF file in question is the only one it's got in RAM.
    Worth noting :
    Opening a 2nd PDF file with distorted fonts does not affect the first open PDF. That one continues to display normally. Only every subsequent instance of Reader will have this issue.
    Files were saved normally via Photoshop CS5, although this issue has been present for at least 2-3 versions if not more (only started saving PDF's around that time - it's quite possible this was ALWAYS an issue).
    This is strictly a SCREEN RENDERING ISSUE. The PDF file prints to paper just fine with uncorrupted fonts no matter how it looks on-screen.
    As mentioned earlier in the thread, this happens across multiple computers. Whether I create the PDF via Photoshop CS3 in WinXP or via Photoshop CS5 in Windows 7 on a completely different computer... it will have the same issues. Tried it at work, too -- miles away from home. Same issues. Graphic cards are also from different makes, and display the same issue.
    This happens to every single font in the document, regardless of how common or obscure a font it is. In this case, it's Helvetica Neue.
    Again, because this important : even if the fonts look distorted on-screen, they will print out on paper just fine. This is a screen rendering issue.
    Default PDF settings, no layers, vector data non-rasterized.
    Hope this helps.

  • Can Adobe Collage be used for images smaller than the standard 1200 by 789?

    Can Adobe Collage be used for images smaller than the standard 1200 by 789?

    Hi,
    * Photoshop Touch does have very good text capabilites.
    * For opening the Collage as an Artwork (Merged layer) in Photoshop Touch, you just need to upload the Collage file to Creative cloud and import it directly into Photoshop Touch.
    But if you are looking to preserve all the layers of the Collage file, you should download the Collage file as PSD from Creative Clould and import it in Photoshop Touch as layers.
    * Collage does have canvas scalability, you can extend up the canvas on all the four directions. But i think in you case you are looking for having specific custom sizes of the canvas, which is not currently available in Collage. Currently you cannot shrink the canvas below the default canvas size.
    Hope this is helpful. Please do revert back if you have more queries.
    -Subbi

  • What is the main use of domain other than providing technical attributes

    frends let me know what is the main use of domain other than providing technical attributes

    hi RajaReddy,
    Domains are used to
    <b><u>1. specify fixed value ranges.</u></b>
    For eg: <b>status type Char 1</b>, can have fixed values stored in the domain level
    as '1' - Active '2' - retired '3' - terminated '4'- temporary..etc
    <u><b>
    2. Conversion routines are attached at domain level</b></u>
    <u>
    Conversion routine <b>MATN1</b> (connected function modules are CONVERSION_EXIT_MATN1_INPUT
    CONVERSION_EXIT_MATN1_OUTPUT),  is attached for domain MATNR
    <b>3. Value table are atttached at domain level (if fixed value ranges are not mentioned)</b></u>
    for eg: value table mara is attached for Domain MATNR.
    <u><b>
    4. And most importantly, domains can be re-used for multiple data elements, in the same table.</b></u>
    Hope this helps,
    Sajan Joseph.

  • MacBook Pro freezes when using any app other than the web browser.

    My MacBook freezes when using any app other than the web browser. I can open up Google Chrome and use it all day with no problem, but if I minimize it and try to browse through photos in my picture folder or do anything that involves the Finder, the computer just freezes up and I get the rainbow wheel. If I put in a CD to play it, the computer freezes with the rainbow wheel. Any suggestions? I would like to use the mac for more things than the internet.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Aspects for stuff OTHER than logging

    Hi,
    Does anyone out there user AspectJ for anything other than logging concerns? I'm interested

    Hi,
    Does anyone out there user AspectJ for anything other
    than logging concerns? I'm interestedI wonder if the question isn't "Does anyone out there use AspectJ?"
    /k1

  • Hi gurur's in BDC for recording other than SHDB any process is there

    hi gurur's in BDC for recording other than SHDB any process is there

    Hi,
    I think as such there is no other process. You can do the recording through transaction SM35 as well, go there and click on new recording. You can do the recording this way also but this is not different from SHDB.
    Reward if this clarifies your doubt.
    Regards,
    Lalit Kabra

  • Online digital photo printing for site other than apple - how get photos easily onto site for uploading

    Want to use an online digital photo printing site (eg Kodak/Photobox) in conjunction with selection of photos in iphoto.  How do I get the photos from iphoto onto the "other"site?  Drage and Drop does not work.  Obviously not made easy to use a site other than Apple, but the price is better
    ijgsaw1984

    Have you tried these?
    http://www.shutterfly.com/prints/prints?cid=SEGOO.GENRL&mpch=ads
    http://fredmeyer.pnimedia.com/

Maybe you are looking for

  • Video sync help from BB Z10 to Link - Video won't play on PC

    Please help, I am trying to sync my videos that I recorded on my Z10 to my PC using BB Link.  All of my other media files have been fine and I can view them without issue.  When I go to play a video on Link all I get is the sound, no picture.  I have

  • How to get the function name in controller class

    Hi experts , I am new to the OAF framework. i have created the two functions and bot he the function have the same controller class .i want to capture the function name or function id in the controller class. can you please let me know how to get the

  • Upgrading OS...how to reload all drivers and apps?

    I am upgrading my P755-S5395 to Windows 7 Professional.  I plan to put in a new drive and install the OS from stretch.  Instead of downloading, searching and installing each device driver one-by-one, is there a better way to install all the proper de

  • Update Client Certificates on Oracle Identity Federation (SP)

    I need to update the certs on OIF (we are Service Provider's) as my client certificates are expiring soon. I am planning of doing below step to upload new certificates . Please let me know if this is the right way or if i am missing anything here..Pl

  • Building a FTP client

    hi all, i want to build an ftp client using swing. where should i start. i have the ftp rfc with me but that is not helping much, thanx in advance, parminder