XSLT source error

I am using dreamweaver for a XSLT fragement transform of a
remote RSS feed. This is the feed addess,
http://newsrss.bbc.co.uk/rss/newsonline_world_edition/middle_east/rss.xml
when I go in dreamweaver and connect it to this feed it gives and
error in the bindings panel, "the prefix 'media' has not been
mapped to any URI (1,1471). I use several feeds from BBC and they
appear to work fine except for this one.
Any help would be greatly appreciated.

Hi,
Thanks a lot.
Yes, it works.
Regards,
Bala

Similar Messages

  • XSLT compile error.

    I am getting an XSLT compile error on this code: 
    // Load the style sheet.
    XslCompiledTransform xslt = new XslCompiledTransform();
    xslt.Load("style1.xsl");
    Here is the code in it's entirety:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Data.OleDb;
    using System.Xml;
    using System.Xml.Xsl;
    using System.Xml.XPath;
    namespace CSVImporter
    public partial class CSVImporter : Form
    //const string xmlfilename = @"C:\Users\fenwky\XmlDoc.xml"; - file name and location of xml file
    const string xmlfilename = @"C:\Users\fenwky\XmlDoc.xml";
    // New code
    //const string xmlfilename = @"C:\Users\fenwky\XmlDoc.xml"; - file name and location of xsl file
    const string stylesheetsimple = @"C:\Users\fenwky\style1.xsl";
    //const string xmlfilecomplex = @"C:\Users\fenwky\XmlDoc2.xml";
    const string xmlfilecomplex = @"C:\Users\fenwky\XmlDoc2.xml";
    DataSet ds = null;
    public CSVImporter()
    InitializeComponent();
    // Create a Open File Dialog Object.
    openFileDialog1.Filter = "csv files (*.csv)|*.csv|All files (*.*)|*.*";
    openFileDialog1.ShowDialog();
    string fileName = openFileDialog1.FileName;
    //doc.InsertBefore(xDeclare, root);
    // Create a CSV Reader object.
    CSVReader reader = new CSVReader();
    ds = reader.ReadCSVFile(fileName, true);
    dataGridView1.DataSource = ds.Tables["Table1"];
    private void WXML_Click(object sender, EventArgs e)
    WriteXML();
    public void WriteXML()
    StringWriter stringWriter = new StringWriter();
    ds.WriteXml(new XmlTextWriter(stringWriter), XmlWriteMode.WriteSchema);
    string xmlStr = stringWriter.ToString();
    XmlDocument doc = new XmlDocument();
    doc.LoadXml(xmlStr);
    XmlDeclaration xDeclare = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    XmlNode docNode = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    doc.InsertBefore(xDeclare, doc.FirstChild);
    // Test code //
    // Load the style sheet.
    XslCompiledTransform xslt = new XslCompiledTransform();
    xslt.Load("style1.xsl");
    // Test code //
    // Transform the file and output an HTML string.
    string HTMLoutput;
    StringWriter writer = new StringWriter();
    xslt.Transform("XmlDoc.xml", null, writer);
    HTMLoutput = writer.ToString();
    writer.Close();
    // Create a procesing instruction.
    XmlProcessingInstruction newPI;
    // Stylesheet
    // String PItext = "<abc:stylesheet xmlns:abc=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">";
    String PItext = "<xsl:stylesheet xmlns:xls=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">";
    // newPI = doc.CreateProcessingInstruction("abc:stylesheet", PItext);
    newPI = doc.CreateProcessingInstruction("xls:stylesheet", PItext);
    doc.InsertAfter(newPI, doc.FirstChild);
    // Save document
    doc.Save(xmlfilename);
    private void btExportComplexXML_Click(object sender, EventArgs e)
    WriteXMLComplex();
    public void WriteXMLComplex()
    // Creates stringwriter
    StringWriter stringWriter = new StringWriter();
    ds.WriteXml(new XmlTextWriter(stringWriter), XmlWriteMode.WriteSchema);
    string xmlStr = stringWriter.ToString();
    XmlDocument doc = new XmlDocument();
    doc.LoadXml(xmlStr);
    XmlDeclaration xDeclare = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    XmlNode docNode = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    doc.InsertBefore(xDeclare, doc.FirstChild);
    // Create a procesing instruction.
    XmlProcessingInstruction newPI;
    // Uses XML transformation.
    String PItext = "<abc:stylesheet xmlns:abc=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">";
    newPI = doc.CreateProcessingInstruction("xsl:stylesheet", PItext);
    doc.InsertAfter(newPI, doc.FirstChild);
    // Saves document.
    doc.Save(xmlfilecomplex);
    //Creates a CSVReader Class
    public class CSVReader
    public DataSet ReadCSVFile(string fullPath, bool headerRow)
    string path = fullPath.Substring(0, fullPath.LastIndexOf("\\") + 1);
    string filename = fullPath.Substring(fullPath.LastIndexOf("\\") + 1);
    DataSet ds = new DataSet();
    try
    if (File.Exists(fullPath))
    string ConStr = string.Format("Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0}" + ";Extended Properties=\"Text;HDR={1};FMT=Delimited\\\"", path, headerRow ? "Yes" : "No");
    string SQL = string.Format("SELECT * FROM {0}", filename);
    OleDbDataAdapter adapter = new OleDbDataAdapter(SQL, ConStr);
    adapter.Fill(ds, "TextFile");
    ds.Tables[0].TableName = "Table1";
    foreach (DataColumn col in ds.Tables["Table1"].Columns)
    col.ColumnName = col.ColumnName.Replace(" ", "_");
    catch (Exception ex)
    MessageBox.Show(ex.Message);
    return ds;

    Hi Kristin,
    Yes, the error looks the same:
    Here is the style.xsl file:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:apply-templates select="book"/>
    <HTML>
    <BODY>
    <TABLE BORDER="2">
    <TR>
    <TD>Item_Code</TD>
    <TD>Item_Description</TD>
    <TD>Current_Count</TD>
    <TD>On_Order</TD>
    </TR>
    <xsl:template select="book"/>
    </TABLE>
    </BODY>
    </HTML>
    </xsl:template>
    <xsl:template match="book">
    <TR>
    <TD><xsl:value-of select="Item_Code"/></TD>
    <TD><xsl:value-of select="Item_Description"/></TD>
    <TD><xsl:value-of select="Current_Count"/></TD>
    <TD><xsl:value-of select="On_Order"/></TD>
    </TR>
    </xsl:template>
    </xsl:stylesheet>
    The XML file isn't saving (generating) on Click. Thank for you for your help.
    @Kylee,
    Here is the right format XSL file, Please check and test again.
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:template match="book">
    <HTML>
    <BODY>
    <TABLE BORDER="2">
    <TR>
    <TD>Item_Code</TD>
    <TD>Item_Description</TD>
    <TD>Current_Count</TD>
    <TD>On_Order</TD>
    </TR>
    <xsl:apply-templates select="book"/>
    </TABLE>
    </BODY>
    </HTML>
    </xsl:template>
    <xsl:template match="book">
    <TR>
    <TD>
    <xsl:value-of select="Item_Code"/>
    </TD>
    <TD>
    <xsl:value-of select="Item_Description"/>
    </TD>
    <TD>
    <xsl:value-of select="Current_Count"/>
    </TD>
    <TD>
    <xsl:value-of select="On_Order"/>
    </TD>
    </TR>
    </xsl:template>
    </xsl:stylesheet>
    By the way, you also could check by yourself. Add a new XLS file in VS2013, It will help you check all the errors.
    Best regards,
    Kristin
    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.
    Thanks Kristen. I have checked the file and it now reads. However, I have another error now. The XML file isn't saving and I am getting this error:
    Could not find file 'C:\Users\fenwky\documents\visual studio 2013\Projects\CSV Importer\CSV Importer\bin\Debug\XmlDoc.xml'.
    For some reason it's not writing the file (but trying to read it?) and I am not sure what I am doing wrong.
    Here is the screen shot:
    private void WXML_Click(object sender, EventArgs e)
    WriteXML();
    public void WriteXML()
    StringWriter stringWriter = new StringWriter();
    ds.WriteXml(new XmlTextWriter(stringWriter), XmlWriteMode.WriteSchema);
    string xmlStr = stringWriter.ToString();
    XmlDocument doc = new XmlDocument();
    doc.LoadXml(xmlStr);
    XmlDeclaration xDeclare = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    XmlNode docNode = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    doc.InsertBefore(xDeclare, doc.FirstChild);
    // Load the style sheet.
    XslCompiledTransform xslt = new XslCompiledTransform();
    xslt.Load("style1.xsl");
    // Transform the file and output an HTML string.
    string HTMLoutput;
    StringWriter writer = new StringWriter();
    xslt.Transform("XmlDoc.xml", null, writer);
    HTMLoutput = writer.ToString();
    writer.Close();
    var piText = "type=\"text/xsl\" href=\"style1.xsl\"";
    var newPI = doc.CreateProcessingInstruction("xml-stylesheet", piText);
    doc.InsertAfter(newPI, doc.FirstChild);
    // Save document
    doc.Save(xmlfilename);
    Thank you again Kristen.

  • OSB: Cannot acquire data source error while using JCA DBAdapter in OSB

    Hi All,
    I've entered 'Cannot acquire data source' error while using JCA DBAdapter in OSB.
    Error infor are as follows:
    The invocation resulted in an error: Invoke JCA outbound service failed with application error, exception: com.bea.wli.sb.transports.jca.JCATransportException: oracle.tip.adapter.sa.api.JCABindingException: oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.WSIFException: servicebus:/WSDL/DBAdapter1/RetrievePersonService [ RetrievePersonService_ptt::RetrievePersonServiceSelect(RetrievePersonServiceSelect_inputParameters,PersonTCollection) ] - WSIF JCA Execute of operation 'RetrievePersonServiceSelect' failed due to: Could not create/access the TopLink Session.
    This session is used to connect to the datastore.
    Caused by Exception [EclipseLink-7060] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.ValidationException
    Exception Description: Cannot acquire data source [jdbc/soademoDatabase].
    Internal Exception: javax.naming.NameNotFoundException: Unable to resolve 'jdbc.soademoDatabase'. Resolved 'jdbc'; remaining name 'soademoDatabase'.
    ; nested exception is:
    BINDING.JCA-11622
    Could not create/access the TopLink Session.
    This session is used to connect to the datastore.
    JNDI Name for the Database pool: eis/DB/soademoDatabase
    JNDI Name for the Data source: jdbc/soademoDatabase
    I created a basic DBAdapter in JDeveloper, got the xsd file, wsdl file, .jca file and the topLink mapping file imported them into OSB project.
    Then I used the .jca file to generate a business service, and tested, then the error occurs as described above.
    Login info in RetrievePersonService-or-mappings.xml
    <login xsi:type="database-login">
    <platform-class>org.eclipse.persistence.platform.database.oracle.Oracle9Platform</platform-class>
    <user-name></user-name>
    <connection-url></connection-url>
    </login>
    jca file content are as follows:
    <adapter-config name="RetrievePersonService" adapter="Database Adapter" wsdlLocation="RetrievePersonService.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
    <connection-factory location="eis/DB/soademoDatabase" UIConnectionName="Connection1" adapterRef=""/>
    <endpoint-interaction portType="RetrievePersonService_ptt" operation="RetrievePersonServiceSelect">
    <interaction-spec className="oracle.tip.adapter.db.DBReadInteractionSpec">
    <property name="DescriptorName" value="RetrievePersonService.PersonT"/>
    <property name="QueryName" value="RetrievePersonServiceSelect"/>
    <property name="MappingsMetaDataURL" value="RetrievePersonService-or-mappings.xml"/>
    <property name="ReturnSingleResultSet" value="false"/>
    <property name="GetActiveUnitOfWork" value="false"/>
    </interaction-spec>
    </endpoint-interaction>
    </adapter-config>
    RetrievePersonService_db.wsdl are as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <WL5G3N0:definitions name="RetrievePersonService-concrete" targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/KnowledeMgmtSOAApplication/AdapterJDevProject/RetrievePersonService" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://xmlns.oracle.com/pcbpel/adapter/db/KnowledeMgmtSOAApplication/AdapterJDevProject/RetrievePersonService" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/">
    <WL5G3N0:import location="RetrievePersonService.wsdl" namespace="http://xmlns.oracle.com/pcbpel/adapter/db/KnowledeMgmtSOAApplication/AdapterJDevProject/RetrievePersonService"/>
    <WL5G3N0:binding name="RetrievePersonService_ptt-binding" type="WL5G3N1:RetrievePersonService_ptt">
    <WL5G3N2:binding style="document" transport="http://www.bea.com/transport/2007/05/jca"/>
    <WL5G3N0:operation name="RetrievePersonServiceSelect">
    <WL5G3N2:operation soapAction="RetrievePersonServiceSelect"/>
    <WL5G3N0:input>
    <WL5G3N2:body use="literal"/>
    </WL5G3N0:input>
    <WL5G3N0:output>
    <WL5G3N2:body use="literal"/>
    </WL5G3N0:output>
    </WL5G3N0:operation>
    </WL5G3N0:binding>
    <WL5G3N0:service name="RetrievePersonService_ptt-bindingQSService">
    <WL5G3N0:port binding="WL5G3N1:RetrievePersonService_ptt-binding" name="RetrievePersonService_ptt-bindingQSPort">
    <WL5G3N2:address location="jca://eis/DB/soademoDatabase"/>
    </WL5G3N0:port>
    </WL5G3N0:service>
    </WL5G3N0:definitions>
    Any suggestion is appricated .
    Thanks in advance!
    Edited by: user11262117 on Jan 26, 2011 5:28 PM

    Hi Anuj,
    Thanks for your reply!
    I found that the data source is registered on server soa_server1 as follows:
    Binding Name: jdbc.soademoDatabase
    Class: weblogic.jdbc.common.internal.RmiDataSource_1033_WLStub
    Hash Code: 80328036
    toString Results: ClusterableRemoteRef(8348400613458600489S:10.2.1.143:[8001,8001,-1,-1,-1,-1,-1]:base_domain:soa_server1 [8348400613458600489S:10.2.1.143:[8001,8001,-1,-1,-1,-1,-1]:base_domain:soa_server1/291])/291
    Binding Name: jdbc.SOADataSource
    Class: weblogic.jdbc.common.internal.RmiDataSource_1033_WLStub
    Hash Code: 92966755
    toString Results: ClusterableRemoteRef(8348400613458600489S:10.2.1.143:[8001,8001,-1,-1,-1,-1,-1]:base_domain:soa_server1 [8348400613458600489S:10.2.1.143:[8001,8001,-1,-1,-1,-1,-1]:base_domain:soa_server1/285])/285
    I don't know how to determine which server the DBAdapter is targetted to.
    But I found the following information:
    Under Deoloyment->DBAdapter->Monitoring->Outbound Connection Pools
    Outbound Connection Pool Server State Current Connections Created Connections
    eis/DB/SOADemo AdminServer Running 1 1
    eis/DB/SOADemo soa_server1 Running 1 1
    eis/DB/soademoDatabase AdminServer Running 1 1
    eis/DB/soademoDatabase soa_server1 Running 1 1
    The DbAdapter is related to the following files:
    C:\ Oracle\ Middleware\ home_11gR1\ Oracle_SOA1\ soa\ connectors\ DbAdapter. rar
    C:\ Oracle\ Middleware\ home_11gR1\ Oracle_SOA1\ soa\ DBPlan\ Plan. xml
    I unzipped DbAdapter.rar, opened weblogic-ra.xml and found that there's only one data source is registered:
    <?xml version="1.0"?>
    <weblogic-connector xmlns="http://www.bea.com/ns/weblogic/90">
    <enable-global-access-to-classes>true</enable-global-access-to-classes>
    <outbound-resource-adapter>
    <default-connection-properties>
    <pool-params>
    <initial-capacity>1</initial-capacity>
    <max-capacity>1000</max-capacity>
    </pool-params>
    <properties>
    <property>
    <name>usesNativeSequencing</name>
    <value>true</value>
    </property>
    <property>
    <name>sequencePreallocationSize</name>
    <value>50</value>
    </property>
    <property>
    <name>defaultNChar</name>
    <value>false</value>
    </property>
    <property>
    <name>usesBatchWriting</name>
    <value>true</value>
    </property>
    <property>
    <name>usesSkipLocking</name>
    <value>true</value>
    </property>
    </properties>
              </default-connection-properties>
    <connection-definition-group>
    <connection-factory-interface>javax.resource.cci.ConnectionFactory</connection-factory-interface>
    <connection-instance>
    <jndi-name>eis/DB/SOADemo</jndi-name>
              <connection-properties>
                   <properties>
                   <property>
                   <name>xADataSourceName</name>
                   <value>jdbc/SOADataSource</value>
                   </property>
                   <property>
                   <name>dataSourceName</name>
                   <value></value>
                   </property>
                   <property>
                   <name>platformClassName</name>
                   <value>org.eclipse.persistence.platform.database.Oracle10Platform</value>
                   </property>
                   </properties>
              </connection-properties>
    </connection-instance>
    </connection-definition-group>
    </outbound-resource-adapter>
    </weblogic-connector>
    Then I decided to use eis/DB/SOADemo for testing.
    For JDeveloper project, after I deployed to weblogic server, it works fine.
    But for OSB project referencing wsdl, jca and mapping file from JDeveloper project, still got the same error as follows:
    BEA-380001: Invoke JCA outbound service failed with application error, exception:
    com.bea.wli.sb.transports.jca.JCATransportException: oracle.tip.adapter.sa.api.JCABindingException: oracle.tip.adapter.sa.impl.fw.ext.org.collaxa.thirdparty.apache.wsif.WSIFException: servicebus:/WSDL/DBAdapterTest/DBReader [ DBReader_ptt::DBReaderSelect(DBReaderSelect_inputParameters,PersonTCollection) ] - WSIF JCA Execute of operation 'DBReaderSelect' failed due to: Could not create/access the TopLink Session.
    This session is used to connect to the datastore.
    Caused by Exception [EclipseLink-7060] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.ValidationException
    Exception Description: Cannot acquire data source [jdbc/SOADataSource].
    Internal Exception: javax.naming.NameNotFoundException: Unable to resolve 'jdbc.SOADataSource'. Resolved 'jdbc'; remaining name 'SOADataSource'.
    ; nested exception is:
    BINDING.JCA-11622
    Could not create/access the TopLink Session.
    This session is used to connect to the datastore.
    Caused by Exception [EclipseLink-7060] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.ValidationException
    Exception Description: Cannot acquire data source [jdbc/SOADataSource].
    Internal Exception: javax.naming.NameNotFoundException: Unable to resolve 'jdbc.SOADataSource'. Resolved 'jdbc'; remaining name 'SOADataSource'.
    You may need to configure the connection settings in the deployment descriptor (i.e. DbAdapter.rar#META-INF/weblogic-ra.xml) and restart the server. This exception is considered not retriable, likely due to a modelling mistake.
    It almost drive me crazy!!:-(
    What's the purpose of 'weblogic-ra.xml' under the folder of 'C:\Oracle\Middleware\home_11gR1\Oracle_OSB1\lib\external\adapters\META-INF'?
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

  • ODBC Data Source Error

    I was having with Crystal communicating with one of my Access databases that had a list box. In Crystal it would take the list box, add and remove letters. It was suggested that I check with my IT department to see if there are any updates. Well they upgraded me from Crystal XI to Crystal XI R2. Things have gone downhill from there. First I couldnu2019t even open the program and they ended up reinstalling everything again. Now I can open Crystal, but all reports I previously created and new ones I try to create cannot make any connection through ODBC. My IT person and I have tried several things even installing a couple new drivers. My IT department does not provide technical support for software so now Iu2019m on my own to figure this out. If anyone can provide me with any assistance or any suggestions where to check I would greatly appreciate it.
    My problem is any time I try to make an ODBC connection to either create or update a report I go through the steps and get an error at the connection information page and cannot go any further. This error happens with MS Access or MS Excel.  The error is "Login Failed. Details: Cannot obtain error message from server. I have no logins or passwords.

    In the Organizer workspace, do a
    File > Catalog > Recover
    command. That command "cleans up" your Elements catalog and often resolves ODBC data source error messages.

  • SharePoint 2010 Error while executing web part: System.Xml.Xsl.XslLoadException: XSLT compile error.

    Hello,
    I currently having a series of errors (18 issues) that are occurring under the below Correlation ID ad1a22f5-1ddb-4fa5-8487-143cb6fd0f9d
    I have listed (3) that are in the Web Parts category, this error/issue is causing several timed job to no longer work properly I have been trying to find the root cause for about a week now. If anyone has encountered a issue
    such as this one I'm open for suggestions.     
    (1)
    Error while executing web part: System.Xml.Xsl.XslLoadException: XSLT compile error. An error occurred at (1,475). ---> System.Net.WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.
    ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.     at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest
    asyncRequest, Exception exception)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer,
    AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer,
    AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer,
    AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult
    lazyResult)     at System.Threading.ExecutionContext.runTryCode(Object userData)     at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)    
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)     at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)     at System.Net.TlsStream.Write(Byte[]
    buffer, Int32 offset, Int32 size)     at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)     at System.Net.ConnectStream.WriteHeaders(Boolean async)     --- End of inner exception
    stack trace ---     at System.Net.HttpWebRequest.GetResponse()     at System.Xml.XmlDownloadManager.GetNonFileStream(Uri uri, ICredentials credentials)     at System.Xml.XmlUrlResolver.GetEntity(Uri
    absoluteUri, String role, Type ofObjectToReturn)     at Microsoft.SharePoint.WebPartPages.WSSXmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)     at System.Xml.Xsl.Xslt.XsltLoader.CreateReader(Uri
    uri, XmlResolver xmlResolver)     at System.Xml.Xsl.Xslt.XsltLoader.LoadStylesheet(Uri uri, Boolean include)     at System.Xml.Xsl.Xslt.XsltLoader.LoadStylesheet(XmlReader reader, Boolean include)    
    --- End of inner exception stack trace ---     at System.Xml.Xsl.Xslt.XsltLoader.LoadStylesheet(XmlReader reader, Boolean include)     at System.Xml.Xsl.Xslt.XsltLoader.Load(Compiler compiler, Object stylesheet, XmlResolver
    xmlResolver)     at System.Xml.Xsl.Xslt.Compiler.Compile(Object stylesheet, XmlResolver xmlResolver, QilExpression& qil)     at System.Xml.Xsl.XslCompiledTransform.CompileXsltToQil(Object stylesheet, XsltSettings
    settings, XmlResolver stylesheetResolver)     at System.Xml.Xsl.XslCompiledTransform.LoadInternal(Object stylesheet, XsltSettings settings, XmlResolver stylesheetResolver)     at System.Xml.Xsl.XslCompiledTransform.Load(XmlReader
    stylesheet, XsltSettings settings, XmlResolver stylesheetResolver)     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.LoadXslCompiledTransform(WSSXmlUrlResolver someXmlResolver)     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.GetXslCompiledTransform()    
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean bDeferExecuteTransform)
    (2)
    InnerException 1: System.Net.WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according
    to the validation procedure.     at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[]
    buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[]
    buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[]
    buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ForceAuthentication(Boolean
    receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)     at System.Threading.ExecutionContext.runTryCode(Object userData)    
    at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback,
    Object state)     at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)     at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)     at System.Net.PooledStream.Write(Byte[]
    buffer, Int32 offset, Int32 size)     at System.Net.ConnectStream.WriteHeaders(Boolean async)     --- End of inner exception stack trace ---     at System.Net.HttpWebRequest.GetResponse()    
    at System.Xml.XmlDownloadManager.GetNonFileStream(Uri uri, ICredentials credentials)     at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)     at Microsoft.SharePoint.WebPartPages.WSSXmlUrlResolver.GetEntity(Uri
    absoluteUri, String role, Type ofObjectToReturn)     at System.Xml.Xsl.Xslt.XsltLoader.CreateReader(Uri uri, XmlResolver xmlResolver)     at System.Xml.Xsl.Xslt.XsltLoader.LoadStylesheet(Uri uri, Boolean include)    
    at System.Xml.Xsl.Xslt.XsltLoader.LoadStylesheet(XmlReader reader, Boolean include)
    (3)
    InnerException 2: System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.     at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest
    asyncRequest, Exception exception)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer,
    AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer,
    AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer,
    AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)     at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult
    lazyResult)     at System.Threading.ExecutionContext.runTryCode(Object userData)     at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)    
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)     at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)     at System.Net.TlsStream.Write(Byte[]
    buffer, Int32 offset, Int32 size)     at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)     at System.Net.ConnectStream.WriteHeaders(Boolean async)

    Hello,
    It seems that issue is related to certificate. Could you please upload certificate to central admin and make it trust.
    Just try this and see the result:
    http://social.technet.microsoft.com/Forums/en-US/cbc58585-1673-4c91-b8c1-1b95c339bbb7/could-not-establish-trust-relationship-for-the-ssltls-secure-channel?forum=fastsharepoint
    http://social.msdn.microsoft.com/Forums/en-US/7a7e56ba-6e95-4a84-9384-791818cce89d/the-underlying-connection-was-closed-could-not-establish-trust-relationship-for-the-ssltls-secure?forum=sharepointdevelopmentprevious
    http://www.infotext.com/help/sharepoint-could-not-estabilish-trust-relationship-for-the-ssltls-secure-channel-when-crawling-ssl-enabled-websites/
    If still face the issue then tell us more about your webparts and also confirm if you are facing same problem to other page and site.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Disk image Restore returns "Could not validate source - error 254"

    I had backed up an older G4 with a disk image of the boot disk. I was having severe problems so I reformatted the boot drive and started a restore (using disk utility from startup disk). The restore started fine and ran a while but then "stalled." The "progress" bar stopped and the system just kept "hitting" the Utility DVD install disk non-stop (as shown by disk access light).
    Now when I try again, I immediately get a "Restore Failure - Could not validate source - error 254"
    The disk image being restored is on a hard drive. I copied it to another drive and tried again with the same result.
    This is being done on an old G4 Tower, dual 1 GHz PPC under 10.5.8
    Comments?
    (This won't kill me as all my data files are also on my MBP, I just don't want to have to reinstall all my apps, setups, etc.)

    Yes, for my "real" machine (my Intel MBP) I have images, clones, and Time Machine Backups not to mention my data files written to DVD. I've got at least triplicate backup. This was a old machine I was setting up for a specific purpose. I'm not losing any data but I just didn't want to have to reload apps and such. But guess I have no alternative. Thanks for the tip. I had never used the "scan for restore option" before so I learned something. Usually I just trust my multiple backup method so if one source is bad, no big deal. Thanks baltwo!

  • XSLT Compile error at(649,16)

    I am using Xslt Call Template in several scripting functoid.
    Now I am getting the above error :
    XSLT compile error at (649,16). See InnerException for details.
    The contents of 'choose' are invalid.
    I want to narrow down my search. Please help me out which scripting functoid to look for and how to look.
    error at (649,16). --->Does this help to target the place of error.
    Urgent need.
    Plz help me I am new to Biztalk. :-(

    Best would be to investigate the script using Visual Studio as it highlights errors in scripts. Validate the map first and then in the output window  you should see:
    Invoking component...
        D:\Solutions\[...]\Your_Map.btm: The output XSLT is stored in the following file: <file:///C:\Users\[...]\your_map.xsl> 
        D:\Solutions\[...]\Your_Map.btm: The Extension Object XML is stored in the following file: <file:///C:\Users\your_map.xml>
    Component invocation succeeded.
    Open the your_map.xsl file using Visual Studio and go to line 649. 

  • Dynamic XSLT source code generation based upon internal table

    Hi,
    Is there anyway to generate dynamic XSLT source code based upon final structure of output internal table and call dynamic generated XSLT in program?
    CALL TRANSFORMATION z_transformation
                PARAMETERS
                 p_shared_string = lo_shared_str_nodeset
                SOURCE XML g_sheet_data
                RESULT lt_data = i_data[].
    Source code example of XSLT transformation -
    <xsl:template match="/">
         <asx:abap version="1.0">
           <asx:values>
             <LT_DATA>   "Internal table
               <xsl:for-each select="ss:worksheet/ss:sheetData/ss:row">
                 <xsl:if test="position() &gt; 1">
                   <item>
                     <FIELD1>
                       <xsl:variable name="cell_id" select="concat('A', position())"/>
                       <xsl:variable name="v_index" select="ss:c[@r=$cell_id][@t='s']/ss:v"/>
                       <xsl:if test="$v_index">
                         <xsl:value-of select="$V_SHARED_STRING/sst/si[$v_index + 1]/t"/>
                       </xsl:if>
                       <xsl:if test="not($v_index)">
                         <xsl:value-of select="ss:c[@r=$cell_id]/ss:v"/>
                       </xsl:if>
                     </FIELD1>
                 </item>
                 </xsl:if>
               </xsl:for-each>
             </LT_DATA> "internal table
           </asx:values>
         </asx:abap>
       </xsl:template>
    </xsl:transform>

    In addition,
    We are converting binary data of excel from application server into internal table but currently we created two XSLT transformation to achieve this one for deleting name space and other for converting data into internal table format.
    We want to make our source code for future use also,Is there anyway to generate XSLT source code dynamically?Above mentioned code is snippet of data extracting which we are doing but this transformation is hard coded.
    Any help is appreciated.
    BR,
    Praveen

  • Change database source error for CommandTables with CRJ-Runtime v2.0.2

    hello,
    -1
    INFO Befehl with FIELD: assek Type= StoredProcedureParameter
    INFO Befehl with FIELD: jahr Type= StoredProcedureParameter
    INFO Befehl with FIELD: monat Type= StoredProcedureParameter
    INFO org.sis.assekuradeur.base.srv.KassoServiceImpl Drucke Versicherer Abrechnung für Assek: 990000029
    ERROR CBR.sdk.JRCCommunicationAdapter  detected an exception: java.lang.NullPointerException
    at CDR.reportdefinition.ParameterFieldDefinition.qJ(Unknown Source)
    at CDR.reportdefinition.ParameterFieldDefinition.qL(Unknown Source)
    at CDR.dataengine.f.hH(Unknown Source)
    at CDR.dataengine.f.S(Unknown Source)
    at CDR.dataengine.f.hN(Unknown Source)
    at CDR.dataengine.DataSourceManager.int(Unknown Source)
    at CDR.dataengine.DataSourceManager.a(Unknown Source)
    at CDR.dataengine.DataSourceManager.if(Unknown Source)
    at CDR.dataengine.y.byte(Unknown Source)
    at CDR.dataengine.y.equals(Unknown Source)
    at CDR.dataengine.i.if(Unknown Source)
    at CDR.dataengine.i.do(Unknown Source)
    at CDR.dataengine.DataProcessor2.a(Unknown Source)
    at CDR.formatter.formatter.objectformatter.ObjectFormatter.(Unknown Source)
    at CDR.formatter.formatter.paginator.PageFormatter.a(Unknown Source)
    at CDR.formatter.export2.a.a(Unknown Source)
    at CDR.formatter.export2.ExportSupervisorEx.if(Unknown Source)
    at CDR.formatter.export2.ExportSupervisorEx.a(Unknown Source)
    at CBR.sdk.requesthandler.ReportViewingRequestHandler.a(Unknown Source)
    at CBR.sdk.requesthandler.ReportViewingRequestHandler.int(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.do(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.if(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.a(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter$2.a(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter$2.call(Unknown Source)
    at CDR.common.ThreadGuard.syncExecute(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.for(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.int(Unknown Source)
    at CBR.sdk.JRCCommunicationAdapter.request(Unknown Source)
    at com.businessobjects.sdk.erom.jrc.a.a(Unknown Source)
    at com.businessobjects.sdk.erom.jrc.a.execute(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.ds.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    at org.sis.assekuradeur.utils.JRCHelper.print(JRCHelper.java:224)
    at org.sis.assekuradeur.base.srv.KassoServiceImpl.erzeugeProvisionsAbrechnungVersicherer(KassoServiceImpl.java:2014)
    ERROR com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: java.lang.NullPointerException---- Error code:-2147467259 Error code name:failed
    ERROR  at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.if(Unknown Source)
    ERROR  at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    ERROR  at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    ERROR  at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
    ERROR  at org.sis.assekuradeur.utils.JRCHelper.print(JRCHelper.java:224)
    ERROR  at java.lang.Thread.run(Thread.java:595)
    ERROR Caused by: java.lang.NullPointerException
    ERROR  at CDR.reportdefinition.ParameterFieldDefinition.qJ(Unknown Source)
    ERROR  at CDR.reportdefinition.ParameterFieldDefinition.qL(Unknown Source)
    ERROR  at CDR.dataengine.f.hH(Unknown Source)
    ERROR  at CDR.dataengine.f.S(Unknown Source)
    ERROR  at CDR.dataengine.f.hN(Unknown Source)
    ERROR  at CDR.dataengine.DataSourceManager.int(Unknown Source)
    ERROR  at CDR.dataengine.DataSourceManager.a(Unknown Source)
    ERROR  at CDR.dataengine.DataSourceManager.if(Unknown Source)
    ERROR  at CDR.dataengine.y.byte(Unknown Source)
    ERROR  at CDR.dataengine.y.equals(Unknown Source)
    ERROR  at CDR.dataengine.i.if(Unknown Source)
    ERROR  at CDR.dataengine.i.do(Unknown Source)
    ERROR  at CDR.dataengine.DataProcessor2.a(Unknown Source)
    ERROR  at CDR.formatter.formatter.objectformatter.ObjectFormatter.
    Edited by: Markus Fieber on Aug 11, 2009 11:20 AM
    Edited by: Markus Fieber on Aug 11, 2009 11:37 AM

    I have solved the problem at last. Actually, I found lib of libstd_v2 for gcc can not be compatible with libocci. And I can not recomplie libocci with gcc. So I used aCC instead of gcc and all of things is ok now.

  • "Unknown Source" errors

    The application behind this code is generating a bunch of "Unknown Source" errors at runtime:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at Polygon#MouseHandler.mousePressed(Polygons.java:95)
    at java.awt.Component.processMouseEvent(Unknown Source), and so on...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.ArrayList;
    public class Polygons extends JPanel {
            protected static boolean shiftIsDown;
            public static void main(String[] args) {
                    JFrame window = new JFrame("Polygons");
                    Polygons content = new Polygons();
                    content.addKeyListener( new KeyAdapter() {
                                            public void KeyPressed(KeyEvent evt) {
                                                    int key = evt.getKeyCode();
                                                    if(key == KeyEvent.VK_SHIFT)
                                                            shiftIsDown = true;
                    window.setContentPane(content);
                    window.pack();
                    window.setLocation(100, 100);
                    window.setResizable(false);
                    window.setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
                    window.setVisible(true);
            } // End main()
            private static class PolygonData {
                    int[] x;
                    int[] y;
            public Polygons() {
            // Constructor.
                    setBackground(Color.WHITE);
                    MouseHandler listener = new MouseHandler();
                    setPreferredSize(new Dimension(350, 350) );
                    addMouseListener(listener);
                    addMouseMotionListener(listener);
            private class MouseHandler implements MouseListener,
                    MouseMotionListener {
                    PolygonData polygon;
                    private boolean dragging = false;
                    private int vertices;
                    private int x1, y1;   // First vertex point.
                    private int x2, y2;   // Second vertex point.
                    private boolean newPolygon = false; // Is the user drawing
                                                        // a new polygon?
                           public void mousePressed(MouseEvent evt) {
                                    // If the user is within two pixels of the
                                    // starting point, draw the polygon.
                                    // Graphics g = getGraphics();
                                    int tolerence = 2;
                                    if(shiftIsDown);
                                    x1 = evt.getX();
                                    y1 = evt.getY();
                                    vertices++;
                                    if(newPolygon) {
                                            polygon = new PolygonData();
                                            x2 = x1;
                                            y2 = y1;
                                            polygon.x = new int[1024];
                                            polygon.y = new int[1024];
                                    if(vertices == 1){
                                            polygon.x = new int[1024];
                                            polygon.y = new int[1024];
                                    polygon.x[vertices] = x1;
                                    polygon.y[vertices] = y1;
                                    g.setColor(Color.BLACK);
                                    g.drawPolygon(polygon.x, polygon.y, vertices);
                                    // Did the user click near the starting point?
                                    if( (polygon.x[0] - x1 <= tolerence)
                                            && (polygon.y[0] - y1 <= tolerence) ) {
                                                    g.setColor(Color.RED);
                                                    g.fillPolygon(polygon.x, polygon.y, vertices);                                }                                               
                           public void mouseMoved(MouseEvent evt) {
                                    // Grab the graphics context.
                                    Graphics g = getGraphics();
                                    x2 = evt.getX();
                                    y2 = evt.getY();
                                    g.drawLine(x1, y1, x2, y2);
                                    repaint();
                           // Required by the interfaces....
                           public void mouseReleased(MouseEvent evt) { }
                           public void mouseClicked(MouseEvent evt) { }
                           public void mouseEntered(MouseEvent evt) { }
                           public void mouseExited(MouseEvent evt) { }
                           public void mouseDragged(MouseEvent evt) { }
            } // End nested class Mousehandler
    } // End class PolygonsSame goes for mouseMoved().... What's the fix?

    flounder wrote:
    if(newPolygon) {
    polygon = new PolygonData();This is the probable cause. Since newPolygon is initially false, it will not execute the if statement and polygon will not be initialised. So later in your code when you attempt to use polygon it is null.That did it.
    Thanks!

  • XML Source Error - cache property

    Hello,
    I am using Livecycle Designer and am trying to edit an existing form.
    I have no problem editing in the design view and master pages, however there are certain texts on the preview and printed form that are only viewable in the xml source (that's the only place I can see them anyway!!).
    However when trying to edit the xml source to change these texts I get an XML Source Error popup and cannot save change.
    'The following error was found with the xml source'
    'Invalid property set operation; cache doesn't have property '#text''
    Don't know what this property '#text' is or what the error refers to. I can't find anything online about it. Could it be a setting in form property - I've tried changing some of these but no joy!!
    Any help greatly appreciated.
    Deep.

    Hi,
    I suspect that your form is corrupt. You need to be careful when "editing" a form in the XML Source. If you delete incomplete sections, it may throw an error.
    One option may be to copy all of the visible objects into a new form.
    Good luck,
    Niall

  • FIM connected Data Source Error

    I am having issues with the DS-Export in FIM on SharePoint 2013.
    I notice the DS_EXPORT operation is receiving 72 Export Errors... with the Error being 'permission-issue' when running a SharePoint profile synchronization. More specifically the Connected data source error in FIM is: "Insufficient access rights to
    perform the operation."
    I have granted the farm and synchronization account 'replicate directory changes' in both the domain and the configuration container (netbios and fqdn for domain are different).
    What permissions could FIM be referring to?
    - Rick

    Is your domain running in Active Directory 2003 mode? If so, did you add the sync account to the Pre-Windows 2000 Compatible Access Group?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Video source error

    I am getting a video source error that does not make sense to me. My file is named "6-6" When I use the code
    <video controls>
              <source src="6-6.mp4" type="video/mp4" />
              </video>
    I get the error "Invalid Source" even when my file is surely in the correct folder for assets.
    I am confused to say the least.

    Does your browser support MP4?
    http://www.w3schools.com/tags/tag_video.asp
    If so, does your server?
    http://voice.firefallpro.com/2012/03/html5-audio-video-mime-types.html

  • Flash Player will not download past 47% - "cannot contact reliable source" error everytime

    So just as the title states - I uninstalled Flash on my computer because it was giving me trouble. Now, everytime I try to redownload Flash for Firefox - it will not go past 47% download and the "Cannot contact reliable source" error comes up every single time. I'm on Windows 7 64 bit and I have Charter Security Suite for Antivirus if that helps.
    Never had this problem before when I downloaded Flash and now this is just plain stupid.

    MossyRock20 wrote:
    F-Secure said that Adobe needs to submit the URL and IP addresses to them for removal from this blacklist.
    That's a two way street. My brother used TrendMicro for about four years before he got rid of it. TrendMicro's stance was "We build our product and update it. The rest of the world can keep up with what we do." When he was no longer able to update QuickBooks because of TrendMicro, he uninstalled it. They told him it was Intuit's responsibility to update their (TrendMicro's) IP database. That kind of arrogance is why Apple has surpassed Microsoft in recent years as the #1 tech company in the world. People won't keep using something that continually doesn't work, like Windows Vista and now 8 - Okay, 8 is more compatible than Vista was but it's far less user friendly UNLESS you're on a touch screen tablet, which means they NEVER should have developed it for desktop and laptop use.
    I worked for Intuit from 2003 to 2006 and dev people in Mountian View ran me through the update process for their websites. There are protocols that remain constant that should NOT blacklist a new update from a trusted primary, secondary and tertiary domain that's properly written. It's what prevents hack sites (like... just an example: "xxx.porn.adobe.com") from getting onto a whitelist. Any GOOD antivirus company will have databases that maintain that primary ptrotocol. If they don't they're doing things bassackwards.
    I spent six years testing all kinds of software for compatibility, including several antivirus apps (but not F-secure). After all that, I made a rule for myself:
    ANY software that interferes with other software, especially software that I use frequently, is gone. If there's a more compatible replacement, I'll use it instead... if not, I'll learn to get by without it.
    I do graphic  and web design by trade, and anything that hinders productivity is a liability. Be it photoshop plugins that crash the app, A/V that screws with FTP, or whatever.

  • How can I get the XSLT source code?

    How can I get the XSLT source code?

    Actually, I want to parse customer reviews for academic purpose.
    I'm trying to follow the links in the customer reviews zone.
    For example:
    In the following page
    http://www.amazon.com/gp/product/customer-reviews/B000LU8A7E/sr=1-1/qid=1180473311/ref=cm_cr_dp_all_helpful/102-2890495-8864146?ie=UTF8&n=1065836&qid=1180473311&sr=1-1#customerReviews
    in the "customer reviews" section, there is a link "next" that gets the next 10 reviews.
    The thing is that I don't know how to imitate its action using java and actually, I'm not sure if it is possible to do that using software.
    I tried to look at the source code that I got using the previous java code I posted and I see that the next link always has the following href attributes "http://www.amazon.com/gp/product/customer-reviews/B000LU8A7E"
    I tried to see if there is any javascript that tells the page which 10 reviews to get but with no success.
    So if anyone knows how to imitate the next link action using software that will sure help me a lot.
    Thanks in advance

Maybe you are looking for

  • CAUTION : DO NOT USE LIVE UPDATE OR WINFLASH TO UPGRADE THE BIOS!

    Hello, I've been having trouble with my MSI K8N Neo2 Platinum motherboard a few weeks now. My system configuration is not heavy at all and consists of MSI K8N Neo2 Platinum nForce3 Ultra AMD64 Venice (E6) 3200+ 2 x 512Mb DDR400 Geil RAM 2.5-2-2-5 in

  • Issues linking media in cs3 project opened in cs5.5

    So trying to help out a co-worker with a project that was originally created in Premiere Pro 2. Taking that to CS 5.5 we are having issues linking AVI files. In Premiere Pro 2 and in CS3 premiere has no problem seeing the avi as an audio file or isn'

  • Business Process Monitoring - E-mail notification

    Hi all! I'm using BPM but i´m having problems with the e-mail notifications. In the Jobs option I´m receiving the e-mails correctly, but in the dialog transactions I do not receive anything. The main problem is that I can see in RZ20 (in the satellit

  • Zen Mozaic 8GB pin

    I NEED this mp3 player... but I can see that now it'ss only available in black. When can I get one? My mp3 player broke and I can't li've very long without music, but this player is worth the wait! Please tell me that it will be available soon!

  • Working with audio

    Hi, I've got a couple upcoming projects that will largely be focussed around music, and animating photography in AE in time to the music. I've checked the help guide, but can't seem to get preview with audio functioning properly. Is this even possibl