<?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: Transaction class not found in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52321#M27597</link>
    <description>&lt;P&gt;Here's another strange thing.&amp;nbsp; I took the code directly&amp;nbsp; readme.md of the source; put it into a jsp file; it compiles fine with Eclipse.&amp;nbsp; At run time I get these errors when Tomcat compiles it.&amp;nbsp; Very strange.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;org.apache.jasper.JasperException: Unable to compile class for JSP: 

An error occurred at line: [16] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.Environment resolves to a package

An error occurred at line: [17] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.Merchant resolves to a package

An error occurred at line: [18] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.TransactionType resolves to a package

An error occurred at line: [19] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.aim.Result resolves to a package

An error occurred at line: [20] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.aim.Transaction resolves to a package

An error occurred at line: 17 in the jsp file: /TestAIM1.jsp
Merchant cannot be resolved to a type
14:   
15:   &amp;lt;%
16:     String apiLoginID = "YOUR_API_LOGIN_ID";
17:     String transactionKey = "YOUR_TRANSACTION_KEY"; Merchant merchant = Merchant.createMerchant(Environment.SANDBOX, apiLoginID, transactionKey);
18: 
19:     // create credit card
20:     CreditCard creditCard = CreditCard.createCreditCard();

&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 27 Sep 2015 12:28:31 GMT</pubDate>
    <dc:creator>zappullae59</dc:creator>
    <dc:date>2015-09-27T12:28:31Z</dc:date>
    <item>
      <title>Transaction class not found</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52315#M27591</link>
      <description>&lt;P&gt;I'm having trouble with the Transaction class.&amp;nbsp; I have a java console app that runs a test transaction just fine but when I try to integrate the same code into my web app running under Tomcat 8 I get a class not found error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the same libs included in web app project that I do for the console app&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;java.lang.NoClassDefFoundError: net/authorize/Transaction&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is interesting is the Transaction class is imported from net.authorize.aim.Transaction not net.authorize.Transaction (no aim package).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been able to narrow it down to the inclusion (not even execution) of this line in the code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Result&amp;lt;Transaction&amp;gt; result = (Result&amp;lt;Transaction&amp;gt;) merchant_.postTransaction(authCaptureTransaction);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Possibly a conflict with JSP and the http libs Tomcat uses?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;import java.math.*;&lt;BR /&gt;import java.sql.Connection;&lt;BR /&gt;&lt;BR /&gt;import net.authorize.Environment;&lt;BR /&gt;import net.authorize.Merchant;&lt;BR /&gt;import net.authorize.TransactionType;&lt;BR /&gt;import net.authorize.aim.Result;&lt;BR /&gt;import net.authorize.aim.Transaction;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Merchant merchant_ = Merchant.createMerchant(Environment.SANDBOX, apiLoginID, transactionKey);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;// create credit card&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;net.authorize.data.creditcard.CreditCard creditCard = net.authorize.data.creditcard.CreditCard.createCreditCard();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;creditCard.setCreditCardNumber(ccrTrans.accountNo());&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;creditCard.setExpirationMonth(String.valueOf(TimeHelper.monthOfYear(ccrTrans.expDate())));&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;creditCard.setExpirationYear(String.valueOf(TimeHelper.year(ccrTrans.expDate())));&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;// create transaction&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Transaction authCaptureTransaction = merchant_.createAIMTransaction(TransactionType.AUTH_CAPTURE, new BigDecimal(ccrTrans.amount()));&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;authCaptureTransaction.setCreditCard(creditCard);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Result&amp;lt;Transaction&amp;gt; result = (Result&amp;lt;Transaction&amp;gt;) merchant_.postTransaction(authCaptureTransaction);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ccrTrans.procRef(result.getTarget().getTransactionId());&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ccrTrans.respMsg(result.getResponseText());&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ccrTrans.procResult(result.getResponseCode().ordinal());&lt;/P&gt;</description>
      <pubDate>Sat, 26 Sep 2015 22:13:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52315#M27591</guid>
      <dc:creator>zappullae59</dc:creator>
      <dc:date>2015-09-26T22:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction class not found</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52316#M27592</link>
      <description>&lt;P&gt;&lt;A href="https://github.com/AuthorizeNet/sdk-java/blob/master/src/main/java/net/authorize/aim/Transaction.java" target="_blank"&gt;https://github.com/AuthorizeNet/sdk-java/blob/master/src/main/java/net/authorize/aim/Transaction.java&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;public class Transaction extends net.authorize.Transaction implements Serializable {&lt;/PRE&gt;&lt;P&gt;sound like you missing the &lt;STRONG&gt;src/main/java/net/authorize&lt;/STRONG&gt; level &lt;A href="https://github.com/AuthorizeNet/sdk-java/tree/master/src/main/java/net/authorize" target="_blank"&gt;https://github.com/AuthorizeNet/sdk-java/tree/master/src/main/java/net/authorize&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Sep 2015 02:32:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52316#M27592</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-09-27T02:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction class not found</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52317#M27593</link>
      <description>&lt;P&gt;Thanks for the help.&amp;nbsp; I built the lib from the github source.&amp;nbsp; All the unit tests work fine.&amp;nbsp; I have the identical code running with the same anet jar with a console app.&amp;nbsp; My code compiles without errors.&amp;nbsp; It just doesn't work when under Tomcat. and it fails when the class is instantiated yet it compiled.&amp;nbsp; Something is missing.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Sep 2015 12:19:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52317#M27593</guid>
      <dc:creator>zappullae59</dc:creator>
      <dc:date>2015-09-27T12:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction class not found</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52321#M27597</link>
      <description>&lt;P&gt;Here's another strange thing.&amp;nbsp; I took the code directly&amp;nbsp; readme.md of the source; put it into a jsp file; it compiles fine with Eclipse.&amp;nbsp; At run time I get these errors when Tomcat compiles it.&amp;nbsp; Very strange.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;org.apache.jasper.JasperException: Unable to compile class for JSP: 

