<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Stefan Nachev's Blog</title><subtitle type="html">Info about MaxQ and MBS applications...Credit Card industry news as well.</subtitle><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/atom.aspx</id><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/default.aspx" /><link rel="self" type="application/atom+xml" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/atom.aspx" /><generator uri="http://communityserver.org" version="2.0.60217.2664">Community Server</generator><updated>2008-02-07T19:36:00Z</updated><entry><title>Can APAPR Laser Checks for SL print checks or check copies to a PDF?</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/11/20/3695.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/11/20/3695.aspx</id><published>2009-11-20T17:54:00Z</published><updated>2009-11-20T17:54:00Z</updated><content type="html">The actual printer can be configured to do that. Then when checks or check copies are printed, if the printer has been configured so, it will create a PDF file instead of printing to paper.&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3695" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>In APPR Laser Checks for SL - Do check copies print as the checks are printed or is there a separate process which does that? </title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/11/20/3694.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/11/20/3694.aspx</id><published>2009-11-20T17:50:00Z</published><updated>2009-11-20T17:50:00Z</updated><content type="html">There is an option to have the application print copies automatically right after the actual checks print. 
There is also an option to print copies at a later point, whenever the user needs to do that (there is a special screen for that purpose).
&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3694" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>Charge It Object info.....</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/11/18/3693.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/11/18/3693.aspx</id><published>2009-11-18T21:10:00Z</published><updated>2009-11-18T21:10:00Z</updated><content type="html">&lt;P&gt;
The chargeIT object uses constants to generate various error messages. The constants are defined as:
&lt;/P&gt;
&lt;P&gt;
Private Const vbObjectError  = -2147221504 
&lt;/P&gt;

&lt;P&gt;Private Const kERROR_DATA = 1
&lt;/P&gt;
&lt;P&gt;Private Const kERROR_PCCHARGE = 2
&lt;/P&gt;
&lt;P&gt;Private Const kERROR_MAINTMODE = 3
&lt;/P&gt;
&lt;P&gt;Private Const kERROR_BATCLOSE = 4
&lt;/P&gt;Private Const kERROR_INVALIDCARD = 5
&lt;P&gt;Private Const kERROR_INVALIDEXPDATE  = 6&lt;/P&gt;

&lt;P&gt;
The message that are raised are as per below:
Err.Raise kERROR_DATA + vbObjectError, "Add Transaction", "Cannot charge a counter sale in AR."
&lt;/P&gt;
&lt;P&gt;Err.Raise kERROR_DATA + vbObjectError, "XCCTran.Save", "Must enter all key fields to before saving."
&lt;/P&gt;
&lt;P&gt;Err.Raise kERROR_DATA + vbObjectError, "XCCTran.Save", "Field data invalid.  Cannot save at this time.  " &amp; sResults
&lt;/P&gt;

&lt;P&gt;Err.Raise kERROR_DATA + vbObjectError, "Submit_Card", "Incomplete data for processing transaction.  " &amp; sResults
&lt;/P&gt;

&lt;P&gt;Err.Raise kERROR_PCCHARGE + vbObjectError, "Submit_Card", "Error Transaction Processing Software not Running"
&lt;/P&gt;

&lt;P&gt;Err.Raise kERROR_MAINTMODE + vbObjectError, "Submit_Card", "CEP Charge It! is in maintenance mode. You cannot process transactions at this time. Please try again later."
&lt;/P&gt;

&lt;P&gt;Err.Raise kERROR_BATCLOSE + vbObjectError, "Batch Close in progress. Please try again later."
&lt;/P&gt;

&lt;P&gt;Err.Raise kERROR_INVALIDCARD + vbObjectError, "CardNbr", "Attempting to set card number to an invalid credit card."
&lt;/P&gt;
&lt;P&gt;Err.Raise kERROR_INVALIDEXPDATE + vbObjectError, "ExpDate", "Attempting to set expiration date to an invalid date."
&lt;/P&gt;

&lt;P&gt;The client application (your ASP page) will see the above errors with various numbers as below:
&lt;/P&gt;

&lt;P&gt;kERROR_DATA + vbObjectError =  -2147221503
&lt;/P&gt;

&lt;P&gt;kERROR_PCCHARGE + vbObjectError = -2147221502
&lt;/P&gt;

&lt;P&gt;kERROR_MAINTMODE + vbObjectError = -2147221501
&lt;/P&gt;

