GMS 2 and S/MIME?

Hello,
I've activated S/MIME on my iPhone with iOS 8.1.2 and it's not working. When using S/MIME with Thunderbird that uses SMTP/IMAP against GW it works fine.
Is there some special configuration that needs to be performed on the GMS server for S/MIME to work?
Thanks

Andy Konecny <[email protected]> wrote:
> In article <[email protected]>, Alekz wrote:
>> I was able to find information that S/MIME is not supported with GMS.
>> After changing my iOS mail configuration so it uses IMAP/SMTP instead of
>> ActiveSync S/MIME works fine.
>
> What information did you find that says GMS doesn't have the support?
> ActiveSync itself supports S/MIME as does the GroupWise client unless it
> has been actively dissabled. S/MIME is about payload encryption and
> signing that is independant of any transport as per
> http://www.ietf.org/rfc/rfc3851.txt
>
> ... S/MIME is not restricted to mail; it can be used with any
> transport mechanism that transports MIME data, such as HTTP. As
> such, S/MIME takes advantage of the object-based features of MIME and
> allows secure messages to be exchanged in mixed-transport systems.
>
> Can you do S/MIME from your Windows GroupWise client? I can see that if
> it is turned off that GMS might honor that.
> How are your S/MIME over ActiveSync to GMS not working?
>
>
> Andy of
> http://KonecnyConsulting.ca in Toronto
> Knowledge Partner
> http://forums.novell.com/member.php/75037-konecnya
> If you find a post helpful and are logged in the Web interface, please
> show your appreciation by clicking on the star below. Thanks!
Hello
I can't open email sent from iOS if S/MIME is used and I use ActiveSync. If
I switch to SMTP/IMAP then it works fine.
This is quite old:
http://www.novell.com/documentation/...e.html#br7w1q8
4.10S/MIME Not Supported
S/MIME is not currently supported by the Mobility Connector. You can open
encrypted messages in GroupWise, but not on your mobile device.
Same info on this page from 2012:
https://www.novell.com/documentation...4.html#br7w1q8
So my guess it's the same in the latest GMS version.

