Custom Alert Email Templates Issue - List Alerts emails not using customized XML alert template

I have recently customized the XML alerts template (AlertTemplates.xml) for our site collection in SharePoint 2010 to exclude specific fields in the email when users who have subscribed to a list using the "Alert Me" feature.  I
have renamed the custom alerts XML file and loaded the custom template in the following directory (%ProgramFiles%\Common Files\Microsoft Shared\Web server extensions\14\TEMPLATE\XML) and
restarted IIS.  Once users subscribe to the alerts using the list using the "alert me" function they received the customized email as intended. 
We needed to auto-subscribe users to the email alerts so what I did was used a powershell script to add users to the alert subscriptions using the script shown in below:
Import-Csv D:\Temp\filename.csv | ForEach-Object{
$webUrl=$_.WebUrl
$listTitle=$_.List
$alertTitle=$_.AlertTitle
$subscribedUser=$_.SubscribedUser
$alertType=$_.AlertType
$deliveryChannel=$_.DeliveryChannel
$eventType=$_.EventType
$frequency=$_.Frequency
$oldAlertID=$_.ID
$web=Get-SPWeb $webUrl
$testAlert = $web.Alerts | WHERE { $_.ID -eq $oldAlertID }
IF ($testAlert) {
$web.Alerts.Delete([GUID]$oldAlertID)
Write-Host Old alert $oldAlertID deleted. -Foregroundcolor Cyan
$list=$web.Lists.TryGetList($listTitle)
$user = $web.EnsureUser($subscribedUser)
$newAlert = $user.Alerts.Add()
$newAlert.Title = $alertTitle
$newAlert.AlertType=[Microsoft.SharePoint.SPAlertType]::$alertType
$newAlert.List = $list
$newAlert.DeliveryChannels = [Microsoft.SharePoint.SPAlertDeliveryChannels]::$deliveryChannel
$newAlert.EventType = [Microsoft.SharePoint.SPEventType]::$eventType
$newAlert.AlertFrequency = [Microsoft.SharePoint.SPAlertFrequency]::$frequency
if($frequency -ne "Immediate"){
$AlertTime=$_.AlertTime
$newAlert.AlertTime=$AlertTime
$newAlert.Update()
Write-Host Created $newAlert.Title for $subscribedUser . -Foregroundcolor Cyan
} ELSE {
Write-Host Alert $alertTitle for $subscribedUser already done. Moving on. -Foregroundcolor Magenta
When I ran the script and added the users and restarted the service, all users who were auto-subscribed via this method would get the email without the customizations that were done in the custom template.  All users who manually subscribed to the list
using the "Alert Me" function would get the customized email. 
Does anyone know why users who manually subscribe would get the custom email alert and why users who were auto-subscribed using the powershell script do not get the custom email alert?

Hi  ,
According to your description, my understanding is that users who were auto-subscribed using the PowerShell script do not get the custom email alert.
For your issue, it can be caused by the auto-subscribed alert email which is generated by PowerShell script is  using OOTB alert template. You can add the following script into your script for setting
the alerts’ alert email template:
$contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$AlertsTemplateCollection =new-object Microsoft.SharePoint.SPAlertTemplateCollection($contentService)
$newAlert.AlertTemplate = $AlertsTemplateCollection["YOUR_UNIQUE_TEMPLATE_NAME_VALUE"]
Reference:
http://sadomovalex.blogspot.com/2012/03/one-problem-with-updating-alert.html
Thanks,
Eric
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
contact [email protected]
Eric Tao
TechNet Community Support

Similar Messages

  • Email Alert Template Issue - List Alerts (Alert Me) emails not using customized XML alert template

    We have recently customized the XML alerts template (AlertTemplates.xml) for our site collection in SharePoint 2010 to exclude specific fields in the email when users who have subscribed using the "Alert Me" feature. We have renamed the
    custom alerts XML file and loaded the custom template in the following directory (%ProgramFiles%\Common Files\Microsoft Shared\Web server extensions\14\TEMPLATE\XML) and restarted IIS.  Once users subscribe to the alerts using the list "alert me"
    function they received the customized email as intended.
    We needed to auto-subscribe users to the email alerts so what we did was use a powershell script to add users to the alert subscriptions using the script shown below:
    Import-Csv D:\Temp\filename.csv | ForEach-Object{
    $webUrl=$_.WebUrl
    $listTitle=$_.List
    $alertTitle=$_.AlertTitle
    $subscribedUser=$_.SubscribedUser
    $alertType=$_.AlertType
    $deliveryChannel=$_.DeliveryChannel
    $eventType=$_.EventType
    $frequency=$_.Frequency
    $oldAlertID=$_.ID
    $web=Get-SPWeb $webUrl
    $testAlert = $web.Alerts | WHERE { $_.ID -eq $oldAlertID }
    IF ($testAlert) {
    $web.Alerts.Delete([GUID]$oldAlertID)
    Write-Host Old alert $oldAlertID deleted. -Foregroundcolor Cyan
    $list=$web.Lists.TryGetList($listTitle)
    $user = $web.EnsureUser($subscribedUser)
    $newAlert = $user.Alerts.Add()
    $newAlert.Title = $alertTitle
    $newAlert.AlertType=[Microsoft.SharePoint.SPAlertType]::$alertType
    $newAlert.List = $list
    $newAlert.DeliveryChannels = [Microsoft.SharePoint.SPAlertDeliveryChannels]::$deliveryChannel
    $newAlert.EventType = [Microsoft.SharePoint.SPEventType]::$eventType
    $newAlert.AlertFrequency = [Microsoft.SharePoint.SPAlertFrequency]::$frequency
    if($frequency -ne "Immediate"){
    $AlertTime=$_.AlertTime
    $newAlert.AlertTime=$AlertTime
    $newAlert.Update()
    Write-Host Created $newAlert.Title for $subscribedUser . -Foregroundcolor Cyan
    } ELSE {
    Write-Host Alert $alertTitle for $subscribedUser already done. Moving on. -Foregroundcolor Magenta
    When we ran the script and added the users and restarted the service, all users who were auto-subscribed via this method get the email without the customizations that were done in teh custom alert template.  All users who manually subscribed on their
    own to the list using the "Alert Me" function would get the customized email.
    Does anyone know why users who manually subscribe to the alerts get the customized email, and users who were auto-subscribed using the powershell script do not get the customized email and get the standard generic email template?

    Hi  ,
    According to your code, it create a new alert using SPUser.Alerts.Add() method. For this method, it will create a new alert based on the predefined alert template by default.
    If you only assigned the custom alert template to the list, users who manually subscribe to the alerts get the customized email, but users who were auto-subscribed using the PowerShell script get the standard
    generic email template.
    For your issue, you can set the new alert ‘s alert template:
    http://social.technet.microsoft.com/Forums/en-US/1b19c12f-fc37-48cf-8b59-6c09f095dc23/custom-alert-email-templates-issue-list-alerts-emails-not-using-customized-xml-alert-template?forum=sharepointgeneralprevious
    Here is a good blog you can have a look:
    http://blogs.msdn.com/b/sharepointdeveloperdocs/archive/2007/12/07/customizing-alert-notifications-and-alert-templates-in-windows-sharepoint-services-3-0.aspx
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • Why when I try to update certain app it require an old email address and password I have not used for years and I do I get to update them on my new details

    Why when I try to update certain app it require an old email address and password I have not used for years and I do I get to update them on my new details

    Apps are tied to the Apple ID that was used to purchase them and you will always need to use that ID and password in order to update them.
    Saying that you do get to update them on your new details makes no sense at all.

  • OSB11g: Issue with nodemanager nmConnect after using custom keystore

    Environment: OSB 11g ( 4 manages servers in cluster, 1 admin server)
    Issue:
    For interacting with Paycorp payment gateway, we have used custom identity and trust keystore. For that we have made changes in admin server and all managed servers in Keystore tab (in admin console) and added PaycorpPKI credential mapper in security realms -> myRealm -> Providers -> Credential Mapping.
    Things are working fine for OSB code as we are able to connect to secured paycorp gateway by doing these steps.
    BUT by doing these changes, the nodemanager command nmConnect('weblogic','welcome1','x.x.x.x',5556,'MyOSBDomain') is not able to connect to node manager.
    The exception is:
    wls:/offline> nmConnect('weblogic','welcome1','x.x.x.x',5556,'MyOSBDomain')
    Connecting to Node Manager ...
    <18/04/2011 4:46:26 PM EST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <18/04/2011 4:46:26 PM EST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <18/04/2011 4:46:26 PM EST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <18/04/2011 4:46:26 PM EST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <18/04/2011 4:46:26 PM EST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <18/04/2011 4:46:26 PM EST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <18/04/2011 4:46:26 PM EST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <18/04/2011 4:46:26 PM EST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <18/04/2011 4:46:26 PM EST> <Warning> <Security> <BEA-090476> <Invalid/unknown SSL header was received from peer hostname-osb - x.x.x.x during SSL handshake.>
    Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 123, in nmConnect
    File "<iostream>", line 646, in raiseWLSTException
    WLSTException: Error occured while performing nmConnect : Cannot connect to Node Manager. : [Security:090476]Invalid/unknown SSL header was received from peer hostname-osb - x.x.x.x during SSL handshake.
    nodemanager.properties file
    DomainsFile=/hta/vha/opt/app/osb11R1/wlserver_10.3/common/nodemanager/nodemanager.domains
    LogLimit=0
    PropertiesVersion=10.3
    javaHome=/usr/jdk/instances/jdk1.6.0_21
    AuthenticationEnabled=true
    NodeManagerHome=/hta/vha/opt/app/osb11R1/wlserver_10.3/common/nodemanager
    JavaHome=/usr/jdk/instances/jdk1.6.0_21/jre
    LogLevel=INFO
    DomainsFileEnabled=true
    StartScriptName=startWebLogic.sh
    ListenAddress=
    NativeVersionEnabled=true
    ListenPort=5556
    LogToStderr=true
    SecureListener=false
    LogCount=1
    StopScriptEnabled=false
    QuitEnabled=false
    LogAppend=true
    StateCheckInterval=500
    CrashRecoveryEnabled=false
    StartScriptEnabled=true
    LogFile=/hta/vha/opt/app/osb11R1/wlserver_10.3/common/nodemanager/nodemanager.log
    LogFormatter=weblogic.nodemanager.server.LogFormatter
    ListenBacklog=50
    We did following steps to resolve this issue but in vain
    S1. Changed Type to 'Plain' from 'SSL' in Machines -> osbMac01 -> Node Manager
    S2. Changed SecureListener=true to SecureListener=false in nodemanager.properties
    S3. kill the nodemanager and then start.
    I guess there is some configuration in nodemanager.properties file that is creating this issue. Can anyone help with the same?
    Thanks,
    Sameer
    Edited by: sameer h on Apr 18, 2011 7:09 PM

    SecureListener=falseYou have turned off secure listener for node manager, hence it will accepting 'plain' requests only and cant handle ssl handshakes
    nmConnect('weblogic','welcome1','x.x.x.x',5556,'MyOSBDomain')Here you have left the 6th parameter to nmConnect as blank. The default in this case will be ssl and nmConnect is excepting ssl handshake response back from nodemanager, but nm cant reply ssl because it is not enabled.
    Solution
    1) Turn on Secure Listener = true. Then you can use this exact syntax for nmConnect.
    2) Keep secure listener to false. use nmConnect() with all 6 parameters
    nmConnect([username, password], [host], [port], [domainName], [domainDir] [nmType])
    Pass 'plain' for the nmType attribute
    Refer: http://download.oracle.com/docs/cd/E13222_01/wls/docs91/config_scripting/reference.html#1030962

  • Using LDAP in 9.3.1, I can got the user list but can not use their password

    Hey guys, I need your help.
    I am using msad for Shared Services External Authentication.
    I configurate the msad successfully.
    And I could find the user in local domain. But I can not use their password in workspace.
    That mean's I could find the user in local domain and do the provision job.
    But I can not use their password in localdomain to login on workspace.
    Is there any thing I missed when configurate the Shared Services?
    Need your help.

    you may have trouble -
    if password use NATIONAL character, such letters like (я ч ъ ю )
    if user, who's have access from SS to AD under "NATIONAL" folder
    p.s. my settings for AD
    Name: NTLM Domain NAME
    Hostname: x.x.x.x
    Port: 389
    Base DN: DC=NAME,DC=domain suffix
    User DN: CN=user_name, CN=Users Catalog
    Login: sAMAccountName
    Email: mail

  • Is it possible to use an XML Data Template to create a report in APEX?

    Hi,
    I have created an XML Data Template in BI Publisher passing one parameter and running two queries, then created an RTF Document Template to present the data.
    I can create a nice report in BI Publisher using the two elements. I have used RTF Document Templates to publish reports in APEX but the data comes from a Report region running a single query.
    I would like to run a report based in this kind of XML Data Template, in order to use several children queries related to a parent query. Is it possible to do it in APEX, or you have to use BI Publisher?
    Francisco
    ===========================
    Below is a simple data template definition:
    <dataTemplate name="cotizacion_template" description="Prueba de data template para cotizaciones" dataSourceRef="dbxprts">
         <parameters>
              <parameter name="p_id_cotizacion" dataType="character" defaultValue="1009" include_in_output="true"/>
         </parameters>
         <dataQuery>
              <sqlStatement name="header_query">
                   <![CDATA[select id_cotizacion, fecha_cotizacion, id_clipro from f_cotizaciones where id_cotizacion = :p_id_cotizacion]]>
              </sqlStatement>
              <sqlStatement name="detail_query">
                   <![CDATA[select id_cotizacion as id_cot_child, id_detalle_cotizacion, partida, cantidad, id_producto from f_detalle_cotizaciones where id_cotizacion = :id_cotizacion]]>
              </sqlStatement>
         </dataQuery>
         <dataStructure>
              <group name="F_COTIZACIONES" source="header_query">
                   <element name="ID_COTIZACION" value="ID_COTIZACION"/>
                   <element name="ID_CLIPRO" value="ID_CLIPRO"/>
                   <element name="SUMA_CANTIDAD" value="F_DETALLE_COTIZACIONES.CANTIDAD" function="SUM()"/>
                   <group name="F_DETALLE_COTIZACIONES" source="detail_query">
                        <element name="PARTIDA" value="PARTIDA"/>
                        <element name="CANTIDAD" value="CANTIDAD"/>
                        <element name="ID_PRODUCTO" value="ID_PRODUCTO"/>
                   </group>
              </group>
         </dataStructure>
    </dataTemplate>

    Hi,
    I have the similar question. I used data templates in BI Publisher but now I want to use the same data template in Apex to print some reports.
    I tried to some examples but these were only using report queries. I also tried with the Web Service but this didn't work for me either maybe because I didn't
    used it in the right way. When I used the WS I received the binary of the report so the WS worked it was just the how and where to use it that didn't work for me.
    Now this older entry is BUMPED maybe we find a solution for our problem this way.
    regards,
    Steven

  • Any standard report to list material codes not used in a given period?

    Is any way (std report or) to find the list of material which are  not used(means they r nt involved in sales,planning ,production or purchase) for a given period?
    Thanks
    Varun papneja

    Hi Varun
    The list of mateirals that are not consumed in a number of days can be viewed by t.code MC46. I hope this will solve ur problem
    Chandra

  • How can I send emails to a list of email addresses using mail merge  feature in Microsoft Word for Mac? It would work with the power pc but not with macbook Air

    I want to send an email and personalize it to several contacts. I could always do it with my old Power PC using Microsoft Office Word for Mac but cannot access my emailoption when I use the Macbook Air. Anyone have a solution??

    No way for us to know for sure (without similar product/issues) but the
    HP Support site suggests that with the current Mavericks OS X 10.9.x
    their drivers should be available through Apple Software Updates:
    http://h30434.www3.hp.com/t5/Mac-Printing-and-Scanning/HP-Product-Support-using- Apple-Software-Updates-for-new-OS-X/td-p/3086229
    However that may be limited to certain models of printers or scanners that
    already had been known to be working under OS X as of that date in a
    prior OS X (such as 10.8.5, 10.7.5, 10.6.8, etc) with earlier product support.
    •Drivers and Downloads for Printers, Scanners, & More - HP Support:
    http://www8.hp.com/us/en/drivers.html
    A link to Mac OS X Support's List Printer & Scanner software (HP+ Other)
    •OS X: Printer and scanner software available for download
    HP Officejet t65 All-in-One Printer
    {According to this page, your old printer has only Windows & Linux drivers
    but you may or may not look into third-party driver support through such
    sites as Gimp; though unlikely to be available with Mavericks, or Yosemite}
    •HP Support Forum - Home:
    http://h30434.www3.hp.com/psg/?lang=en&cc=us
    You may be able to get a deal on a new printer as they are rapidly obsoleted.
    PS: edit to add... there was a Gutenprint driver reference for T65 Printer here:
    Mac OS X 10.5: Included printer drivers
    Yet a driver for ancient Leopard 10.5.x may not be suitable for Mavericks 10.9.x
    but the Gutenprint lead may be helpful to locate whatever may exist; or not.
    https://www.google.com/?gws_rd=ssl#q=gutenprint+mavericks
    Good luck & happy computing!
    edited

  • AOL email connectivity issue - Sends but does not receive

    I have 2 AOL email accounts on my Droid X.  Up until Thursday, I had no issue receiving emails to both addresses.  Suddenly on the Thursday my default account kept indicating connectivity issues with the account.  The other AOL account worked perfectly. 
    I can still send from default AOL account and they are received, but I am not able to receive any email into this account.  I tried to forwarding these email addresses to my gmail account.  But gmail is not receiving emails from either account.
    Any suggestions?

    SHAC wrote:
    This is amazing!
    i didn't know people still used AOL mail LOL 
    Time Warner took over AOL and allowed customers to retain their AOL accounts to minimie the headache of converting everyone...  
    Now to the ones having issues, have you tried contacting AOL and make sure they are not transferring or updating a server, because usually when they do this it can effect some accounts but not other just as you have discribed. They may require a new port entered or even pop, imap or smtp access information.  Drop them a call and verify incoming and outgoing addresses.

  • Performance issue in Webi rep when using custom object from SAP BW univ

    Hi All,
    I had to design a report that runs for the previous day and hence we had created a custom object which ranks the dates and then a pre-defined filter which picks the date with highest rank.
    the definition for the rank variable(in universe) is as follows:
    <expression>Rank([0CALDAY].Currentmember,  Order([0CALDAY].Currentmember.Level.Members ,Rank([0CALDAY].Currentmember,[0CALDAY].Currentmember.Level.Members), BDESC))</expression>
    Now to the issue I am currently facing,
    The report works fine when we ran it on a test environment ie :with small amount of data.
    Our production environment has millions of rows of data and when I run the report with filter it just hangs.I think this is because it tries to rank all the dates(to find the max date) and thus resulting in a huge performance issue.
    Can someone suggest how this performance issue can be overcome?
    I work on BO XI3.1 with SAP BW.
    Thanks and Regards,
    Smitha.

    Hi,
    Using a variable on the BW side is not feasible since we want to use the same BW query for a few other reports as well.
    Could you please explain what you mean by 'use LAG function'.How can it be used in this scenario?
    Thanks and Regards,
    Smitha Mohan.

  • How to get the list of data providers used in a web template?

    I want to find a quick way to retrieve the list of data providers defined in the <object> tag in the Web template. One awkward approach is to parse the entire HTML page for <object> then filter out "DATA_PROVIDER: xxx".
    But is there any method or function call to retrieve the list quickly?
    Thanks!

    Try the function below, pass the item name and get the Data provider for that particular item, you will have to do this for all the items in the template.
    function getDPName(item){
         prop = SAPBWGetItemProp(item);
         var tableHidden=true;
         if (prop != null){
           for(i=1;i<prop.length;i++){
             if (prop<i>[0] == "DATA_PROVIDER")
                   return prop<i>[1]
           }//end for
         }//end if
    }//end function
    Thanks.

  • I'm having trouble sending bigpond email from my iPhone 5 when not using wifi at home???

    I need help setting up my bigpond email on my new iPhone 5 please. I can send emails when I'm at home using my wifi, but when I'm away from home I can't send bigpond emails? Help!

    Will anything on this page help:
    http://go.telstra.com.au/helpandsupport/-/email-settings-summary

  • Java tries to load it's console. I load it Firefox does not use it and alerts to restart.

    Firefox tries to start. I get a window that the selected website cannot be found. Then update window pops up showing various versions of JAVA needs to be loaded. I allow them to be loaded. When Firefox then starts after loading JAVA Consoles window pops up and says JAVA is not used by firefox and prompts to restart firefox deleting JAVA. This goes on constantly
    Operating System: Windows XP Service Pack 3, Firefox 3.6.8 browser

    You can delete old versions of Java Consoles:<br/>
    http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions

  • Web Module App not using custom login page.

    Iu2019ve created a simple Web Module Application that I wish to use a custom login page for authentication.  From previous posts it looked like this would be easy.  Iu2019ve made the changes below and have redeployed my application.  When the application runs it forwards to the standard SAP login page rather than my login page.  What am I missing?  Thanks in advance.  /Greg
    Web.xml.
    <login-config>
         <auth-method>FORM</auth-method>
         <form-login-config>
              <form-login-page>login.jsp</form-login-page>
              <form-error-page>error.jsp</form-error-page>
         </form-login-config>
    </login-config>

    Moderator message -
    When closing old threads, there is no need to add a comment. Adding a pasted answer like "Resolved ourselves" only brings old threads to the top of the forum list and pushes current ones down. If you do add a comment, please indicate just how the problem was resolved.
    Rob

  • HTML Frames not using custom scrollbar in Flex 3 mx:HTML

    I've been working on an app that uses a custom skin in Flex 3. The app has a help window. The help contains an HTML with frames. Problem is, the main app vertical scrollbar custom skin is being ignored for the HTML Frames scrollbar (what looks like the classic version of Halo - maybe). This only happens with frames. It happens no matter how or where I place my HTML or HTMLLoader. If I dont have frames the custom scrollbar is used. Is there a node im missing in my skin css (obviously not VScrollBar or ScrollBar - the two standard used by Flex)? or some other way to connect the HTML Frames scrollbar to my custom skin.
    I'm not a noob but not an expert.
    Thanks.
    See attached image for example.

    Take the code of the jsp file :
    <%@ page language="java" %>
    <%@ taglib uri="WEB-INF/struts-html.tld" prefix="html" %>
    <html>
       <head>
         <title> First Struts Application </title>
       </head>
         <body>
            <table width="500" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td> </td>
            </tr>
            <tr bgcolor="#36566E">
              <td height="68" width="48%">
                <div align="left">
                  <img src="images/hht.gif" width="220" height="74">
                </div>
              </td>
            </tr>
            <tr>
             <td> </td>
            </tr>     
           </table>
           <html:form action="Lookup"
                      name="lookupForm"
                      type="wiley.LookupForm" >
           <table width="45%" border="0">
            <tr>
              <td>Symbol:</td>
              <td><html:text property="symbol" /> </td>
            </tr>
             <tr>       
              <td colspan="2" align="center"><html:submit/> </td>
             </tr>       
            </table>              
          </html:form>
         </body>
    </html>

Maybe you are looking for

  • Application not working after migration

    Hi, An application developed in HTMLDB Version-2.0 is migrated to a new server with version-2.2. Few links like edit (to edit rows) are not working. What could be the reason

  • My Podcast is no Longer in the directory...did I do something wrong?

    I have had some problems with my feed and have only been updating my podcast about once per month but I can no longer find my podcast: South Mississippi Music Sampler in the directory. I also need to change my feed to smms.libsyn.com/rss but am not s

  • My 5d Mark III raw files are showing up as CRAW2 not CR2?!

    I have tried resetting my camera settings to default, formatting the CF cards, using multiple card readers...nothing is working and I can't seem to find any information on what a CRAW2 file is. I have also tried using a DNG converter to convert the f

  • How do you restore iCal calendars in Time Machine

    I recently updated to iCloud from Mobile Me and when I opened iCal I noticed that the Mobile Me calendars and the iCloud Calendars were the same, so I deleted all my Mobile Me calendars and to my horror realized after reopening iCal that all the cale

  • Notification commands in MDM visio workflow

    Hi Folks I have a doubt about a feature or command in SAP MDM 7.1 for SP10 package to fetch a field in MDM. Can someone help me in using the command  %Code=Name% Regards Shifali