Unable to view message in Sitecore 7.2 ECM
I am getting error as 'Connection refused to remote server' while accessing message in Email Campaign Manager. I was trying to test by sitecore/admin/ECM.requestbody.aspx where it's connecting to wrong rendering url which got modified when we moved our server to https.
I modified the Rendering URL field manually and clicked on 'Check'. Now I get Could not create SSL/TLS secure channel.
So, I navigated to System/Email Campaign Manager/GlobalSettings to configure Rendering URL field. But I don't see that field there. Do I have to upgrade ECM version to configure Rendering URL field.
Am I going in right direction? Please give me some input in resolving this.
ecm
add a comment |
I am getting error as 'Connection refused to remote server' while accessing message in Email Campaign Manager. I was trying to test by sitecore/admin/ECM.requestbody.aspx where it's connecting to wrong rendering url which got modified when we moved our server to https.
I modified the Rendering URL field manually and clicked on 'Check'. Now I get Could not create SSL/TLS secure channel.
So, I navigated to System/Email Campaign Manager/GlobalSettings to configure Rendering URL field. But I don't see that field there. Do I have to upgrade ECM version to configure Rendering URL field.
Am I going in right direction? Please give me some input in resolving this.
ecm
add a comment |
I am getting error as 'Connection refused to remote server' while accessing message in Email Campaign Manager. I was trying to test by sitecore/admin/ECM.requestbody.aspx where it's connecting to wrong rendering url which got modified when we moved our server to https.
I modified the Rendering URL field manually and clicked on 'Check'. Now I get Could not create SSL/TLS secure channel.
So, I navigated to System/Email Campaign Manager/GlobalSettings to configure Rendering URL field. But I don't see that field there. Do I have to upgrade ECM version to configure Rendering URL field.
Am I going in right direction? Please give me some input in resolving this.
ecm
I am getting error as 'Connection refused to remote server' while accessing message in Email Campaign Manager. I was trying to test by sitecore/admin/ECM.requestbody.aspx where it's connecting to wrong rendering url which got modified when we moved our server to https.
I modified the Rendering URL field manually and clicked on 'Check'. Now I get Could not create SSL/TLS secure channel.
So, I navigated to System/Email Campaign Manager/GlobalSettings to configure Rendering URL field. But I don't see that field there. Do I have to upgrade ECM version to configure Rendering URL field.
Am I going in right direction? Please give me some input in resolving this.
ecm
ecm
asked Dec 3 '18 at 7:36
user8927358
594
594
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
The answer by @bartłomiej-mucha is true for version 3.5 and above. In older versions of EXM (and ECM) you have to resort to implementing an extension as explained in Customize the Renderer URL setting in ECM:
To be able to specify the Renderer URL manually, you can implement a
small extension.
Check the following example:
Create a custom processor to update the Renderer URL with the value
from a configuration file. For example:
public void Process(PipelineArgs args)
{
Sitecore.Modules.EmailCampaign.GlobalSettings.RendererUrl = Settings.GetSetting("ECM.RendererUrl");
}
Add this processor to the pipeline of the web.config:
<pipelines>
<initialize>
...
<processor type="<your-processor-class-name, your-assembly" />
</initialize>
Specify the required value of the ECM.RendererUrl setting in the
web.config. This address should be accessible from the ECM server
(where the message is being created and dispatched) of your Sitecore
environment:
<settings>
...
<setting name="ECM.RendererUrl" value="http://yourhost" />
Thank you. I am trying this. Any idea under which namespace GlobalSettings come under? or I have to fetch 'System/Email Campaign Manager/GlobalSettings ' and update?
– user8927358
Dec 3 '18 at 9:29
@user8927358 Sitecore.Modules.EmailCampaign
– Jacob Nielsen
Dec 3 '18 at 10:37
Able to set the rendering Url with above steps. Thank you for the help :)
– user8927358
Dec 4 '18 at 6:46
add a comment |
Version Note: This answer applies to EXM 3.5 or Sitecore 9.X only.
You can configure EXM.RendererUrl
in the Sitecore.EmailExperience.Core.config
config file.
In case the setting is empty, the RendererUrl
is resolved on the first request to the application. In the <httpRequestBegin>
pipeline, there is a Sitecore.Modules.EmailCampaign.Core.Pipelines.HttpRequestBegin.OnHttpRequestBegin
processor that that does that:
GlobalSettings.RendererUrl = WebUtil.GetServerUrl(args.HttpContext.Request.Url, false);
You said that it worked ok previously on HTTP, but after you switched to HTTPS, it does not work. First I would focus on fixing the SSL/TLS issue. I bet that there is some problem with the certificate.
After moving to https hostname has been changed and we are using old ECM version only still. So, I assuming some settings issue only. Because after moving to https all other things are working fine except ECM. Any idea why Rendering URL field is not shown in Email Campaign Manager -> Settings -> Global Settings item?
– user8927358
Dec 3 '18 at 8:00
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "664"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsitecore.stackexchange.com%2fquestions%2f15319%2funable-to-view-message-in-sitecore-7-2-ecm%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The answer by @bartłomiej-mucha is true for version 3.5 and above. In older versions of EXM (and ECM) you have to resort to implementing an extension as explained in Customize the Renderer URL setting in ECM:
To be able to specify the Renderer URL manually, you can implement a
small extension.
Check the following example:
Create a custom processor to update the Renderer URL with the value
from a configuration file. For example:
public void Process(PipelineArgs args)
{
Sitecore.Modules.EmailCampaign.GlobalSettings.RendererUrl = Settings.GetSetting("ECM.RendererUrl");
}
Add this processor to the pipeline of the web.config:
<pipelines>
<initialize>
...
<processor type="<your-processor-class-name, your-assembly" />
</initialize>
Specify the required value of the ECM.RendererUrl setting in the
web.config. This address should be accessible from the ECM server
(where the message is being created and dispatched) of your Sitecore
environment:
<settings>
...
<setting name="ECM.RendererUrl" value="http://yourhost" />
Thank you. I am trying this. Any idea under which namespace GlobalSettings come under? or I have to fetch 'System/Email Campaign Manager/GlobalSettings ' and update?
– user8927358
Dec 3 '18 at 9:29
@user8927358 Sitecore.Modules.EmailCampaign
– Jacob Nielsen
Dec 3 '18 at 10:37
Able to set the rendering Url with above steps. Thank you for the help :)
– user8927358
Dec 4 '18 at 6:46
add a comment |
The answer by @bartłomiej-mucha is true for version 3.5 and above. In older versions of EXM (and ECM) you have to resort to implementing an extension as explained in Customize the Renderer URL setting in ECM:
To be able to specify the Renderer URL manually, you can implement a
small extension.
Check the following example:
Create a custom processor to update the Renderer URL with the value
from a configuration file. For example:
public void Process(PipelineArgs args)
{
Sitecore.Modules.EmailCampaign.GlobalSettings.RendererUrl = Settings.GetSetting("ECM.RendererUrl");
}
Add this processor to the pipeline of the web.config:
<pipelines>
<initialize>
...
<processor type="<your-processor-class-name, your-assembly" />
</initialize>
Specify the required value of the ECM.RendererUrl setting in the
web.config. This address should be accessible from the ECM server
(where the message is being created and dispatched) of your Sitecore
environment:
<settings>
...
<setting name="ECM.RendererUrl" value="http://yourhost" />
Thank you. I am trying this. Any idea under which namespace GlobalSettings come under? or I have to fetch 'System/Email Campaign Manager/GlobalSettings ' and update?
– user8927358
Dec 3 '18 at 9:29
@user8927358 Sitecore.Modules.EmailCampaign
– Jacob Nielsen
Dec 3 '18 at 10:37
Able to set the rendering Url with above steps. Thank you for the help :)
– user8927358
Dec 4 '18 at 6:46
add a comment |
The answer by @bartłomiej-mucha is true for version 3.5 and above. In older versions of EXM (and ECM) you have to resort to implementing an extension as explained in Customize the Renderer URL setting in ECM:
To be able to specify the Renderer URL manually, you can implement a
small extension.
Check the following example:
Create a custom processor to update the Renderer URL with the value
from a configuration file. For example:
public void Process(PipelineArgs args)
{
Sitecore.Modules.EmailCampaign.GlobalSettings.RendererUrl = Settings.GetSetting("ECM.RendererUrl");
}
Add this processor to the pipeline of the web.config:
<pipelines>
<initialize>
...
<processor type="<your-processor-class-name, your-assembly" />
</initialize>
Specify the required value of the ECM.RendererUrl setting in the
web.config. This address should be accessible from the ECM server
(where the message is being created and dispatched) of your Sitecore
environment:
<settings>
...
<setting name="ECM.RendererUrl" value="http://yourhost" />
The answer by @bartłomiej-mucha is true for version 3.5 and above. In older versions of EXM (and ECM) you have to resort to implementing an extension as explained in Customize the Renderer URL setting in ECM:
To be able to specify the Renderer URL manually, you can implement a
small extension.
Check the following example:
Create a custom processor to update the Renderer URL with the value
from a configuration file. For example:
public void Process(PipelineArgs args)
{
Sitecore.Modules.EmailCampaign.GlobalSettings.RendererUrl = Settings.GetSetting("ECM.RendererUrl");
}
Add this processor to the pipeline of the web.config:
<pipelines>
<initialize>
...
<processor type="<your-processor-class-name, your-assembly" />
</initialize>
Specify the required value of the ECM.RendererUrl setting in the
web.config. This address should be accessible from the ECM server
(where the message is being created and dispatched) of your Sitecore
environment:
<settings>
...
<setting name="ECM.RendererUrl" value="http://yourhost" />
edited Dec 3 '18 at 10:37
answered Dec 3 '18 at 8:31
Jacob Nielsen
2,115527
2,115527
Thank you. I am trying this. Any idea under which namespace GlobalSettings come under? or I have to fetch 'System/Email Campaign Manager/GlobalSettings ' and update?
– user8927358
Dec 3 '18 at 9:29
@user8927358 Sitecore.Modules.EmailCampaign
– Jacob Nielsen
Dec 3 '18 at 10:37
Able to set the rendering Url with above steps. Thank you for the help :)
– user8927358
Dec 4 '18 at 6:46
add a comment |
Thank you. I am trying this. Any idea under which namespace GlobalSettings come under? or I have to fetch 'System/Email Campaign Manager/GlobalSettings ' and update?
– user8927358
Dec 3 '18 at 9:29
@user8927358 Sitecore.Modules.EmailCampaign
– Jacob Nielsen
Dec 3 '18 at 10:37
Able to set the rendering Url with above steps. Thank you for the help :)
– user8927358
Dec 4 '18 at 6:46
Thank you. I am trying this. Any idea under which namespace GlobalSettings come under? or I have to fetch 'System/Email Campaign Manager/GlobalSettings ' and update?
– user8927358
Dec 3 '18 at 9:29
Thank you. I am trying this. Any idea under which namespace GlobalSettings come under? or I have to fetch 'System/Email Campaign Manager/GlobalSettings ' and update?
– user8927358
Dec 3 '18 at 9:29
@user8927358 Sitecore.Modules.EmailCampaign
– Jacob Nielsen
Dec 3 '18 at 10:37
@user8927358 Sitecore.Modules.EmailCampaign
– Jacob Nielsen
Dec 3 '18 at 10:37
Able to set the rendering Url with above steps. Thank you for the help :)
– user8927358
Dec 4 '18 at 6:46
Able to set the rendering Url with above steps. Thank you for the help :)
– user8927358
Dec 4 '18 at 6:46
add a comment |
Version Note: This answer applies to EXM 3.5 or Sitecore 9.X only.
You can configure EXM.RendererUrl
in the Sitecore.EmailExperience.Core.config
config file.
In case the setting is empty, the RendererUrl
is resolved on the first request to the application. In the <httpRequestBegin>
pipeline, there is a Sitecore.Modules.EmailCampaign.Core.Pipelines.HttpRequestBegin.OnHttpRequestBegin
processor that that does that:
GlobalSettings.RendererUrl = WebUtil.GetServerUrl(args.HttpContext.Request.Url, false);
You said that it worked ok previously on HTTP, but after you switched to HTTPS, it does not work. First I would focus on fixing the SSL/TLS issue. I bet that there is some problem with the certificate.
After moving to https hostname has been changed and we are using old ECM version only still. So, I assuming some settings issue only. Because after moving to https all other things are working fine except ECM. Any idea why Rendering URL field is not shown in Email Campaign Manager -> Settings -> Global Settings item?
– user8927358
Dec 3 '18 at 8:00
add a comment |
Version Note: This answer applies to EXM 3.5 or Sitecore 9.X only.
You can configure EXM.RendererUrl
in the Sitecore.EmailExperience.Core.config
config file.
In case the setting is empty, the RendererUrl
is resolved on the first request to the application. In the <httpRequestBegin>
pipeline, there is a Sitecore.Modules.EmailCampaign.Core.Pipelines.HttpRequestBegin.OnHttpRequestBegin
processor that that does that:
GlobalSettings.RendererUrl = WebUtil.GetServerUrl(args.HttpContext.Request.Url, false);
You said that it worked ok previously on HTTP, but after you switched to HTTPS, it does not work. First I would focus on fixing the SSL/TLS issue. I bet that there is some problem with the certificate.
After moving to https hostname has been changed and we are using old ECM version only still. So, I assuming some settings issue only. Because after moving to https all other things are working fine except ECM. Any idea why Rendering URL field is not shown in Email Campaign Manager -> Settings -> Global Settings item?
– user8927358
Dec 3 '18 at 8:00
add a comment |
Version Note: This answer applies to EXM 3.5 or Sitecore 9.X only.
You can configure EXM.RendererUrl
in the Sitecore.EmailExperience.Core.config
config file.
In case the setting is empty, the RendererUrl
is resolved on the first request to the application. In the <httpRequestBegin>
pipeline, there is a Sitecore.Modules.EmailCampaign.Core.Pipelines.HttpRequestBegin.OnHttpRequestBegin
processor that that does that:
GlobalSettings.RendererUrl = WebUtil.GetServerUrl(args.HttpContext.Request.Url, false);
You said that it worked ok previously on HTTP, but after you switched to HTTPS, it does not work. First I would focus on fixing the SSL/TLS issue. I bet that there is some problem with the certificate.
Version Note: This answer applies to EXM 3.5 or Sitecore 9.X only.
You can configure EXM.RendererUrl
in the Sitecore.EmailExperience.Core.config
config file.
In case the setting is empty, the RendererUrl
is resolved on the first request to the application. In the <httpRequestBegin>
pipeline, there is a Sitecore.Modules.EmailCampaign.Core.Pipelines.HttpRequestBegin.OnHttpRequestBegin
processor that that does that:
GlobalSettings.RendererUrl = WebUtil.GetServerUrl(args.HttpContext.Request.Url, false);
You said that it worked ok previously on HTTP, but after you switched to HTTPS, it does not work. First I would focus on fixing the SSL/TLS issue. I bet that there is some problem with the certificate.
edited Dec 4 '18 at 0:07
Pete Navarra
10.3k2674
10.3k2674
answered Dec 3 '18 at 7:50
Bartłomiej Mucha
858219
858219
After moving to https hostname has been changed and we are using old ECM version only still. So, I assuming some settings issue only. Because after moving to https all other things are working fine except ECM. Any idea why Rendering URL field is not shown in Email Campaign Manager -> Settings -> Global Settings item?
– user8927358
Dec 3 '18 at 8:00
add a comment |
After moving to https hostname has been changed and we are using old ECM version only still. So, I assuming some settings issue only. Because after moving to https all other things are working fine except ECM. Any idea why Rendering URL field is not shown in Email Campaign Manager -> Settings -> Global Settings item?
– user8927358
Dec 3 '18 at 8:00
After moving to https hostname has been changed and we are using old ECM version only still. So, I assuming some settings issue only. Because after moving to https all other things are working fine except ECM. Any idea why Rendering URL field is not shown in Email Campaign Manager -> Settings -> Global Settings item?
– user8927358
Dec 3 '18 at 8:00
After moving to https hostname has been changed and we are using old ECM version only still. So, I assuming some settings issue only. Because after moving to https all other things are working fine except ECM. Any idea why Rendering URL field is not shown in Email Campaign Manager -> Settings -> Global Settings item?
– user8927358
Dec 3 '18 at 8:00
add a comment |
Thanks for contributing an answer to Sitecore Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsitecore.stackexchange.com%2fquestions%2f15319%2funable-to-view-message-in-sitecore-7-2-ecm%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown