• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

Configuration of SMSTeknik NetServer SMS Plugin

Some tooltip text!
• 2 minutes to read
 • 2 minutes to read

This document describes how to set up the SMSTeknik NetServer SMS plugin to use in Customer Service. You need to set up an account with SMSTeknik to get a username and password to connect to their service.

Outgoing SMS Configuration from SuperOffice 8.0 SR3

Go to System - SMS inside the Service client or Mailings - Settings inside Sales & Marketing client. Choose SMS Teknik in the list of available modules

In the Plugin configuration you add:

smsteknik_serviceId =
smsteknik_username =
smsteknik_password =

x -screenshot

Note - do not include the brackets.

Outgoing SMS Configuration in SR2 or earlier

The file SupeOffice.Messaging.SMSTeknik.dll must be copied manually to the NetServer library folder (bin folder). Click to download version 8.0 SR2.

Web.config settings

Under configuration, add and replace username and password with the information you have from SMSTeknik:

<appSettings>
  <!-- Company name, provided by SMS Teknik  -->
  <add key="smsteknik\serviceId" value="[ServiceID]" />
  <!-- Username, provided by SMS Teknik  -->
  <add key="smsteknik_username" value="[Username]" />
  <!-- Password, provided by SMS Teknik -->
  <add key="smsteknik_password" value="[Password]" />
  <!-- 0=disabled (160 char), 1=enabled (up to 918 chars) -->
  <add key="smsteknik_multisms" value="1" />
  <!-- 0=disabled, 1-6 SMS count (max) -->
  <add key="smsteknik_maxmultisms" value="6"/>
</appSettings>

Under configuration -> SuperOffice -> Factory -> DynamicLoad add:

<add key="SuperOffice.Messaging.SMSTeknik" value="SuperOffice.Messaging.SMSTeknik.dll" />

Under configuration -> system.serviceModel add:

<client>
  <endpoint address="https://www.smsteknik.se/webservices/SendSMSws1/Service.asmx"
            binding="basicHttpBinding" bindingConfiguration="SendSMSSoap"
            contract="SMSTeknikGW.SendSMSSoap" name="SendSMSSoap" />
</client>

Under configuration -> system.serviceModel -> bindings, add:

<basicHttpBinding>
  <binding name="SendSMSSoap" closeTimeout="00:01:00" openTimeout="00:01:00"
           receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
           bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
           maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
           messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
           useDefaultWebProxy="true">
    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    <security mode="Transport">
      <transport clientCredentialType="None" proxyCredentialType="None" realm="" />
      <message clientCredentialType="UserName" algorithmSuite="Default" />
    </security>
  </binding>
  <binding name="SendSMSSoap1" closeTimeout="00:01:00" openTimeout="00:01:00"
           receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
           bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
           maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
           messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
           useDefaultWebProxy="true">
    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                  maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    <security mode="None">
      <transport clientCredentialType="None" proxyCredentialType="None" realm="" />
      <message clientCredentialType="UserName" algorithmSuite="Default" />
    </security>
  </binding>
</basicHttpBinding>
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top