Similar Messages

  • What is "use SSL" and "S/MIME" mail settings for?

    What is "use SSL" and "S/MIME" mail settings for?

    it has do with encrypting your mail when sent over the web

  • "file -i" and "xdg-mime" reports wrong mimetype for zip files

    If I run "file something.zip" it returns "Zip archive data" as it should, but if I run "file -i something.zip" or "xdg-mime query filetype something.zip" they both return "application/octet-stream; charset=binary" instead of "application/zip; charset=binary".
    I already tried to
    remove /usr/share/mime/mime.cache and ~/.local/share/mime/mime.cache, then run update-mime-database on both folders
    delete the whole ~/.local/share/mime folder
    remove and reinstall mime-types and shared-mime-info
    without any success.
    I hope someone can help me on this because I've ran out of ideas.

    I too got annoyed at those unreliable mime-type inspectors and went searching for a better one that used the command line. I found "perl-file-mimeinfo" which comes with a wonderful script called "mimetype".

  • [svn:fx-trunk] 12871: More new Spark acc impl files were missing svn: eol-style and svn:mime-type properties.

    Revision: 12871
    Revision: 12871
    Author:   [email protected]
    Date:     2009-12-11 15:53:28 -0800 (Fri, 11 Dec 2009)
    Log Message:
    More new Spark acc impl files were missing svn:eol-style and svn:mime-type properties.
    QE notes: None
    Doc notes: None
    Bugs: None
    Reviewer: None
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/ButtonBarBaseAccImpl.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/ListAccImpl.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/TabBarAccImpl.as
    Property Changed:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/ButtonBarBaseAccImpl.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/ListAccImpl.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/TabBarAccImpl.as

  • The content type for office excel 2007 in jsp page and the mime-type in  we

    Hi,
    In my system MS Office 2007 is installed. I am trying to generating excel sheets from JSP page by setting the content type "application/vnd.ms-excel" in jsp page and as well as in web.xml file. I am getting the below message
    The file you are trying to open, 'xxxxxxxx.xls', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do you want to open the file now?
    Then finally the excel file is opening and displaying properly. If in my system MS Office 2003 is installed , then the above message is not coming.
    I have changed the content type according to Excel 2007 <%@ page contentType= "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" %> and in web.xml file the mime type to
    <mime-mapping>
    <extension>xlsx</extension>
    <mime-type>application/vnd.openxmlformats-officedocument.spreadsheetml.sheet</mime-type>
    </mime-mapping>
    even the content type is changed according to office excel 2007 , i am getting the same above message.
    My client is asking not to display the above message. So how to prevent that message ?
    It's very great if any body reply me as soon as possible.

    Hi Akash,
    I am not using the POI. I am generating the excel sheet using the below code.
    <jsp:directive.page import="java.util.Map" />
    <jsp:directive.page import="lehman.ra.Report.ReportDefinition" />
    <jsp:directive.page import="lehman.ra.RAUtilBean" />
    <jsp:directive.page import="java.util.ArrayList" />
    <jsp:directive.page import="lehman.util.GeneralUtil" />
    <jsp:directive.page import="lehman.admin.report.AdminHtmlReportFormatter"/>
    <jsp:directive.page import="lehman.helper.irprod.IRProdHelper"/>
    <%@ page contentType= "application/vnd.ms-excel" %>
    <jsp:directive.page import="java.util.Iterator"/>
    <jsp:directive.page import="java.util.HashMap"/>
    <%
         String strTradeDate = (String) session.getAttribute("TradingDate");
         String sContextPath = request.getContextPath();
         IRProdHelper irHelper     = new IRProdHelper();
         String  sReportFormat  = "E2E";     
         String subtab1 = request.getParameter("subtab1");
         if (subtab1 == null)
              subtab1 ="";     
         Map report_Ids    = (Map) session.getAttribute("ADMIN_E2E_REPORTS");
         AdminHtmlReportFormatter formatter = new AdminHtmlReportFormatter();
         ArrayList contentData = new ArrayList();
         ArrayList headerData  = new ArrayList();
         ArrayList metaData    = new ArrayList();
         Map resultMap            = null;
         String headerString       = "";
         String contentString  = "";
         String reportId            = "";
         int titleSpan         = 5;     
         if( report_Ids!=null && report_Ids.size() > 0){
              Object oReportObj      = null;
              Iterator rowIter = report_Ids.keySet().iterator();
              RAUtilBean raUtilBean = new RAUtilBean();
              ReportDefinition rdef = new ReportDefinition();
              while ( rowIter.hasNext() ){          
                   oReportObj = rowIter.next();     
                   reportId = oReportObj.toString();
                   System.out.println("**************reportId="+reportId);     
                   resultMap  =  (HashMap) report_Ids.get(oReportObj);
                   if(resultMap == null )
                        continue;
                   if(resultMap.size() > 0 ) {
                        contentData          = (ArrayList)resultMap.get(GeneralUtil.CONTENT_DATA);
                        headerData          = (ArrayList)resultMap.get(GeneralUtil.COL_METADATA);
                        metaData          = (ArrayList)resultMap.get(GeneralUtil.METADATA);
                        rdef = new ReportDefinition();                    
                        raUtilBean.setReportAttributes(rdef, headerData, metaData,reportId, sReportFormat);
                        titleSpan = raUtilBean.findMaxCol(contentData, rdef.getDisplayCols());
                        if("51031".equals(reportId)){                         
                             if(resultMap.get("HIDE_ETA")!=null){
                                  boolean hideETA = ((Boolean)resultMap.get("HIDE_ETA")).booleanValue();                              
                                  formatter.setHideETA(hideETA);
                                  if(hideETA){
                                       titleSpan = titleSpan-1;
                        rdef.setMaxCol(titleSpan);
                        headerString = formatter.constructHeadingForE2E(rdef, headerData);
                        contentString = formatter.constructContentForE2E(rdef, contentData, strTradeDate, sReportFormat);
    %>     
    <html xmlns:o="urn:schemas-microsoft-com:office:office"
         xmlns:x="urn:schemas-microsoft-com:office:excel"
         xmlns="http://www.w3.org/TR/REC-html40">
         <head>
         <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
         <meta name="ProgId" content="Excel.Sheet"/>
         <meta name="Generator" content="Microsoft Excel 9"/>
         <link rel="File-List" href="./Test33_files/filelist.xml"/>
         <link rel="Edit-Time-Data" href="./Test33_files/editdata.mso"/>
         <link rel="OLE-Object-Data" href="./Test33_files/oledata.mso"/>
         <link href="<%=sContextPath %>/llehman.css" rel="stylesheet" type="text/css">
         <link href="<%=sContextPath %>/llcontent.css" rel="stylesheet" type="text/css">
         <style>
         <xsl:comment>
         table
              {mso-displayed-decimal-separator:"\.";
              mso-displayed-thousand-separator:"\,";}
         .style0
              {mso-number-format:General;
              text-align:general;
              vertical-align:bottom;
              white-space:nowrap;
              mso-rotate:0;
              mso-background-source:auto;
              mso-pattern:auto;
              color:windowtext;
              font-size:10.0pt;
              font-weight:400;
              font-style:normal;
              text-decoration:none;
              font-family:Arial;
              mso-generic-font-family:auto;
              mso-font-charset:0;
              border:none;
              mso-protection:locked visible;
              mso-style-name:Normal;
              mso-style-id:0;}
         .xl21
         {mso-style-parent:style0;
         color:black;
         font-size:8.0pt;
         font-family:Arial, sans-serif;
         mso-font-charset:0;
         border-top:.5pt solid silver;
         border-right:.5pt solid silver;
         border-bottom:.5pt solid silver;
         border-left:none;}
         .xl24
              {mso-style-parent:style0;
              mso-number-format:"\#\,\#\#0\.00_\)\;\\\(\#\,\#\#0\.00\\\)";}
         .xl25
              {mso-style-parent:style0;
              mso-number-format:0%;}
         .xl26
              {mso-style-parent:style0;
              mso-number-format:"\#\,\#\#0_\)\;\\\(\#\,\#\#0\\\)";}
         .xl27
         {mso-style-parent:style0;
         background-color:#666666;
         color:#FFFFFF;
         font-size:9.0pt;     
         font-family:Arial, sans-serif;
         mso-font-charset:0;
         text-align:left;
         vertical-align:middle;
         border-top:none;
         border-right:.5 pt solid silver;
         border-bottom:.5pt  silver;
         border-left:none;
         mso-pattern:auto none;
         white-space:normal;
         .xl55
         color:black;
         font-size:8.0pt;
         font-weight:700;
         mso-style-parent:style0;
         mso-number-format:"\#\,\#\#0_\)\;\[Red\]\\\(\#\,\#\#0\\\)";
         mso-pattern:auto none;
         font-size:9.0pt;
         font-family:Arial, sans-serif;
         mso-font-charset:0;
         text-align:right;
         border-top:none;
         border-right:.5pt solid silver;
         border-bottom:.5pt solid silver;
         border-left:none;
         .xlDate{
         mso-style-parent:style0;
         mso-number-format:"yyyy\\-mm\\-dd";
         .xlDateTime{
         mso-style-parent:style0;
         mso-number-format:"yyyy\\-mm\\-dd\\ h\\:mm\\ AM\/PM";
         </xsl:comment>
         </style>
         <xml>
          <x:ExcelWorkbook>
           <x:ExcelWorksheets>
            <x:ExcelWorksheet>
              <x:Name><%=subtab1%></x:Name>
              <x:WorksheetOptions>
               <x:ProtectContents>False</x:ProtectContents>
               <x:ProtectObjects>False</x:ProtectObjects>
               <x:ProtectScenarios>False</x:ProtectScenarios>
              </x:WorksheetOptions>
            </x:ExcelWorksheet>
           </x:ExcelWorksheets>
          </x:ExcelWorkbook>
          </xml>
         </head>
    <body text="#000000" style="margin-left:5px;margin-top:5px">
          <table border="0" cellpadding="0" cellspacing="0" width="100%">
              <tr>
                  <td>
                       <table  border='0' cellpadding="0"  cellspacing='0' width="100%">
                             <tr class="xl21">
                                  <td align="left" nowrap style='font-size:11px;' colspan="<%=titleSpan%>"><b><%=subtab1%></b> -  COB  <%=irHelper.formatDate(strTradeDate)%>  </td>
                                  </tr>
                         </table>
                   </td>
                </tr>
                <tr>
                     <td> </td>
              </tr>
    <!-- Report Processing -->
              <tr>
                   <td>
                        <%=headerString%>
                        <%=contentString%>
                   </td>
              </tr>
    <%
                   }//end of if
              }//end of while
         }//end of if report_Ids     
    %>          
         </table>
    </body>
    </html>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Cfcontent IIS and particular mime types

    I have an application this is using flowplayer to play various video files. The video files are passed to flowplayer using a cfm script with the cfcontent tag. What I am finding is that for some file types this process fails; the player hangs and the video doesn't play. An example file type is mp4. The problem is specific to our server running IIS 6. On my local box I have Apache installed and the script works fine for mp4 files. I have the mp4 mime type defined in IIS 6 as "video/mp4" and that is what I use in the type attribute of the cfcontent tag. (I've also tried "video/mpeg" without success.) If I change my process so that I pass the file directly to flowplayer then it plays fine on IIS 6. Here is the basic code I have for providing the file.
    <cfdirectory directory="#fileDir#" action="list" filter="#getAllFileInfoRet.result.file_name#" name="dirFileInfo" />
    <cfif dirFileInfo.recordcount gt 0>
        <cfheader name="Content-Length" value="#dirFileInfo.size#">
    </cfif>
    <cfheader name="Expires" value="Thu, 19 Nov 1981 08:52:00 GMT">
    <cfset tz = GetTimeZoneInfo() />
    <cfset gmtNow = DateAdd("h",tz.utcHourOffset,Now()) />
    <cfheader name="Last-Modified" value="#DateFormat(gmtNow,"ddd, d mmm yyyy")# #TimeFormat(gmtNow,"hh:mm:ss")# GMT">
    <cfheader name="Content-Disposition" value="attachment;filename=#getAllFileInfoRet.result.file_name#">
    <cfheader name="Content-Type" value="#getAllFileInfoRet.result.file_ext_mime#">
    <cfheader name="Cache-Control" value="no-store, no-cache, must-revalidate, post-check=0, pre-check=0">
    <cfheader name="Pragma" value="no-cache">
    <cfcontent deletefile="false" file="#fileDir##getAllFileInfoRet.result.file_name#" type="#getAllFileInfoRet.result.file_ext_mime#" />
    I've tried various combinations of the cfheader tags without having any effect. If anyone has some suggestions or has encountered something similar, I'll take whatever help I can get.

    Hi Adam,
    In the end, the only way that I could get it to work in all browsers was to create a temporary file.  However, the cfheader info was useful, so thanks.
    Michael
    Code I used:
    <cffile action="write"
    file="#GetTempDirectory()#/#varFileName#"
            output="#structDocument.Filecontent#"
    >
    <!--- Output doc --->
    <cfheader name="Content-Disposition" value="#var_content_dis#">
    <cfheader name="Content-Length" value="#var_content_len#">
    <cfcontent type="#var_content_type" file="#GetTempDirectory()#/#varFileName#">

  • (solved) removing gnome-mime-data and chemical-mime-data

    Hi. I  would like to remove gnome-mime-data. I executed the command #pacman -Rs gnome-mime-data. The result warned that chemical-mime-data depends on gnome-mime-data. So I have to execute the command #pacman -Rsc gnome-mime-data to get rid of gnome-mime-data but also of chemical-mime-data. If I remove both do I run the risk of making the entire system crash?
    I have kde installed. I forget to edit /etc/pacman.conf to IgnoreGroup = gnome before running #pacman -Syu. so now I would like to get rid some gnome stuff I found on the system. I have absolutely nothing against gnome. I just want to run only kde.
    Thanks for your attention.
    Last edited by cezarrangel (2014-06-21 13:18:32)

    You don't have to have chemical-mime-data.  You must've install some chemistry related software. 
    Read up mime types so that you're more familiar with them.  Basically, chemistry-mime-data would allow you to double-click a protein databank (pdb) file in a file manager and launch pymol automatically, for example.
    https://wiki.archlinux.org/index.php/De … op_entries

  • GMS and Windows Phones error 80072F7D

    Hello,
    after expiration of old SSL certificates we added wildcard certificate from RapidSSL. iPhones and Android phones are happy with that, but all MS Phones getting 80072F7D error, when trying to sync with GMS. We imported SSL certificate from GMS , even we imported Geotrust root CA and intermediate RapidSSL certificates as separate certificates, but no change at all.
    Someone has same problem ?
    David

    Davidkrotil,
    > DigiCerts says "Congratulations! This certificate is correctly
    > installed."
    And it shows the certificate path with all the intermediate certs?
    Anyway, there seems to be tons of similar errors when googling, but no
    real solutions
    Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Have an idea for a product enhancement? Please visit:
    http://www.novell.com/rms

  • Question: iframe and html mime object

    Friends,
    I am having a very wierd issue.
    In our wda application, we have a view called TC_VIEW. The TC_VIEW has a iframe that is supposed to display a html file from the mimes repository.
    At runtime, I build the url to the mimes html page and then I set it in a context attribute which is bound to the iframes source property.
    When the application loads, the user clicks on a button and reaches the TC_VIEW. The reason I mentioned this is because at this point the users is logged in and can move around in the application. When the TC_VIEW loads in the browser the iframe is asking for a login to be able to view the html file in the mimes repository.
    I was thinking that because the user has already logged in, the iframe should not ask for another login.
    Has anybody faced this problem, any solutions?

    Hi Prashant,
    The content of the iframe runs in a different session. You either need to supply additional login information or use SSO or other means to have a user logged in automatically.
    Best regards,
    Thomas

  • Smart Card and S-MIME

    are any plans to support S-MIME and smart card functionality. We are pertucarly interested to encrypt and decrypt messages via Web Mail. We know that already some other web cliiens (like Lotus iNotes) provide this
    Kind Regards,
    K. Hairopoulos

    There's no current plan to implement S/MIME and SmartCard support for WAC, although we have the technical expertise in-house to do it, I think. Three years ago we implemented a prototype of S/MIME enabled OCS WebMail capable of reading private keys stored on a SmartCard. That project did not turn into product features.
    The big difficulty with implementing and deploying S/MIME is the availability of an underlying public key infrastructure (for public key lookup, for example). IMHO the fact that we don't have S/MIME in Webmail or WAC reflects that OCS customers either don't have the infrastructure or don't require S/MIME beyond SSO. If that assumption is false, and there is a demand for S/MIME enabled WAC, please communicate the need through the usual product management channels.
    Thanks,
    Thomas

  • Image size and mime type.. non-java guy needs help

    Image size, mime type.. non-java guy needs help
    Im not at all familiar with java so this is really weird for me to work out. I?ve been doing it all day (and half of yesterday).
    Im trying to write a custom clodFusion tag in java that gets the width, height, size and MIME types of a given file. I?ve been trying to get it to work on the command line first. I can get the width and height but cant get the size and the MIME type.
    Here is what I got
    /*import com.allaire.cfx.*;*/
    import java.awt.image.renderable.*;
    import javax.media.jai.*;
    import com.sun.media.jai.codec.*;
    import java.io.*;
    import java.util.*;
    public class ImageInfo {
    private RenderedOp image = null;
    private RenderedOp result = null;
    private int height = 0;
    private int width = 0;
    private String type = "";
    private String size = "";
    public void loadf(String file) throws IOException
    file = "80by80.jpg";
    FileSeekableStream fss = new FileSeekableStream(file);
    image = JAI.create("stream", fss);
    height = image.getHeight();
    width = image.getWidth();
    System.out.println(height + "\n");
    System.out.println(width);
    System.out.println(type);
    public static void main(String[] args) throws IOException {
    ImageInfo test = new ImageInfo();
    test.loadf(args[0]);
    can anyone please help me out to modify the above so I can also print the mime type and the file size to screen.
    thanks for any help

    any suggestions?

  • BSP OTRs and MIME Objects do not appear

    Dear SDN Members:
    I have been facing a very peculiar issue. At first we had problems in our Z* BSP Application with SY-SUBRC values after a
    READ TABLE itab INTO wa WITH KEY field1 = var_field1.
    If there were no matching record(s) in Internal table, the SY-SUBRC value was still '0' (Zero) and not 4 etc..
    Now another problem has cropped up...
    At a point in the program (Layout section), there are some HTML lines and OTRs+MIME objects to be executed.
    The program executes those lines as visible in debugger, but does not display the same on Internet Explorer screen. The OTRs and .gif files do not appear in this case. A small preview of the code is pasted here below:
    We have recently upgraded our Quality/Testing server to CRM 4.0 from CRM 3.0 and are doing Application Testing.
    <td class="body" width="100" style="vertical-align:middle; text-align:center">
    <% if a_fcode_tknra = 'change' and application->c_rolle_user <> 'P' and ls_release-releaseid = '-'. %>
    <input type="image" style="background-color:#EEEEEE" src="/SAP/BC/BSP/SAP/ZSM_TKNRA_PLUS/IMAGES/s_b_chng.gif" name="onInputProcessing(change_au_detail__<%=ls_au_ext-auid%>)"
    alt="<%=otr(ZSM_SAMOS/ZSM_TKN_RA_RA_KE_P05_AENDERN)%>">
       <input type="image" style="background-color:#EEEEEE" src="/SAP/BC/BSP/SAP/ZSM_TKNRA_PLUS/IMAGES/s_b_dele.gif" name="onInputProcessing(delete_au_detail__<%=ls_au_ext-auid%>)"
    alt="<%=otr(zsm_samos/delete)%>" onClick="delete_and_confirm();">
    <% endif. %>
    <% if a_fcode_tknra = 'change' or a_fcode_tknra = 'display'. %>
       <input type="image" style="background-color:#EEEEEE" src="/SAP/BC/BSP/SAP/ZSM_TKNRA_PLUS/IMAGES/s_b_disp.gif" name="onInputProcessing(display_au_detail_<%=ls_au_ext-auid%>)"
    alt="<%=otr(ZSM_SAMOS/ZSM_TKN_RA_RA_KE_P05_ANZEIGEN)%>">
    <% endif. %>
    </td>
    Please help me understand how to go about solving this.
    Regards.
    Vivek.

    Thanks Raja for posting back. The issue is slightly more complex: there are other "src" usages, but they are working fine in other sections of the layout code. The MIME objects have all been stored at right places.
    This BSP Application has been in use since 2-3 years. Only while we posed for CRM 3.xx to 4.xx upgrade, we are facing these issues in Quality Testing.
    We have tried some 2-3 permutations and combinations for this part of code, but nothing works. Do you think the source path changes in different CRM versions? Or do OTRs face some compatibility issues? Do guide me with them.
    The READ table issue is a shocker for us as well!
    Ofcourse the work area is empty, as nothing's there to be read! Now we have placed a double check with "work area NOT INITIAL" to override this problem. In fact this is on SAP OSS as Priority 1 issue but no definite solution has been provided till date, except that they were talking of some Kernel patch (...??).
    Do let me know if you can think of some reason for this abnormal behavior, as right now everything is "out-of-the-box".
    Thanks.
    Vivek.

  • Firefox crashing when playing Zynga games (farmville, frontierville, farmtown, etc) and shuts down computer

    See box below for example of error report. Flash is installed. Gateway Windows Vista. Is it a loading issue or needs more size added to Firefox while playing games? Shuts down Firefox and crashes computer.
    Application Basics
    Name Firefox
    Version 3.6.6
    Profile Directory Open Containing Folder
    Installed Plugins about:plugins
    Build Configuration about:buildconfig
    Extensions
    Name Version Enabled ID
    Microsoft .NET Framework Assistant 0.0.0 true {20a82645-c095-46ed-80e3-08825760534b}
    Google Shortcuts 2.0.6 true {5C46D283-ABDE-4dce-B83C-08881401921C}
    Modified Preferences
    Name Value
    browser.history_expire_days.mirror 180
    browser.history_expire_days_min 30
    browser.places.importBookmarksHTML false
    browser.places.smartBookmarksVersion 2
    browser.startup.homepage_override.mstone rv:1.9.2.6
    browser.tabs.loadInBackground false
    extensions.lastAppVersion 3.6.6
    network.cookie.prefsMigrated true
    places.last_vacuum 1277642585
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.timeSpan 0
    security.default_personal_cert Select Automatically
    security.disable_button.openCertManager false
    security.disable_button.openDeviceManager false
    <u></u><u></u><u></u><u></u>
    Installed plugins
    Find more information about browser plugins at mozilla.org.
    Help for installing plugins is available from plugindoc.mozdev.org.
    Adobe Acrobat
    File: nppdf32.dll
    Version: 9.3.0.148
    Adobe PDF Plug-In For Firefox and Netscape
    MIME Type Description Suffixes Enabled
    application/pdf Acrobat Portable Document Format pdf Yes
    application/vnd.adobe.pdfxml Adobe PDF in XML Format pdfxml Yes
    application/vnd.adobe.x-mars Adobe PDF in XML Format mars Yes
    application/vnd.fdf Acrobat Forms Data Format fdf Yes
    application/vnd.adobe.xfdf XML Version of Acrobat Forms Data Format xfdf Yes
    application/vnd.adobe.xdp+xml Acrobat XML Data Package xdp Yes
    application/vnd.adobe.xfd+xml Adobe FormFlow99 Data File xfd Yes
    Mozilla Default Plug-in
    File: npnul32.dll
    Version: 1.0.0.15
    Default Plug-in
    MIME Type Description Suffixes Enabled
    * Mozilla Default Plug-in * No
    Shockwave Flash
    File: NPSWF32.dll
    Version: 10.1.53.64
    Shockwave Flash 10.1 r53
    MIME Type Description Suffixes Enabled
    application/x-shockwave-flash Adobe Flash movie swf Yes
    application/futuresplash FutureSplash movie spl Yes
    Silverlight Plug-In
    File: npctrl.dll
    Version: 4.0.50524.0
    4.0.50524.0
    MIME Type Description Suffixes Enabled
    application/x-silverlight npctrl scr Yes
    application/x-silverlight-2 Yes
    Windows Presentation Foundation
    File: NPWPF.dll
    Version: 3.5.30729.1
    Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    MIME Type Description Suffixes Enabled
    application/x-ms-xbap XAML Browser Application xbap Yes
    application/xaml+xml XAML Document xaml Yes
    Google Update
    File: npGoogleOneClick8.dll
    Version: 1.2.183.23
    Google Update
    MIME Type Description Suffixes Enabled
    application/x-vnd.google.oneclickctrl.8 Yes
    Java(TM) Platform SE 6 U20
    File: npjp2.dll
    Version: 6.0.200.2
    Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    MIME Type Description Suffixes Enabled
    application/x-java-applet Java Applet Yes
    application/x-java-bean JavaBeans Yes
    application/x-java-vm Yes
    application/x-java-applet;version=1.1.1 Yes
    application/x-java-bean;version=1.1.1 Yes
    application/x-java-applet;version=1.1 Yes
    application/x-java-bean;version=1.1 Yes
    application/x-java-applet;version=1.2 Yes
    application/x-java-bean;version=1.2 Yes
    application/x-java-applet;version=1.1.3 Yes
    application/x-java-bean;version=1.1.3 Yes
    application/x-java-applet;version=1.1.2 Yes
    application/x-java-bean;version=1.1.2 Yes
    application/x-java-applet;version=1.3 Yes
    application/x-java-bean;version=1.3 Yes
    application/x-java-applet;version=1.2.2 Yes
    application/x-java-bean;version=1.2.2 Yes
    application/x-java-applet;version=1.2.1 Yes
    application/x-java-bean;version=1.2.1 Yes
    application/x-java-applet;version=1.3.1 Yes
    application/x-java-bean;version=1.3.1 Yes
    application/x-java-applet;version=1.4 Yes
    application/x-java-bean;version=1.4 Yes
    application/x-java-applet;version=1.4.1 Yes
    application/x-java-bean;version=1.4.1 Yes
    application/x-java-applet;version=1.4.2 Yes
    application/x-java-bean;version=1.4.2 Yes
    application/x-java-applet;version=1.5 Yes
    application/x-java-bean;version=1.5 Yes
    application/x-java-applet;version=1.6 Yes
    application/x-java-bean;version=1.6 Yes
    application/x-java-applet;jpi-version=1.6.0_20 Yes
    application/x-java-bean;jpi-version=1.6.0_20 Yes
    <u></u><u></u><u></u><u></u><u></u>

    Why do you have to keep adding new items to farm town when the servers you have cant cope now?? No wonder so many people left, but now i see you are adding new items to get them all back, well all my friends have stoped playing because of all the problems. The main problam i have is that i cant work on other people farms therefore i cant earn coins ect ect, I keep getting this bloody sign saying connection to server timed out please tick the tick to reload the game, and as you know thats the end of that job. Please get your servers sorted out before adding anymore new items, I usually use firefox but i have also used IE they are both the same makes no differance. Regards John

  • Plug-in for Mime files for QuickTime missing.

    I've been trying to view certain videos and listen to streaming music and sometimes it works (never that well) and other times it doesn't. I'm using QT not WM and when it works the videos don't play in the viewer. They usually download to the desktop and then have to be manually played. When it doesn't work I get a small blue box with a question mark and the following statement:
    The page has content of MIME type “application/x-mplayer2”, but you don’t have a plug-in installed for this MIME type. A plug-in should be available on this page:
    http://www.microsoft.com/windows/windowsmedia/download/default.asp.
    I can't find the correct plug-in(s) on the website. What should I do?

    Hi Jeronimo and welcome to the forums!
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 or 7.4 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5.2, but please see my footnote).
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    The new RealPlayer Plus (v.11) is still in beta and therefore free, but works well on Tiger. It includes a download function, and you can get that here:
    http://uk.real.com/player/mac/
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2 and then the latest version obtained from here: http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
    In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    You should also ensure, if you are running Tiger 10.4.11 or Leopard, that you have downloaded and installed the correct version for your Mac of Security Update 2007-009.1.1, which also deals with the Quicktime/Flash issues you may have experienced, such as the '?'. What happened was that both Quicktime as well as Adobe FlashPlayer tried to play the Flash video at the same time. This no longer happens. (N.B. Security Update 2007-009 1.1 requires both a restart and a permission repair.)
    If you get problems with viewing video on a website try moving this file to your Desktop:
    Hard drive/Library/Internet Plug-Ins/QuickTime Plugin.webplugin
    and then restarting Safari. If all now works, you can trash that file.
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    FOOTNOTE
    If you are running Leopard:
    Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

  • Trying to Access SharePoint 2013 Rest Api in HTML page but getting Mime Type Exception with Status Success

    I am trying to invoke the SharePoint Rest Api using HTML page. I have included the Access Control Allow Origin to the web.config file. I am getting Readty State 4 and
    Status Success but still I am getting the below error.
    Refused to execute script from 'http://<server>/_api//web/lists?callback=jQuery172045857910416089_1430217181282&_=1430217363882' because its MIME
    type ('application/atom+xml') is not executable, and strict MIME type checking is enabled.
        <script>
            $(document).ready(function () {
                $("#KMPDiscussions").click(function () {
                    //$.support.cors = true;
                    $.ajax({
                        url: "http://<server>/_api//web/lists",
                        dataType: "jsonp",
                        type: "GET",
                        method: "GET",
                        contentType: "application/javascript",
                        headers: {
                            "content-type":
    "application/json;odata=verbose",
                            "accept": "application/json;odata=verbose",
                        success: function onSuccess(data) {
                            alert("Inside Alert");
                        error: function onError(data){
                            alert("Error: "
    + data);
        </script>
    It always hits the error on callback.
    Is there any other way that I can invoke SharePoint Rest Api from a Cross Domain. Please Help.

    Hi Chris,
    Thanks for the reply,Here iam using different files to be uploaded in library.
    please find the below snapshot of json response and ULS logs.
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    abq2i High Could not get DocumentContent row: 0x80004005. 79f7629c-4694-c026-
    3349-2049178ee919
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    aiv4w Medium Spent 0 ms to bind -1 byte file stream 79f7629c-4694-c026-3349-
    2049178ee919 
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    aise3 Medium Failure when fetching document. 0x80070012 79f7629c-4694-c026-
    3349-2049178ee919
    12/22/2013 18:31:15.39 w3wp.exe (0x3338) 0x0D4C SharePoint Foundation 
    Database ab1a9 High Failed to get document content data.
    System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at
    Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object
    ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) 
    79f7629c-76ab-c026-3349-2c9132b13e9a
    12/22/2013 18:31:15.39 w3wp.exe (0x3338) 0x4184 SharePoint Foundation 
    Database ab1a9 High Failed to get document content data.
    System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at
    Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object
    ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) 
    79f7629c-76ab-c026-3349-281167b6cd09
    Thanks again,
    Naresh.

Maybe you are looking for