Handling RICH TEXT content on BI publisher report

Hello,
I have requirment where I have to handle RICH TEXT content, and show data in report with RICH TEXT formating.
The RICH TEXT content(with tags) is comming from database CLOB column. Here is the sample XML data.
<?xml version="1.0" encoding="UTF-8" ?>
- <DATA_DS>
- <G_1>
<ID>1</ID>
<RICH_TEXT_DATE>'<p' class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-line-height-alt: 1.15pt">'<span' style="FONT-FAMILY: Arial Narrow,sans-serif; mso-bidi-font-family: bold; Tahoma">'<font' size="3">Testing data for rich text '</font'>'</span'>'</p'></RICH_TEXT_DATE>
</G_1>
</DATA_DS>
Report Output should be below with all the formating:-
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-line-height-alt: 1.15pt"><span style="FONT-FAMILY: Arial Narrow,sans-serif; mso-bidi-font-family: bold; Tahoma"><font size="3">Testing data for rich text</font></span></p> <p></p>So, how to get above output with all formating, Please let me you soultions.
I am using, Oracle BI Publisher desktop version 11.1.1.5
Thanks in advance.
San.

https://blogs.oracle.com/xmlpublisher/entry/html_in_xml_support
http://docs.oracle.com/cd/E23943_01/bi.1111/e22254/create_rtf_tmpl.htm#CHDCEEIJ
Rendering HTML Formatted Data in a Report : <BR/>  are not being parsed

