Thanks for the tip, however that still did not resolve the issue. What I
eventually found was a ZoneUpdater mixin based on this:
http://tinybits.blogspot.com/2010/03/new-and-better-zoneupdater.html

Anyway, for some reason the ZoneUpdater mixin needs to be explicitly told
to use a secure transport, even though it gets the callback from component
resources:

(from the ZoneUpdater code)
 String listenerURI = componentResources.createEventLink(event,
context).toAbsoluteURI(secure);

Anyway, I fixed it by creating a page method that returns whether or not
it's in ssl mode, and use that flag for the ZoneUpdater "secure" parameter.



On Tue, Sep 17, 2013 at 5:48 AM, Michael Gagauz <[email protected]> wrote:

> Hi.
> Make sure you added  SymbolConstants.SECURE_ENABLED to your app
> configuration.
>
> In AppModule there should be method:
>
> protected static void contributeApplicationDefaults(**final
> MappedConfiguration<String, String> configuration) {
>         configuration.add(**SymbolConstants.SECURE_**ENABLED, "true");
>
>
> 17.09.2013 13:07, George Ludwig пишет:
>
>  I recently secured my webapp using an ssl certificate. Everything is
>> great,
>> except the jquery/autocomplete mixin generates an ajax url with an http
>> protocal, rather than an https protocol, causing the ajax call to fail.
>>
>> Is there an easy way to configure the protocol used?
>>
>>
> ------------------------------**------------------------------**---------
> To unsubscribe, e-mail: 
> users-unsubscribe@tapestry.**apache.org<[email protected]>
> For additional commands, e-mail: [email protected]
>
>

Reply via email to