Adsence750x90

Showing posts with label API Integration. Show all posts
Showing posts with label API Integration. Show all posts

Thursday, November 13, 2008

Creating Search Engine with C# and ASP.NET using Yahoo API - Build your Own Search Service (BOSS)

how to create a search engine? i search about the topic in google.i cant get useful results. finally i foound YAHOO API for making ower own Search engine,that is BOSS (Build your Own Search Service) is Yahoo!'s open search web services platform. you can read more about this topic from Yahoo, Build your Own Search Engine. Yahoo provide SDK for search engine.you can download from yahoo developer.
This SDK includes code in the following languages:

* ColdFusion
* C#
* Flash/Flex (ActionScript)
* Java
* JavaScript
* Lua
* Perl
* PHP
* Python
* Ruby
* VB.NET
* Widgets (JavaScript + XML)

ASP.NET and C# programmers can easliy create Search Engine with Yahoo.ASP.dll file.
for Web search call Yahoo.API
sample C# code from Yahoo.API

using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Yahoo.API;
using System.Xml;
using System.IO;
public partial class Search : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void btnWebSearch_Click(object sender, EventArgs e)
{
YahooSearchService yahoo = new YahooSearchService();

Yahoo.API.WebSearchResponse.ResultSet resultSet = yahoo.WebSearch("YahooExample", TextBox1.Text, "all",10, 11, "any", true, true, "en");

StringWriter sw = new StringWriter();
foreach (Yahoo.API.WebSearchResponse.ResultType result in resultSet.Result)
{
sw.WriteLine("Title: {0}", result.Title);
sw.WriteLine("Summary: {0}", result.Summary);
sw.WriteLine("URL: {0}", result.Url);
sw.WriteLine("============================================");
}
Response.Write(sw.ToString());
}
}

Wednesday, November 12, 2008

Helps Authorize.Net Payment Integration

i can help you in Authorize.Net Payment Integration. i am providing a dll file for payment integration. if u did not satisfy on that file u can contact me for payment integration process and provide other help in C# ASP.NET programming. you can check my payment helper file for test purpose.

Tuesday, September 30, 2008

Authorize.Net Payment Helper dll file for Microsoft.Net - code samples with detailed description

Authorize.Net Payment Helper for ASP.Net and C#

i am going to provide a new helper file for payment gateway integration for Authorize.net. it reduce the coding for programmer. i am using this payment helper for my project and working fine i am also providing help for how to use the dll(Helper) file in your code.

Helper file contain
1 methord
  • PaymentProcess
/*public void PaymentProcess(string cardNumber, string securityNumber, string expirationDate, string amount, string firstName, string lastName, string address, string zipCode, string authUrl, string authApiLogin, string authTransactionKey, string authTestMode);
*/
and 4 properties named
  • TransactionID ( get transaction id of successful payment ).
  • PaymentSuccess ( get message failed or success ).
  • PaymentMessage (get resulting message from Authorize.Net).
  • PaymentStatus( true for success and false for failure).
implimentation
add refference dll (Helper dll) in your bin folder.

using RajusAuthorizeDotNetPaymentHelper;

create object for helper dll

PaymentHelper objPaymentHelper;
objPaymentHelper = new PaymentHelper();

pass parameters for the methord PaymentProcess
after successful payment all properties are listed.

Source code for implimentation
/* public void PaymentProcess(string cardNumber, string securityNumber, string expirationDate, string amount, string firstName, string lastName, string address, string zipCode, string authUrl, string authApiLogin, string authTransactionKey, string authTestMode);*/

objPaymentHelper.PaymentProcess(@"Card number", "securityNumber", "02/2012", "20",
"raju", "m", " test address ", "300019", "https://test.authorize.net/gateway/transact.dll", "API Login ID", "Transaction Key", "FALSE");
Response.Write("
Payment Message: " + objPaymentHelper.PaymentMessage.ToString());
Response.Write("
Payment Status: " + objPaymentHelper.PaymentStatus.ToString());
Response.Write("
Payment Success: " + objPaymentHelper.PaymentSuccess.ToString());
Response.Write("
Payment Transaction ID: " + objPaymentHelper.TransactionID.ToString());


after Successful Transaction
Payment Message: This transaction has been approved.
Payment Status: Success
Payment Success: True
Payment Transaction ID: 2147531580


Download payment Helper file

Friday, June 6, 2008

Any one want Integration Code or HELP for Authorize.net with ASP.NET -SIM Methord

Any one want Integration Code or HELP for Authorize.net with ASP.NET -SIM Methord

if u want any help in Payment Integration with Authorize.NET and ASP.NET Please Inform me. i will solve your problem.you just post a comment or send me private email to

raju.rajum@gmail.com
or
raju.m@live.com.