&lt;P&gt;kERROR_BATCLOSE + vbObjectError = -2147221500
&lt;/P&gt;
&lt;P&gt;kERROR_INVALIDCARD + vbObjectError = -2147221499
&lt;/P&gt;
&lt;P&gt;kERROR_INVALIDEXPDATE  + vbObjectError =  -2147221498
&lt;/P&gt;

&lt;P&gt;In other words, if you get an error with number -2147221503, the error message could be "Cannot charge a counter sale in AR." or "Must enter all key fields to before saving.", "Field data invalid.  Cannot save at this time.  " , "Incomplete data for processing transaction.  "
&lt;/P&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3693" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>MaxQ AP and Payroll Laser Checks for Dynamics GP (with Crystal Reports) now available</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/07/29/3678.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/07/29/3678.aspx</id><published>2009-07-29T20:02:00Z</published><updated>2009-07-29T20:02:00Z</updated><content type="html">MaxQ APPR Laser Checks for Dynamics GP (with Crystal Reports) is now available.

Please contact MaxQ for additional information - sales@maxqtech.com; support@maxqtech.com

&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3678" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>MaxQ Document Agent now supports Site level contacts for sending Purchase Orders</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/04/23/3666.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/04/23/3666.aspx</id><published>2009-04-23T20:56:00Z</published><updated>2009-04-23T20:56:00Z</updated><content type="html">MaxQ Document Agent now supports Site level contacts for sending Purchase Orders.

For details please contact MaxQ support.&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3666" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>MaxQ Charge It support for PCCharge Payment Server v5.8.0</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/03/18/3655.aspx" /><link rel="enclosure" type="application/pdf" length="203283" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/attachment/3655.ashx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/03/18/3655.aspx</id><published>2009-03-18T17:52:00Z</published><updated>2009-03-18T17:52:00Z</updated><content type="html">&lt;P&gt;MaxQ Charge It support for PCCharge Payment Server v5.8.0.&lt;/P&gt;
&lt;P&gt;PCCharge Payment Server v5.8.0 is now available and supported by MaxQ Charge It for PCCharge.&lt;/P&gt;
&lt;P&gt;Attached is a file outlining important information regarding this new PCCharge version.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3655" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>2009 Rate and Zone information for UPS and Fedex is now available for MaxQ Freight and MaxQ Worldship Link</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/01/08/3651.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2009/01/08/3651.aspx</id><published>2009-01-08T23:08:00Z</published><updated>2009-01-08T23:08:00Z</updated><content type="html">&lt;P&gt;2009 Rate and Zone information for UPS and Fedex is now available for MaxQ Freight and MaxQ Worldship Link.&lt;/P&gt;
&lt;P&gt;These updates are available for Dynamics SL 6, 6.5 and 7.&lt;/P&gt;
&lt;P&gt;In order to obtain the necessary files please contact our support desk at &lt;A href="mailto:support@maxqtech.com"&gt;support@maxqtech.com&lt;/A&gt;.&lt;/P&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3651" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>BI: Add Advanced Functionality to Your Matrix Reports by Using the INSCOPE Function</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/12/08/3647.aspx" /><link rel="enclosure" type="application/octet-stream" length="22267" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/attachment/3647.ashx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/12/08/3647.aspx</id><published>2008-12-08T17:16:00Z</published><updated>2008-12-08T17:16:00Z</updated><content type="html">A Matrix report is a powerful tool for delivering complicated statistical reports to your users.&amp;nbsp; Often your data will not have a static number of rows and columns which may make grouping and subtotaling a challenge.&amp;nbsp; Fortunately, Reporting Services has an answer for you.&amp;nbsp; It’s the Matrix control.&amp;nbsp; &lt;br&gt;&lt;br&gt;With the matrix control you can create a report with a dynamic number of rows and columns and any number of row and column groups in a jiffy.&amp;nbsp; Also, with just a few clicks you can generate group totals at any level.&amp;nbsp; Like all reporting tools there are some limitations.&amp;nbsp; One common reporting need, that becomes a major challenge, is calculating group averages rather than group totals.&amp;nbsp; Although this sounds fairly trivial it requires that your tool allows you to use nested aggregates in your calculations, which Reporting Services 2005 does not.&amp;nbsp; &lt;br&gt;&lt;br&gt;Figure 1 illustrates the results that you get if you attempt to use the Avg() function.&amp;nbsp; Notice that the Average of the Total line is not correct.&amp;nbsp; Fortunately, there is a workaround.&amp;nbsp; With a bit of code and an understanding of the way that Reporting Services evaluates the various row and column groups in your matrix report, you can add many advanced calculations to your reports.&amp;nbsp; To understand when the matrix group totals are being evaluated and when they are not, you must use the Inscope() function.&amp;nbsp; This function returns true or false and takes a group name as an input parameter.&amp;nbsp; &lt;br&gt;&lt;br&gt;Figure 2 illustrates the scope of each row and column group as each cell of the matrix is evaluated.&amp;nbsp; Notice that when the column total is being evaluated the column group {Month} is out of scope and when the row total is being evaluated the row group {Division} is out of scope.&amp;nbsp; Also, notice that when the grand total is being evaluated, both the row and column group are out of scope. &lt;br&gt;&lt;br&gt;Now that you understand when each group total is being evaluated, you must add a custom function to calculate your average or whatever calculation you desire.&amp;nbsp; In this example, there are four different scopes which the function must handle. The function uses the Scope of each group to determine when the column/row cell, subtotal, average, and the average of the subtotals is being evaluated. The custom function for the first two cases simply returns the aggregate value passed in i.e. Sum(amt). The third case will maintain two variables.&amp;nbsp; The first is a&amp;nbsp; running total, the second will be a count of the number of values added to the total.&amp;nbsp; In addition, the function will return the subtotal value. The fourth case will calculate and return the average, and reset the running total and count variables.&amp;nbsp; The call into your custom function from the data cell in the matrix report would look like this. &amp;nbsp;&lt;br&gt;=Code.SumOrAvg(Sum(Fields!Amt.Value),AVG(Fields!Amt.Value), InScope("GRP_Month1"), InScope("GRP_Division1"))&lt;br&gt;&lt;br&gt;Figure 3 illustrates our matrix report with the correct average value being calculated for every row of the matrix report.&lt;br&gt;As you can see from this example, the Inscope() function gives you the power to control the values in every cell of your matrix control.&amp;nbsp; Happy Reporting !!!&lt;br&gt;&lt;br&gt;Source Code is attached to this blog entry. Please see the attachment below...&lt;br&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3647" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>Using MaxQ APPR Laser Checks for Dynamics SL when the Usr_Rpts folder is not in the SL application directory</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/03/24/3607.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/03/24/3607.aspx</id><published>2008-03-24T18:53:00Z</published><updated>2008-03-24T18:53:00Z</updated><content type="html">
&lt;p class="MsoNormal"&gt;Environment:&lt;/p&gt;