An error occurred at line: [16] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.Environment resolves to a package

An error occurred at line: [17] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.Merchant resolves to a package

An error occurred at line: [18] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.TransactionType resolves to a package

An error occurred at line: [19] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.aim.Result resolves to a package

An error occurred at line: [20] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]
Only a type can be imported. net.authorize.aim.Transaction resolves to a package

An error occurred at line: 17 in the jsp file: /TestAIM1.jsp
Merchant cannot be resolved to a type
14:   
15:   &amp;lt;%
16:     String apiLoginID = "YOUR_API_LOGIN_ID";
17:     String transactionKey = "YOUR_TRANSACTION_KEY"; Merchant merchant = Merchant.createMerchant(Environment.SANDBOX, apiLoginID, transactionKey);
18: 
19:     // create credit card
20:     CreditCard creditCard = CreditCard.createCreditCard();

&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Sep 2015 12:28:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52321#M27597</guid>
      <dc:creator>zappullae59</dc:creator>
      <dc:date>2015-09-27T12:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction class not found</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52322#M27598</link>
      <description>&lt;P&gt;Here's the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;%@ page import="java.math.BigDecimal" %&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;%@ page import="java.util.Map" %&amp;gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;lt;%@ page import="net.authorize.Environment" %&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;%@ page import="net.authorize.Merchant" %&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;%@ page import="net.authorize.TransactionType" %&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;%@ page import="net.authorize.aim.Result" %&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;%@ page import="net.authorize.aim.Transaction" %&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;%@ page import="net.authorize.data.*" %&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;%@ page import="net.authorize.data.creditcard.*" %&amp;gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;lt;%&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; String apiLoginID = "YOUR_API_LOGIN_ID";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; String transactionKey = "YOUR_TRANSACTION_KEY"; Merchant merchant = Merchant.createMerchant(Environment.SANDBOX, apiLoginID, transactionKey);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // create credit card&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreditCard creditCard = CreditCard.createCreditCard();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; creditCard.setCreditCardNumber("4111 1111 1111 1111");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; creditCard.setExpirationMonth("12");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; creditCard.setExpirationYear("2015");&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // create transaction&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Transaction authCaptureTransaction = merchant.createAIMTransaction(TransactionType.AUTH_CAPTURE, new BigDecimal(1.99));&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; authCaptureTransaction.setCreditCard(creditCard);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Result&amp;lt;Transaction&amp;gt; result = (Result&amp;lt;Transaction&amp;gt;)merchant.postTransaction(authCaptureTransaction);&lt;/P&gt;</description>
      <pubDate>Sun, 27 Sep 2015 12:29:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52322#M27598</guid>
      <dc:creator>zappullae59</dc:creator>
      <dc:date>2015-09-27T12:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction class not found</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52323#M27599</link>
      <description>&lt;P&gt;I've also tried adding the anet source directly into Eclipse as a project instead of using the compiled jar ang get the same results on the JSP page at run time, not compile time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;INFO: Server startup in 766 ms&lt;BR /&gt;Sep 27, 2015 8:39:26 AM org.apache.catalina.core.StandardWrapperValve invoke&lt;BR /&gt;SEVERE: Servlet.service() for servlet [jsp] in context with path [/OwHINWeb] threw exception [Unable to compile class for JSP:&lt;BR /&gt;&lt;BR /&gt;An error occurred at line: [16] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]&lt;BR /&gt;Only a type can be imported. net.authorize.Environment resolves to a package&lt;BR /&gt;&lt;BR /&gt;An error occurred at line: [17] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]&lt;BR /&gt;Only a type can be imported. net.authorize.Merchant resolves to a package&lt;BR /&gt;&lt;BR /&gt;An error occurred at line: [18] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]&lt;BR /&gt;Only a type can be imported. net.authorize.TransactionType resolves to a package&lt;BR /&gt;&lt;BR /&gt;An error occurred at line: [19] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]&lt;BR /&gt;Only a type can be imported. net.authorize.aim.Result resolves to a package&lt;BR /&gt;&lt;BR /&gt;An error occurred at line: [20] in the generated java file: [C:\Dev\bsg\Eclipse Workspaces\zap\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\OwHINWeb\org\apache\jsp\TestAIM1_jsp.java]&lt;BR /&gt;Only a type can be imported. net.authorize.aim.Transaction resolves to a package&lt;BR /&gt;&lt;BR /&gt;An error occurred at line: 17 in the jsp file: /TestAIM1.jsp&lt;BR /&gt;Merchant cannot be resolved to a type&lt;BR /&gt;14:&amp;nbsp; &amp;nbsp;&lt;BR /&gt;15:&amp;nbsp;&amp;nbsp; &amp;lt;%&lt;BR /&gt;16:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String apiLoginID = "YOUR_API_LOGIN_ID";&lt;BR /&gt;17:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String transactionKey = "YOUR_TRANSACTION_KEY"; Merchant merchant = Merchant.createMerchant(Environment.SANDBOX, apiLoginID, transactionKey);&lt;BR /&gt;18:&lt;BR /&gt;19:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // create credit card&lt;BR /&gt;20:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreditCard creditCard = CreditCard.createCreditCard();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Sep 2015 12:42:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52323#M27599</guid>
      <dc:creator>zappullae59</dc:creator>
      <dc:date>2015-09-27T12:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction class not found</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52324#M27600</link>
      <description>&lt;P&gt;Got it working.&amp;nbsp; I really don't know why this was nessasary but I had to add all the jar files required by the ANet API to my web-inf/lib folder or to the debug config classpath for Tomcat.&amp;nbsp; Both approaches solved the problem.&amp;nbsp; Previously to using anet if I added an external jar to the project in Eclipse it was picked up by the app.&amp;nbsp; Maybe its a web app thing, I don't know but it works now.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Sep 2015 15:56:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Transaction-class-not-found/m-p/52324#M27600</guid>
      <dc:creator>zappullae59</dc:creator>
      <dc:date>2015-09-27T15:56:48Z</dc:date>
    </item>
  </channel>
</rss>