Similar Messages

  • Open xml relationship target is NULL when inserting chart into a mapped rich text content control in Word 2013

    Hi,
    I have a word document with a rich text content control that is mapped to a CustomXml. You can download an example here
    http://1drv.ms/1raxoUr
    I have looked into the specification ISO/IEC 29500-1:2012 and i understand that the attribute Target for the element Relationship can be set to NULL at times(Empty header and footer in the specification).
    Now, i have stumbled on Target being NULL also when inserting a diagram into a word document. For example:
    <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/oleObject"
    Target="NULL" TargetMode="External" xmlns="http://schemas.openxmlformats.org/package/2006/relationships" />
    Why is Target="NULL" and how should i interpret that Target is null?
    Br,
    /Peter
    Peter

    Hello Peter,
    The relationship in question is associated with the externalData element (ISO/IEC 29500-1:2012 §21.2.2.63). For the other two charts in this document, the corresponding relationships are of the other allowable form:
      <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/package" Target="../embeddings/Microsoft_Excel_Worksheet1.xlsx"/>  <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/package" Target="../embeddings/Microsoft_Excel_Worksheet2.xlsx"/>
    For charts 1 and 3 in your document, the data can be edited via the Chart Tools ribbon control. The option to edit data is not available for chart 2. The data used to create chart 2 is the same default spreadsheet data used for chart 1, and in fact the spreadsheet
    references are still present in the file format, despite there being no apparent link to a spreadsheet for chart 2.
    Thus, it appears that Target="NULL" in this context means that the chart is not associated with an external data source. The specification doesn't have much to say about the semantics of the Target attribute (ISO/IEC 29500-2:2012 §9.3.2.2) beyond
    the fact that it be a valid xsd:anyURI, which the string "NULL" is.
    It looks like there is some unexpected interaction between the chart and the content control. I don't think the file format is the issue. You will probably need to pursue that behavior from the product perspective via a support incident, if that behavior
    is unexpected. If you still have questions about what is seen in the file format, please let me know.
    Best regards,
    Matt Weber | Microsoft Open Specifications Team

  • Automatically inserting rich text content control

    I have many word .docx forms which I would like to convert to a form which can be filled in with Reader.  The word forms presently would be like ...we [name of parties] desire to enter into...
    I would like to have a program which automatically finds the brackets and inserts a rich text content control box and then inserts whatever is within the brackets for the placeholder wording.
    Can this be done and if so, is it code in XML or am I totally off my rocker?
    Thanks

    Hi Peter,
    According to the description, you are using OPCHelper converting the Word document into byte. As far as I know, the OPCHelper is a third-part class, I suggest contact the vendor to get more effective response.
    For this issue, did you want to retrieve byte data from the Office package? And based on my understanding, the office document support Open XML format is a zip. We can directly get the data from the zip package via
    GZipStream.
    Hope it is helpful, and if I misunderstood please feel free to correct me.
    Regards & Fei 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Word 2010 Copy Rich Text Content Control

    I am working on a Word 2010 template that links to another word document to copy information from Rich Text Content Controls.  I am able to copy values between RTF controls but losing the rich text formatting - only text is copied over.
    Any Suggestions on how to copy between rich text controls and still preserve the formatting?
      Set sourceCCs = sourceDoc.SelectContentControlsByTag(sourceCCTag)
        If Not (IsNull(sourceCCs)) Then
            For Each sourceCC In sourceCCs
                Set editCCs = editDoc.SelectContentControlsByTag(editCCTag)
                If Not (IsNull(editCCs)) Then
                    For Each editCC In editCCs
                        If appendText Then
                            'editCC.Range.Text = editCC.Range.Text & vbCrLf & sourceCC.Range.Text
                            editCC.Range = editCC.Range & vbCrLf & sourceCC.Range
                        Else
                            'editCC.Range.Text = sourceCC.Range.Text
                            editCC.Range = sourceCC.Range
                        End If
                    Next
                End If
            Next
        End If
    Thanks in advance

    Try something along the lines of:
      Set sourceCCs = sourceDoc.SelectContentControlsByTag(sourceCCTag)
      If Not (IsNull(sourceCCs)) Then
        For Each sourceCC In sourceCCs
          Set editCCs = editDoc.SelectContentControlsByTag(editCCTag)
          If Not (IsNull(editCCs)) Then
            For Each editCC In editCCs
              With editCC.Range
                If appendText Then
                  .InsertAfter vbCr
                  .Collapse wdCollapseEnd
                End If
                .FormattedText = sourceCC.Range.FormattedText
              End With
            Next
          End If
        Next
      End If
    Cheers
    Paul Edstein
    [MS MVP - Word]

  • Word 2013 - Bulleted list inside rich text content control

    Hi,
    I'm mapping a rich text content control to an xml node within my custom xml.
    While i'm in design mode i try to format the text so that it will be a numbered list.
    One thing that i noted though was that the numbers are placed outside the content control. This is only my first observation.
    The thing is, the rich text(RTF) that is saved within the custom xml is later used to populate a second document. This works great except for one small issue. The numbered list is not showing up within the second document.
    Would appreciate any help i can get with this issue.
    Br,
    /Peter
    Peter

    Hi Peter
    This is tricky, because...
    By default, when you insert a new RichText content control it will not include the paragraph mark for the paragraph it's in. Numbering is a paragraph-level formatting.
    If you work in Word, you can see this. Turn  on the display of non-printing characters (the backwards P button in the "Home" tab of the Ribbon). Insert a RT content control and observe where the paragraph mark (backwards P) is in relation to the
    CC's boundaries. Now press ENTER and observe that the paragraph mark is WITHIN the CC. Apply number formatting and you'll see that it's NOW inside the CC.
    You can do this the other way around: apply the numbering then press ENTER. Again, it should now be within the CC.
    This behavior is by-design. I would guess that lists the users type would have more than entry, so the numbering will be within the CC range when the custom XML is extracted?
    Cindy Meister, VSTO/Word MVP,
    my blog

  • Print PDF rich text editor using BI Publisher

    Hi !
    I have a CLOB field from database, and I store data using a rich text editor, like a MS Word system, here as you know, I can write words in bold format, use differents kind of colors, etc... and use all formatted text that the editor allow me. I haven't problems once save this data into table and restore again, I can see all this data formatted , and I don't loose any property of this formatted text.
    The problem is when I want print this information in the same way that I can see in the rich text editor. I use BI Publisher for generate a PDF, when I send this field for print a PDF, the PDF that BI publisher generate, print only text, prints all characters including generating that text is formatted, for example, if the field is written in bold print "<b>hello</b>" in the PDF generated by BI Publisher see "< b. > hello < / b>".
    Please which is the way for print the same as is displayed in the rich text editor?
    Thanks in advance.
    Edited by: Almogaver on 07-mar-2011 14:35
    Edited by: Almogaver on 07-mar-2011 14:35
    Edited by: Almogaver on 07-mar-2011 14:36
    Edited by: Almogaver on 07-mar-2011 14:37

    Bump Again. I understand how to remove the HTML tags, thats not a problem. The problem is getting the report to print the data from a Rich Text Field stored in a CLOB or NCLOB as formatted text. Is there a "Master Style Template" or "Master Rich Text Field Subtemplate"?
    Richard

  • How to send a mail with rich text content like using outlook

    Hi All. I have a serious problem. When we send the mail from
    outlook express or yahoo, we can send the mail with the text appearing
    in the mail with bold font , with different colors, underlined etc.
    If i type this kind of text in any word processor and mail that content through java mail then the message should be received by the recepient with all that bold,color and underlines etc as it is. Can anybody please help me in this case ASAP.

    Go to this site and download the htmlArea Javascripts. Embedd them in your HTML and it will turn your normal HTML Text Area into Rich Text Area. Your real code will include all HTML tags. For example if you select some text and make it bold , the real HTML output will look like <B>YOUR TEXT </B>. So i guess your recipient should be able to receive HTML contents.
    http://www.interactivetools.com/products/htmlarea/

  • Rich text prevents formatting of a report

    We are using Crystal Reports Basic 2008 (bundled with VS200*). I have a rather complex report that is used to print a batch of purchase orders. The report includes several subreports that are printing a single rich text field. These are used by our users to attach customized comments to the document.
    Sometimes the documents will not format. We get the dreaded "report could not be submitted for background processing" message.
    I have reviewed the troubleshooting document found [here|http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/50a6f5e8-8164-2b10-7ca4-b5089df76b33?quicklink=index&overridelayout=true]. It does not seem that any of the suggestions indicated are applicable to my situation. I tried the untested solution of adding "WhilePrintingRecords" to all the formulas that would let me, but that didn't help.
    I have a sample document where I can break the document by simply removing a blank line in the rich text. Adding the blank line back fixes the formatting. In working with our customers, we are finding that a change to vertical whitespace can fix the error, but it takes trial and error to figure out which comment on which document fixes the report. This is especially troublesome when the report is a batch that includes 100s of purchase orders. In those cases, we have had to resort to individually submitting each document then fixing the handful that won't process on their own.
    I don't know where to go from here. Any suggestions that others could provide would be appreciated.

    I've got three suggestions;
    1) Make sure you are using SP 1 for CR 10.5. SP 1 is here:
    https://smpdl.sap-ag.de/~sapidp/012002523100009351512008E/crbasic2008sp1.exe
    msi is here;
    https://smpdl.sap-ag.de/~sapidp/012002523100010010692008E/crredist2005_sp1_x86.zip
    2) See if you have the same issue with CR 2008. You can download eval of CR 2008 from here;
    http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    If CR 2008 works, you have two options;
    a) Upgrade to CR 2008
    b) Create a phone case at the link below and discuss the issue with a technical support rep. It may be that this is an issue that will need to be resolved by QA / R&D for CR 10.5. Be aware that a solution for a fix (any version of CR) may take 6+ months...
    3) If CR 2008 does not work, create a phone case and submit the report with saved data to the technical support rep for testing and possible submission to QA / R&D for a fix.
    Link to a phone case submission;
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300
    Ludek

  • Rich text is showing up on report but bulleted List is not coming as expected.

    Hi there,
                 I am using SSRS 2008, I export all of my reports to Word, I have created a report on which i am having a table. each placeholder has mark-up type as "HTML -Interpret HTML Tags as Styles".
    I am fetching some rich text from DB and showing it on my page. but when rich text is having some data like below..............
    Suppose this the
    Rich text copied from WORD document . And there are some nested bullet lists as well here. Check how it is showing up in report.
    1.   
    This is FIRST item
    a.   
    FIRST SubItem1
    i.    3<sup>rd</sup> Level
    b.   
    FIRST SubItem1
    i.    3<sup>rd</sup> Level
    2.   
    This is SECOND Item
    a.   
    SECONd SubItem2
    b.   
    SECONd SubItem22
     the data on my report comes like below...... 
    Suppose this the
    Rich text copied from WORD document . And there are some nested bullet lists as well here. Check how it is showing up in report.
    1.    This is FIRST item
    a.    FIRST SubItem1
    i.    3rd Level
    b.    FIRST SubItem1
    i.    3rd Level
    2.    This is SECOND Item
    a.    SECONd SubItem2
    b.    SECONd SubItem22
     i.e spaces are not coming(DB text is having many &nbsp; but report is not picking them), the List is coming one below other without any indentation.
    Urgent help needed!
    Thanks
    Shaikh Sadaf

    Hi Shaikh,
    The issue is because the web browser's job is to compress multiple sequence space characters into one and therefore all of the leading spaces are removed.
    In HTML placeholder, it should be design.
    To workaround the issue, we can add one more character at the begin of the multiple sequence space. We can add one more calculated  field to do so:
        1. Double-click the dataset.
        2. Go to "Fields" page.
        3. Click "Add" >> "Calculated Field"
        4. Type a filed name, then in the "Field Source", type the following expression:
             =Replace(Fields!originalHTMlField.Value, ">&nbsp;", "><font color=""white"">.</font>")
             NOTE: This expression replaces each first space with a character ".", and set the color to be white(suppose the report's backgroup color is white too. Then, in the report, it seems there is nothing.)
        5. Now, use this new field in the report, and set its Markup type to be "HTML - Interpret HTML tags as styles".
    The multiple sequence space will be displayed as expected.
    Sure, this is just a workaroud. We can submit a feedback at
    http://connect.microsoft.com/sql. If this service requests frequently, the prodcut team may find a way to fix this issue.
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • Rich text field will not show proper font attributes! (Bug? - RTF OTF font handling)

    I created two text form fields (rich text)...
    In Windows 7, Write program (using it to format the rich text content)... I edited my two lines.
    Line one: mix of two font sizes and a few attribute changes... pasted into the first text field perfectly.
    Line two: similar to the above... pasted into the second text field but the font is appearing in bold! It is not bold in the source, nor is it preset in the text field properties! I even pasted it back into Write AND Word and it pastes as I intended it.
    Why is Adobe doing this? I even tried to toggle >Text Style > bold on/off, clear formatting... these functions do not work!
    If I bring up the properties toolbar (Ctrl-E), bold is toggled on but I cannot toggle it off, I can add underline, I can change the font size.
    UPDATE: It seems that Adobe Acrobat is NOT reading the OTF font correctly! If I change to a different font, in the same family, the problem changes from set on bold to set on italics!
    It is specifically related to the font I am using but is ONLY a problem when using Rich Text fields. In other words, the entire font family works perfectly if I inserted a text box or use the font family in any other Adobe product.
    I have submitted a bug report: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&loc=en

    Another possibly revealing clue is that when I go to Text Field Properties > Appearance tab > Text / Font, I see the entire family of this particular font. However, when editing the text in the properties toolbar (Ctrl-E), only a small sub-set of this font family appears and the attributes behave in an odd manner. Example: normal font appears as italics but if I switch on BOLD, the italic attribute is gone... and other strange attribute problems.

  • Rich Text Box Issue - Expand to show all Text

    Hi everyone
    I'm having a pretty frustrating issue with the rich text box when viewing a line item (not when editing the item, but viewing the item)
    I want my rich text box to expand with the text, which I have changed in the options on InfoPath with the "Expand to show all text" scrolling option. However, in IE, the table row will expand, but the actual rich text box will not and I'll have
    a scroll bar there and you cant see all of the text at one time. If I look in Chrome, then it works the way I want and I can see all of the lines of text that were entered into the rich text box.
    The only solution for IE to work correctly is to change the Display settings to "Enable enhanced rich text content...". But the big issue with that is now you can no longer highlight the text (the highlight disappears right after highlighting it),
    and the users will need to copy text from the text box, so it renders the "enhanced" rich text box useless for us
    It's kind of a lose-lose situation that I'd love to find the solution for

    I guess a better solution would be how can you highlight text from an enhanced rich text box, because changing these to "rich text box" gets rid of font colors in the pre-existing data.
    The original problem was that they couldn't highlight text unless they went into edit mode

  • Urgent help needed in Rich Text Functionality in BSP (Bold, Italic, etc)

    The standard Appraisal BSP (HAP_DOCUMENT) displays the documents in a plain text box
    Scenario - Standard  BSP application HAP_DOCUMENT for appraisals provides users to input in plain text boxes (htmlb textedit)
                    However, there is requirement to support rich text (bold, italicised, underline etc) for these text boxes. Basically, there are 3 aspects to  this scenario
    1. Enable these plain textboxes with rich text editor
    2. Store the rich text contents of text  boxes in Database table
    3. Convert and display the data stored in db table as rich text.

    Note that the previous reference to tokens only applies if the field is a Multiline text field. Regular fields can't change their font or display based upon mapping data.

  • When reading the Rich Text present in Excel column using open XML its taking it as plain text

    Hello All,
    When i am reading excel columns using open Xml in C# everything is working fine except the column that
    contain Rich Text (ex: bold, italic,color,size). Its reading the Rich Text content as plain text. As we know for Rich Text in open XML we get the text as Runs (C#
    object) which contains the text as value and rpr as run properties. I have also written the code to convert Runs to html. But the issue is that for some Rich Text format its reading it as Runs but most of the Rich Text its reading it as plain text.
    The issue i am getting is, for some rich text its creating RUN and for some of the rich text its not creatingRUN.
    Let me give the example for more understanding:
    Suppose i have two cells in excel which contains the below text.
    1. Rich Text
    1
    2. RichText
    2
    Now when i read these cells using the below code
    var stringTable =spreadsheetDocument.WorkbookPart.GetPartsOfType<SharedStringTablePart>().FirstOrDefault();
    if (stringTable.SharedStringTable.ElementAt(index1).ChildElements.GetItem(0).GetType().Name == "Run")
    Custom code to convert Rich text to HTML...
    else
    Read the plain text...
    Though both the cell contains rich text, one is going in RUN block and one is going in Plain text bloc.
    Also, one thing that i have noticed is when i use standard color for text its consider it as RUNS and when i use color apart from the standard color it does not consider it as RUNS. Same behavior occurs for different combination of text viz. bold, italic, underline
    etc

    Hi Ejaz,
    This forum is for software developers who are using the Open Specification documentation to assist them in developing systems, services, and applications that are interoperable with Microsoft products. The Open Specifications can be found at:
    http://msdn.microsoft.com/en-us/library/cc203350(PROT.10).aspx. Since your post does not appear to be related to the Open Specification documentation set, we would appreciate it if
    you could try to post your question in a more relevant forum. Thank you.
    Open XML Format SDK
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=oxmlsdk&filter=alltypes&sort=lastpostdesc
    Josh Curry (jcurry) | Escalation Engineer | Open Specifications Support Team

  • Rich text versus plain text when sending to Outlook

    I've notice some strange behavior with Mail today. I've been sending some attachments to people who use Outlook on an Exchange server. When I send the mail in Rich Text Format, they receive the mail but the text and the signature are included as attachments as well. This is not the case if I send the same message with no attachment. Also, if I change the message format to Plain Text, the mail appears normal both with and without the attachment.
    Does anyone have a similar issue? Are there any know solutions? I'd really prefer to use RTF vs. Plain Text.
    Cheers,
    Barry
    Message was edited by: BAField

    Read the attached link and the link to the microsoft site to better understand what may be happening.
    http://docs.info.apple.com/article.html?artnum=304245
    If the attachment is plain text it should not be sent as a windows friendly attachment.
    If the attachment is recognized as having rich text content it should be sent a as a windows friendly attachment.
    The linked Microsoft document in the attached link has a Common Scenarios section which shows the Solution settings for Outlook based on the Problem experienced by the recipient.

  • XML Publisher Report - Invalid character was  found in text content

    Hi Techies,
    Version Background
    Oracle apps : 11.5.10
    Oracle 9i Database
    Oracle Reports 6i
    I created a XML output type concurrent program and attached a data definition & template to it.
    My program completed with status "Warning".
    The Error is : An invalid character was found in text content.
    Then i downloaded the XML and opened it in notepad++. I found there are 2 weird characters like this ( , )
    FYI, It is a non-Ascii character so not able to paste it in this forum text field. the characters looks like double sided arrow and a forward arrow.
    I also tried loading the XML locally from RTF Template. Again it throws me same error
    Error No: -1072896760: An invalid character was found in text content.
    Additional Information:
    Data is coming from table "gl_alloc_batches.description"
    Encoding Type: UTF-8
    Please Help me how to handle such a non-ascii characters
    Edited by: 868779 on Feb 22, 2012 10:48 PM

    Hi,
    Please find below sql which will find the special characters in column of table,
    SET serveroutput ON size 1000000
    DECLARE
    PROCEDURE gooey (v_table VARCHAR2, v_column VARCHAR2)
    IS
    TYPE t_id IS TABLE OF NUMBER;
    TYPE t_dump IS TABLE OF VARCHAR2 (20000);
    TYPE t_data IS TABLE OF VARCHAR2 (20000);
    l_id t_id;
    l_data t_data;
    l_dump t_dump;
    CURSOR a
    IS
    SELECT DISTINCT column_name
    FROM dba_tab_columns
    WHERE table_name = v_table
    AND data_type = 'VARCHAR2'
    AND column_name NOT IN ('CUSTOMER_KEY', 'ADDRESS_KEY');
    BEGIN
    FOR x IN a
    LOOP
    l_id := NULL;
    l_data := NULL;
    l_dump := NULL;
    EXECUTE IMMEDIATE 'SELECT '
    || v_column
    || ', '
    || x.column_name
    || ', '
    || 'dump('
    || x.column_name
    || ')'
    || ' FROM '
    || v_table
    || ' WHERE RTRIM((LTRIM(REPLACE(TRANSLATE('
    || x.column_name
    || ',''ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789@#$%^&*()_+
    -=,!\`~{}./?:";''''[ ]'',''A''), ''A'', '''')))) IS NOT NULL'
    BULK COLLECT INTO l_id, l_data, l_dump;
    IF l_id IS NOT NULL
    THEN
    FOR k IN 1 .. l_id.COUNT
    LOOP
    DBMS_OUTPUT.put_line ( v_table
    || ' - '
    || x.column_name
    || ' - '
    || TO_CHAR (l_id (k), '999999999999')
    DBMS_OUTPUT.put_line (l_data (k));
    DBMS_OUTPUT.put_line (l_dump (k));
    DBMS_OUTPUT.put_line ('*********************');
    END LOOP;
    END IF;
    END LOOP;
    END gooey;
    BEGIN
    gooey ('GL_ALLOC_BATCHES', 'DESCRIPTION');
    END;
    Thanks,
    Amogh

Maybe you are looking for

  • A665 - S5183 - Question about the ending warranty

    Hello, I have a Satellite A665-S5183 with Intel SB Chipset SATA problem.  Of course laptop works fine, no performance problems... i'm not using e-sata port so nothing has happened. But it was left 4 days of laptop warranty and 4 days to return laptop

  • Bugs in the new 3D graph (LV 8.6)

    I already posted this report in the Breakpoint board, breaking the rules... Therefore this is not exactly a duplicate post, since it should allow some discussion. I just downloaded LV 8.6, as I could not wait to have a look at the new long time await

  • Is there a way to expand all the options in the accordion menu?

    I would like to have all the tabs in the accordion menu expanded. Is there a setting or button to have all the options expanded? Thanks.

  • Error in "Create iPod or iPhone version" take 2

    Apologies: an unfinished version of this question was inadvertently posted a few minutes ago. A slip of the finger. Again, sorry. In the Advanced pull-down menu, there is an option, "Create iPod or iPhone version," presumably for making video on the

  • Control Plane Policy not allowing ssh on my 3825 router

    I have complaints for a downstream customer trying to connect to my network. He is the only one connecting to hosts via ssh. He is showing up hitting the 3rd party (Mcaffee Sidewinder Firewall) between the 2 Cisco 3825 routers but with the bytes stri