Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Localhost Main Content

  1. #1
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Exclamation Localhost Main Content

    We have got a copy of our live site running locally however the main content is not been displayed.

    The main content area just shows:

    Code:
    XmlPackage Exception: Exception=Last Trace Point=[]. Cannot find the script or external object that implements prefix 'urn:customResultXmlUtils'.
    
    
    System.ArgumentException: Last Trace Point=[]. Cannot find the script or external object that implements prefix 'urn:customResultXmlUtils'.
    
    at AspDotNetStorefrontCore.XmlPackage2.TransformString() at AspDotNetStorefrontCore.AppLogic.RunXmlPackage(XmlPackage2 p, Parser UseParser, Customer ThisCustomer, Int32 SkinID, Boolean ReplaceTokens, Boolean WriteExceptionMessage)
    I really have no idea where to go from here.

    Thanks in advance.

    p.s.
    topic pages work fine as does the sign in page, only product, category and home pages show this error
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  2. #2
    MarkC is offline Developer
    Join Date
    Aug 2006
    Posts
    166

    Default

    Seems like you're using custom xslt extensions(this one is missing customResultXmlUtils) but don't have it registered on web.config.
    check your web.config for this entry:

    Code:
    <xsltobjects defaultExtension="">
          <extensions>
            <clear/>     
             <!-- custom extensions should be defined here, same as this line--> 
            <add name="receipt" namespace="urn:receipt" type="ReceiptXsltExtension, app_code"></add>       
          </extensions>
        </xsltobjects>
    You'll have to make sure also that the class mapped to that extension is present on your codebase

  3. #3
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    Found the problem thanks for that!
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience