Try our conversational search powered by Generative AI!

how to increase Remaining Url length of Episerver URL link type

Vote:
 

Hi there,

I have tried all the below solutions I found on EPi forums.

Also tried adding a custom backing type and still the max length of characters I can put in the Remaining Url field of Episerver Url property is 407 but I need atleast 500 characters there.

<httpRuntime targetFramework="4.6.1" requestValidationMode="2.0" enableVersionHeader="false" maxRequestLength="51200" executionTimeout="300" maxUrlLength="10240" relaxedUrlToFileSystemMapping="true" maxQueryStringLength="2097100" />

also tried maxUrlLength - 1024/2048 & maxQueryStringLength-65536 but same output!!

also based on some other references tried below -

<requestFiltering>
<requestLimits maxUrl="30000" maxQueryString="209007151" maxAllowedContentLength="204800000" />
</requestFiltering>

nothing so far!!!

Created Custom Backing type like below - 

[PropertyDefinitionTypePlugIn, Serializable]
	public class PropertyUrlWithLength : PropertyUrl {
		public override int MaxLength {
			get {
				var section = ConfigurationManager.GetSection("system.web/httpRuntime") as HttpRuntimeSection;
				return section?.MaxUrlLength ?? base.MaxLength;
			}
			set {
				// Cannot set from code.
			}
		}
	}

And then, on your property declare it like this:

[Display(Order = 11), BackingType(typeof(PropertyUrlWithLength))]
public virtual Url ButtonUrl { get; set; }

What am I missing here and what else can I do to acheive longer URL length. 

#223394
May 27, 2020 2:01
Vote:
 

What is the total length of the Url?

The tblContentProperty String column in an nvarchar(450) so my guess is you're exceeding that.

#223754
Jun 03, 2020 16:12
Vote:
 

What you could in theory do is back the Url with a LongString.

The following is essentially the PropertyLongString and PropertyUrl mashed together. I did test it quickly, althought no guarantees it'll work 100%for example, if you're planning on exporting content and importing elsewhere you might also want to look at implementing a PropertyTransform.

[PropertyDefinitionTypePlugIn, Serializable]
public class PropertyLongUrl : PropertyLongString, IReferenceMap
{
    /// <summary>
    /// Gets the specific link type for a URL.
    /// </summary>
    /// <value>The specific link type for a URL.</value>
    /// <remarks>The link editor type for a URL is 130.</remarks>
    public virtual int LinkEditorType => 130;

    private List<Guid> _permanentLinkIdList;

    /// <summary>
    /// Gets or sets the URL resolver.
    /// </summary>
    /// <value>The URL resolver.</value>
    public Injected<IUrlResolver> LinkResolver { get; set; }

    /// <summary>
    /// Gets the type of the property value, in this case <see cref="P:EPiServer.SpecializedProperties.PropertyUrl.Url" />.
    /// </summary>
    /// <value>The type of the property value.</value>
    public override Type PropertyValueType => typeof(Url);

    protected override string LongString
    {
        get
        {
            var str = base.LongString;

            return str == "#" ? string.Empty : VirtualPathResolver.Instance.ToAbsoluteOrSame(str);
        }
        set
        {
            if (string.IsNullOrEmpty(value))
            {
                base.LongString = value;
                return;
            }

            var uri = CreateUri(value);

            if (LinkResolver.Service.TryToPermanent(value, out var str))
            {
                base.LongString = str;
                return;
            }

            ValidateUri(uri);
            base.LongString = uri.ToString();
        }
    }

    /// <summary>
    /// This is lifted from the UriUtil (EPiServer.Web) as the method is internal.
    /// </summary>
    internal static Uri CreateUri(string link)
    {
        if (string.IsNullOrEmpty(link))
        {
            return null;
        }

        if (!Uri.TryCreate(link, UriKind.RelativeOrAbsolute, out var uri))
        {
            throw new UriFormatException(string.Format(CultureInfo.InvariantCulture, "Malformed URI? Could not create Uri from link with value '{0}'.", link));
        }

        if (uri.IsAbsoluteUri)
        {
            var authority = uri.Authority;
        }

        else if (UriUtil.IsSchemeSpecified(link))
        {
            throw new UriFormatException("Malformed URI? Absolute URI (scheme specified) which is not recognized as such by System.Uri.");
        }

        return uri;
    }

    /// <summary>
    /// Gets or sets the URL.
    /// </summary>
    /// <value>The URL.</value>
    /// <remarks>To change the URL, create a new <see cref="P:EPiServer.SpecializedProperties.PropertyUrl.Url" /> instance and set the property.</remarks>
    public Url Url
    {
        get => Value as Url;
        set => Value = value;
    }

    /// <inheritdoc />
    public override object Value
    {
        get => IsNull ? null : new Url(LongString);
        set
        {
            SetPropertyValue(value, () => LongString = value.ToString());
        }
    }

    /// <summary>
    /// Sets the internal representation from what is stored in the database. "Deserialize"
    /// </summary>
    /// <param name="value">The value.</param>
    /// <remarks>Set the value to the unresolved link value.</remarks>
    public override void LoadData(object value)
    {
        base.LongString = value as string;
    }

    /// <summary>
    /// Override to avoid the base class referring to our Value property to avoid dead-lock
    /// when this happens indirectly via DataFactory.
    /// </summary>
    public override void MakeReadOnly()
    {
        if (IsReadOnly)
        {
            return;
        }
        IsModified = false;
        IsReadOnly = true;
    }

    /// <summary>
    /// Get the data representation suitable for storing to the database.
    /// </summary>
    /// <param name="properties">The properties for the current page.</param>
    /// <returns>A string representation of the value that should be saved.</returns>
    /// <remarks>Returns the unresolved link.</remarks>
    public override object SaveData(PropertyDataCollection properties)
    {
        return base.LongString;
    }

    /// <summary>
    /// Gets the string representation of the "raw" data as it is represented externally in the database
    /// and in export packages.
    /// </summary>
    /// <returns>external string representation of property value</returns>
    [Obsolete("Method will no longer be called on Export. See EPiServer.Core.Transfer.Internal.PropertyUrlTransform class for equivalent functionality.")]
    public override string ToRawString()
    {
        return base.LongString ?? string.Empty;
    }

    /// <summary>
    /// Validates the URI before saving.
    /// </summary>
    /// <param name="uri">The URI.</param>
    /// <remarks>In order to abort the saving, this method should throw an <see cref="T:System.Exception" />.</remarks>
    protected virtual void ValidateUri(Uri uri)
    {
    }

    public void RemapPermanentLinkReferences(IDictionary<Guid, Guid> idMap)
    {
        var str = base.LongString;

        var guid1 = PermanentLinkUtility.GetGuid(str);

        if (guid1 == Guid.Empty)
        {
            return;
        }

        if (!idMap.TryGetValue(guid1, out var guid))
        {
            return;
        }

        if (guid == Guid.Empty)
        {
            var guid2 = Guid.NewGuid();
            var guid3 = guid2;
            idMap[guid1] = guid2;
            guid = guid3;
        }

        base.LongString = PermanentLinkUtility.ChangeGuid(str, guid);
        Modified();
    }

    public IList<Guid> ReferencedPermanentLinkIds
    {
        get
        {
            if (_permanentLinkIdList != null)
            {
                return _permanentLinkIdList;
            }

            _permanentLinkIdList = new List<Guid>(1);

            var guid = PermanentLinkUtility.GetGuid(base.LongString);

            if (guid != Guid.Empty)
            {
                _permanentLinkIdList.Add(guid);
            }

            return _permanentLinkIdList;
        }
    }
}
#223755
Edited, Jun 03, 2020 17:19
Vote:
 

Thanks @JakeJones the solution worked like a charm on my local, didn't get a chance to test it yet on integration but pretty sure it would work. We do heavily use content export and import across environments so can you please elaborate a bit on using PropertyTransform as you have suggested in the above answer, may be if you can point in direction of any example?

Also, I want to read up a bit more on how you reached the above solution to understand the concepts better. Is there any documentation you reffered to or did you came up the with whole solution(I mean code for custom PropertyLongUrl backing type)?

Anyways thanks again, I almost gave up, didn't think there is a way to change length but this explains I need to learn a lot more :P

Cheers!

#224120
Jun 11, 2020 13:38
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.