&lt;p class="MsoNormal"&gt;-All versions of Dynamics SL (Solomon) using AP/PR Checks&lt;/p&gt;

&lt;p class="MsoNormal"&gt;-Multiple SL Application Servers &lt;/p&gt;

&lt;p class="MsoNormal"&gt;-Centrally located Usr_Rpts folder is shared between the
application servers&lt;/p&gt;



&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;br&gt;Issue:&lt;/p&gt;



&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;-Bitmaps won’t print because the links become broken after
the folder relocation&lt;/p&gt;



&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;br&gt;Workaround:&lt;/p&gt;



&lt;p class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;-Point the links found in the Crystal reports to the XL folder on &lt;u&gt;ONE&lt;/u&gt;
of the SL application servers. &lt;/p&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3607" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>Solomon Process Engine fails to process Sales Order type transactions due to a lower case 'D' in the XML message</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/20/3605.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/20/3605.aspx</id><published>2008-02-20T22:11:00Z</published><updated>2008-02-20T22:11:00Z</updated><content type="html">The MaxQ Solomon Process Engine will error on Sales Order type transactions if the 'D' in the 'CompanyID' tag is a lower case 'd'.&lt;br&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3605" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>2008 Rate and Zone Import data for MaxQ Freight Manifesting and MaxQ Freight Worldship Link is now available</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/13/3604.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/13/3604.aspx</id><published>2008-02-13T23:20:00Z</published><updated>2008-02-13T23:20:00Z</updated><content type="html">In order to obtain the new zone/rate import files, you need to be on a current product support agreement with MaxQ. &lt;br&gt;If you do have such an agreement in place please contact MaxQ at 203-840-8930 x225.&lt;br&gt;&lt;br&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3604" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>Getting message 'Operation Failed' in MaxQ Document Agent</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/13/3603.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/13/3603.aspx</id><published>2008-02-13T20:29:00Z</published><updated>2008-02-13T20:29:00Z</updated><content type="html">
&lt;p class="MsoNormal"&gt;&lt;span&gt;If using a Terminal
server, the reason for this error may be the following:&lt;br&gt;
&lt;/span&gt;&lt;span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;span&gt;When you connect to
a terminal server, by default, the printers attached to your workstation are
“mapped” into the terminal services session . This applies to fax printers as
well.&amp;nbsp; &lt;/span&gt;&lt;span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;span&gt;The cause of the “operation failed”
messages seems to be that when someone with a fax printer defined on their own
computer connects to the Terminal server, there will be two fax printers
defined and this will cause the error.&amp;nbsp; &lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span&gt;
Also there doesn’t seem to be a way to programmatically select a fax printer
through the objects exposed by Microsoft at this time. &lt;/span&gt;&lt;span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormal"&gt;&lt;span&gt;The work-around is to disable Windows
printer mapping on the Terminal server. This can be done through the Terminal
Services Configuration program located in Administrative Tools. &lt;/span&gt;&lt;span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3603" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>MaxQ Document Agent, Dynamics SL Process Engine and Deposit Processing for Dynamics SL v7 are now released</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/13/3602.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/13/3602.aspx</id><published>2008-02-13T17:15:00Z</published><updated>2008-02-13T17:15:00Z</updated><content type="html">In order to obtain these new releases please contact MaxQ at 203-840-8930 x225.&lt;br&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3602" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>ACA deduction screens populate grid with incorrect values when using the 'CM Search screen'.</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/10/3598.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/10/3598.aspx</id><published>2008-02-10T17:34:00Z</published><updated>2008-02-10T17:34:00Z</updated><content type="html">This is ACA bug 4088.&lt;br&gt;Example:&lt;br&gt;&lt;pre id="comment_text_0"&gt;&lt;font face="Times New Roman" size="3"&gt;&lt;font size="3"&gt;1. Enter new ACA batch - select customer, then click 'Check Deductions' &lt;br&gt;- when prompted to save, save the batch.&lt;br&gt;2. On the 'Check Deductions' screen enter a deduction on the first row&lt;br&gt;(approved or unapproved).&lt;br&gt;3. Click on the 'CM Search' button, save when prompted. Run &lt;br&gt;the search and select 2-3 CM/s from the ones that are returned. &lt;br&gt;Click 'OK' to bring them back in the grid.&lt;br&gt;4. The CM/s will come back in the grid, however these new &lt;br&gt;'reapplication' lines will have the deduction code of the deduction &lt;br&gt;on the first line, as well as the Account and Subaccount values.&lt;/font&gt;&lt;br&gt;&lt;/font&gt;&lt;/pre&gt;&lt;br&gt;The fix can be downloaded here:&lt;br&gt;&lt;br&gt;&lt;a href="/CS/forums/thread/3597.aspx"&gt;http://maxqtech.com/CS/forums/thread/3597.aspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3598" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry><entry><title>SQL Server Message 10215 Invalid object name dbo.XMaxQ_RoundRandom</title><link rel="alternate" type="text/html" href="http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/07/3593.aspx" /><id>http://maxqtech.com/CS/blogs/stefan_nachevs_blog/archive/2008/02/07/3593.aspx</id><published>2008-02-08T00:36:00Z</published><updated>2008-02-08T00:36:00Z</updated><content type="html">May get this error if using MaxQ Freight Manifesting v7.2.0&lt;br&gt;or MaxQ Freight Worldship Link v7.1.0 for Dynamics SL v6x.&lt;br&gt;&lt;br&gt;Download the fix for Freight Manifesting from here:&lt;br&gt;&lt;a HREF="/CS/forums/thread/3594.aspx"&gt;http://maxqtech.com/CS/forums/thread/3594.aspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Download the fix for WS Link from here:&lt;br&gt;&lt;a HREF="/CS/forums/thread/3595.aspx"&gt;http://maxqtech.com/CS/forums/thread/3595.aspx&lt;/a&gt;&lt;br&gt;&lt;img src="http://maxqtech.com/CS/aggbug.aspx?PostID=3593" width="1" height="1"&gt;</content><author><name>admin</name><uri>http://maxqtech.com/CS/members/admin.aspx</uri></author></entry></feed>