<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Umlaut in the Billing Address in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56373#M31169</link>
    <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20843"&gt;@Aaron&lt;/a&gt;, thank you very much, it works great :) I have used ISO-8859-1 and URLEncoding.&amp;nbsp;Best regards!&lt;/P&gt;</description>
    <pubDate>Thu, 08 Dec 2016 17:32:14 GMT</pubDate>
    <dc:creator>alenan2013</dc:creator>
    <dc:date>2016-12-08T17:32:14Z</dc:date>
    <item>
      <title>Umlaut in the Billing Address</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56281#M31084</link>
      <description>&lt;P&gt;I am using Authorise.Net for billing verification in my DotNetNuke site. I have an user from Norway who wants to pay, but he has umlauts (special characters from Norway alphabet like Ø in his billing address). During payment process, he received error code 3/2/33 ERROR Bill To Address is required. When I tested with normal aplphabet characters, I didn't receive this error.&amp;nbsp; How should I resolve this problem? How should I code this umlaut?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for any help.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2016 19:34:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56281#M31084</guid>
      <dc:creator>alenan2013</dc:creator>
      <dc:date>2016-11-30T19:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Umlaut in the Billing Address</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56304#M31105</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20946"&gt;@alenan2013&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What kind of encoding do you have going on in your application? Is your development environment&amp;nbsp;set to any particular kind of encoding like UTF-8?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried any encoding of the special characters yourself? For example, what happens if you URLencode that character string before you send it?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2016 18:36:13 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56304#M31105</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2016-12-02T18:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Umlaut in the Billing Address</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56309#M31110</link>
      <description>&lt;P&gt;Aaron, thank you for your interest and help. Yes, we have used UTF-8. Please suggest what to do. The code is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Public Sub connectToServer()
            Dim objRequest As System.Net.HttpWebRequest = CType(System.Net.WebRequest.Create(url), System.Net.HttpWebRequest)

            parseParamList()
            _result = String.Empty

            objRequest.Method = "POST"
            objRequest.ContentLength = _stList.Length
            objRequest.ContentType = "application/x-www-form-urlencoded;charset=UTF-8"

            Dim myWriter As System.IO.StreamWriter = Nothing
            Try
                myWriter = New System.IO.StreamWriter(objRequest.GetRequestStream())
                myWriter.Write(_stList)

                'Dim serverPath As String = "c:\inetpub\wwwroot\Portals\0\IGD\Archive\Cards\"
                'Dim fileStamp As String = Date.Now.ToString("yyyyMMddhhmmss")
                'Dim fileName As String = String.Format("{0}{1}_cardCall.txt", serverPath, fileStamp)

                'System.IO.File.WriteAllText(fileName, _stList)


                passed = True
            Catch e As Exception
                passed = False
                _errorMessage = e.Message
                Exit Sub
            Finally
                passed = True
                myWriter.Close()
            End Try


            Try
                Dim objResponse As System.Net.HttpWebResponse = CType(objRequest.GetResponse(), System.Net.HttpWebResponse)
                Dim sr As New System.IO.StreamReader(objResponse.GetResponseStream())
                _result = sr.ReadToEnd()

                sr.Close()

                Dim resArray As String()

                resArray = _result.Split("|")

                responseCode = resArray(0).Trim()
                responseReasonCode = resArray(2).Trim()
                successMessage = resArray(3)


                If (responseCode = "1") Then
                    'passed
                    passed = True
                    transactionID = resArray(6).Trim()

                Else

                    errorMessage = "CODE: " &amp;amp; resArray(0) &amp;amp; "/" &amp;amp; resArray(1) &amp;amp; "/" &amp;amp; resArray(2) &amp;amp; "&amp;lt;br /&amp;gt;" &amp;amp; "ERROR: " &amp;amp; resArray(3)

                    successMessage = String.Empty
                    transactionID = String.Empty
                    passed = False
                End If
            Catch ex As Exception
                errorMessage = "Unable to connect the server " &amp;amp; ex.Message
                successMessage = String.Empty
                transactionID = String.Empty
                passed = False
            End Try





        End Sub&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Dec 2016 19:12:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56309#M31110</guid>
      <dc:creator>alenan2013</dc:creator>
      <dc:date>2016-12-02T19:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Umlaut in the Billing Address</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56312#M31112</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From that segment of code, it looks like that's just setting the request headers to indicate UTF-8 in the request sent to the server. However, I'm wondering what your code is doing encoding wise before the request even gets to the server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can verify that our system should be able to support at least ISO-8859-1 encoding, but that depends on getting the characters encoded correctly when they get sent to us.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can try a couple of things here. You can change "UTF-8" to "&lt;SPAN&gt;ISO-8859-1" to signal to the server that things are&amp;nbsp;ISO-8859-1 encoded and see if that makes a difference. You could also add an encoding pass on the input you receive to specifically encode it before sending it to us.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2016 19:59:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56312#M31112</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2016-12-02T19:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Umlaut in the Billing Address</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56373#M31169</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20843"&gt;@Aaron&lt;/a&gt;, thank you very much, it works great :) I have used ISO-8859-1 and URLEncoding.&amp;nbsp;Best regards!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2016 17:32:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Umlaut-in-the-Billing-Address/m-p/56373#M31169</guid>
      <dc:creator>alenan2013</dc:creator>
      <dc:date>2016-12-08T17:32:14Z</dc:date>
    </item>
  </channel>
</rss>

