• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Publishing error "Cannot find signature in message"

N

Nayabk

Guest
Hello,
I get the following error when a user publishes the site:
The site cannot be published to the specified location.
FTP error: An unknown error has occurred. There was an exception running the extensions specified in the config file. ---> Cannot find signature in message.

Here is the relevant info from application.log:

2008-06-01 21:45:39,445 [1] ERROR SWsoft.SiteBuilder.Web.PublishUtil - Unknown error occured
SWsoft.SiteBuilder.BO.Facade.PublishException: Publish failed: unknown exception ---> System.Web.Services.Protocols.SoapException: There was an exception running the extensions specified in the config file. ---> Cannot find signature in message.
at SWsoft.SiteBuilder.Modules.Storage.Proxies.ServiceUtil.InvokeService[T](ObjectMethodInvoker fun)
at SWsoft.SiteBuilder.Modules.Storage.Proxies.DataFacadeProxy.ForceLocalUpgrade()
at SWsoft.SiteBuilder.BO.Facade.Publish.DynamicSitePublisher.PerformModulesMajorUpgrade(PublishSession publishSession)
at SWsoft.SiteBuilder.BO.Facade.Publish.DynamicSitePublisher.OnPublish(PublishSession publishSession, CheckResult cr)
at SWsoft.SiteBuilder.BO.Facade.Publish.SitePublisher.Publish(PublishSession publishSession)
at SWsoft.SiteBuilder.BO.Facade.Publish.PublishSiteCommand.<Run>b__0()
at SWsoft.SiteBuilder.BO.Facade.PublishHelper.CheckPublishExceptions(CheckPublishExceptionsMethod a_method)
at SWsoft.SiteBuilder.BO.Facade.Publish.PublishSiteCommand.Run()
--- End of inner exception stack trace ---


Please let me know what I can do to fix this.
 
Hello,
We are still waiting for an answer on this. Please let us know if we need to provide you any additional information. Thanks.
 
Problem background:
Sitebuilder communicates with published sites via soap to manage Sitebuilder modules. Each soap message should be signed with Sitebuilder private key to ensure security; site refuse unsigned messages and messages with incorrect signature that may come from malicious users.

Exception details indicates that Sitebuilder server sends unsigned messages, that is caused by incorrect application configuration.
Check following configuration sections in Sitebuilder web.config
1. <SoapSecurityExcludes>
It’s possible that published site url matches to one of the exclude url patterns defined in ths section.
2. webServices/soapExtensionTypes
This section should be defined as following in two places:
<location path="Wizard">
…
<system.web>
…
<webServices>
<soapExtensionTypes>
<clear/>
<add group="High" priority="1" type="SWsoft.SiteBuilder.Modules.Storage.Connector.WebServices.ServiceSecurity.SecuritySoapExtension, SiteBuilder.Modules.Storage.Connector"/>
</soapExtensionTypes>
</webServices>
</system.web>
</location>
<location path="Admin">
…
<system.web>
…
<webServices>
<soapExtensionTypes>
<clear/>
<add group="High" priority="1" type="SWsoft.SiteBuilder.Modules.Storage.Connector.WebServices.ServiceSecurity.SecuritySoapExtension, SiteBuilder.Modules.Storage.Connector"/>
</soapExtensionTypes>
</webServices>
</system.web>
</location>
In case these declarations are missed or incorrect, Sitebuilder may send unsigned messages.
 
Back
Top