search for: ipn

Displaying 20 results from an estimated 49 matches for "ipn".

Did you mean: in
2006 Jan 09
5
Paypal IPN - unable to access breakpoint during POST?
...otification action. Why can I not access the breakpoint placed inside the action that paypal POSTs to? It just doesn''t find the server, but it works fine when placed inside other actions. I''ve appended the code to the end of this post. Thanks everyone! Tom -- def paypal_ipn notify = Paypal::Notification.new(request.raw_post) breakpoint split = notify.item_id.split(''-'') @order = Order.new @item = Item.find(split[0]) @user = User.find(split[1]) @order.user_id = @user.id @order.item_id = @item.id if notify.acknowledge begin if n...
2006 Jun 26
6
paypal ipn from leetsoft
Has anyone had any luck with the paypal gem from leetsoft (Tobias Luetke)? I''m successfully sending off and making payments, but the ipn doesn''t send back to my site. I have the notify_url set in the form, have a action set for the ipn postbacks, but all I get from my sandbox after payment is a "view shops" page from paypal after payment is made. -- Posted via http://www.ruby-forum.com/.
2006 Jul 25
7
Paypal - Instant Payment Notifications
...d receiving accounts, i''ve got the Paypal button on my view, I can go and make payments ok, but I can''t get the Instant Payment Notification part to work. At the end of the payment process the user is left in a paypal screen with seemingly no way back to my app and the paypal_ipn action Cheers, John -- Posted via http://www.ruby-forum.com/.
2007 Jun 12
2
barplot and map overlay
...rplot in specific locations on the map, namely at the center of "statistical squares". I´ve seen an example in Paul Murrell´s "R Graphics" book that seems appropriate (grid package), but a bit complicated. Thanks a lot for any advice. Héctor -- Héctor Villalobos <hvillalo@ipn.mx> CICIMAR - IPN A.P. 592. Col. Centro La Paz, Baja California Sur, MÉXICO. 23000 Tels. (+52 612) 122 53 44; 123 46 58; 123 47 34 ext. 2425 Fax. (+52 612) 122 53 22 [[alternative HTML version deleted]]
2007 Aug 24
1
ActiveMerchant Paypal IPN and RESTful design
Hello, I''m trying to go all REST of my application. But i''ve come to one problem. How do i do payment, using IPN, in a RESTful way? right now i have an Payments controller. With 2 actions. action "new" shows a page with a paypal button. action "paypal_ipn" is where paypal sends its notifications. How would i go about doing this in a REST environment? Thank you --~--~---------~--~----~-...
2008 Apr 05
0
url_for + :canvas => false weirdness for non resource controllers
...db:1) @controller.url_for(:controller => ''campaigns'', :action => ''show'', :id => 1,:canvas => false,:only_path => true) "/campaigns/1" (rdb:1) @controller.url_for(:controller => ''checkout'', :action => ''ipn'',:canvas => false,:only_path => true) "/pledgie/checkout/ipn" # With the canvas true flag (rdb:1) @controller.url_for(:controller => ''campaigns'', :action => ''ipn'',:canvas => true,:only_path => true) "/pledgie/campaign...
2013 May 10
2
paypal-express gem
Hello everyone I am using paypal-express gem for Payapl payment. I am using reference transaction method to get money from Paypal. But i am getting IPN i.e payment notification, I mentioned like payment_request = Paypal::Payment::Request.new( :currency_code => :USD, :amount => 10.00, :billing_type => :MerchantInitiatedBilling, :description => "test", :custom...
2006 Feb 07
21
Paypal and Rails
Hello everyone, I am looking for a way to pass off a simple payment to paypal using our own interface. I understand that this requires making full use of Paypal''s API since we won''t be using their shopping cart or anything. I found the article by Pranav Bihari on his site and in the Wiki on using SOAP4R and the paypal WSDL file to interface with paypal web services, but I
2010 Jan 19
4
coping with a warning in if()
...t; if ( !(result %in% c("simple", "s", "complete", "c")) ){ stop("specify type of result 'simple' or 'complete'") } else { res <- rnorm(n) res } Thanks for your time H?ctor -- H?ctor Villalobos <hvillalo at ipn.mx> CICIMAR - IPN A.P. 592. Col. Centro La Paz, Baja California Sur, M?XICO. 23000 Tels. (+52 612) 122 53 44; 123 46 58; 123 47 34 ext. 82425 Fax. (+52 612) 122 53 22
2004 Dec 21
5
Is ''publish'' proxy arp still broken ?
Can''t get proxy arp with arp -s <IPaddr> <MACaddr> pub to work with a 2.4 kernel. I see some evidence in the archive that this was broken in the 2.0.x timeframe and never fixed. Anyone know for sure if it''s broken or working ? (I''m attempting to route a few addresses into a routed network, from the ethernet side of a DSL router that has a /29 public
2006 Jul 01
0
Paypal IPN Gem
Having some problems. Using instant rails 1.3 updated with to rails 1.1.4. Gem Paypal and Money gems are installed. Also installed the plugin paypal, I see it in /vendor/plugins/paypal and restarted the server. I posted my error at the bottom. Any Ideas? Thanks Kindly -Ryan # I have a controller called byc, in it I have this action. def create @registrant =
2009 Aug 10
1
manipulating text to generate different formulas to use in nls()
..., f1=1/inip$period[1], f2=1/inip$period[2], f3=1/inip$period[3], f4=1/inip$period[4]) ) ## not run. These two will be used in res <- nls(modl, data=data.frame(y, x), start=initP) Thank you in advance for any insigth. H?ctor -- H?ctor Villalobos <hvillalo at ipn.mx> CICIMAR - IPN A.P. 592. Col. Centro La Paz, Baja California Sur, M?XICO. 23000 Tels. (+52 612) 122 53 44; 123 46 58; 123 47 34 ext. 82425 Fax. (+52 612) 122 53 22
2009 Jan 19
2
plotting arrows with different colors and varying head size
...=English_United States.1252;LC_MONETARY=English_United States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252 attached base packages: [1] stats graphics grDevices utils datasets methods [7] base other attached packages: [1] car_1.2-9 hdf5_1.6.7 -- Héctor Villalobos <hvillalo@ipn.mx> CICIMAR - IPN La Paz, Baja California Sur, MÉXICO [[alternative HTML version deleted]]
2006 Apr 21
10
Paypal payments and IPN
I have followed the instructions over at http://dist.leetsoft.com/api/paypal/ In order I: 1. installed the money library with gem install --source http://dist.leetsoft.com/api/paypal/ money 2. installed the paypal library with gem install --source http://dist.leetsoft.com/api/paypal/ paypal 3. created a new app with rails NewApp 4. added the PaymentHelper module to the
2008 Oct 30
9
ActiveMerchant and Encrypted Paypal Standard Checkout
Hi, Does any know about a good resource for using ActiveMerchant to create an encrypted button that will use Paypal''s Standard checkout mode? Best regards, -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group,
2010 Jul 08
2
rspec-rails how to selectively turn on csrf protection for controller specs?
I''m setting up a Paypal IPN listener and need the create action to not use rails'' default CSRF protection. I''ve got that working fine & test it actually works with cucumber (where I''ve turned CSRF back on, since it''s full-stack testing) but would like my controller spec to mention the...
2016 Jan 04
3
Asterisk Behind Firewall
I was wondering if anyone can give me any pointers or insights of whether or not to have an asterisk server behind a firewall. I have always ran Asterisk on a public IP but was wondering if I should move it to a local IP behind a firewall. I am looking to set up a location with 300 SIP phones. Normally, I would put the Asterisk server on one public IP and let the SIP phones get DHCP from a
2006 Apr 22
0
available: lib for Paypal''s Payment data transfer
Hi, following the discussion about Paypal''s IPN usage with leetsoft''s paypal library, I''ve posted an addition to that library so you can use Paypal''s Payment Data Transfer. It''s largely inspired by, with some chinks even simply copied from, the IPN code. Downloadable at http://www.myowndb.com/files/payment_da...
2002 Apr 17
1
zero center a group of variables
...e, so both group variables become centered to mean zero? Thanks in advance for your help H?ctor ................................................... H?ctor Villalobos Depto. de Pesquer?as y Biolog?a Marina Instituto Polit?cnico Nacional - Centro Interdisciplinario de Ciencias Marinas (IPN-CICIMAR) A.P. 592. Col. Centro La Paz, Baja California Sur, M?XICO. 23000 Tel.: (+52 612) 122 53 44 ext. 2426 Fax.: (+52 612) 122 53 22 .................................................... -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list...
2005 Jun 03
1
Reading biplot function's source code
...only gives me: function (x, ...) UseMethod("biplot") with no further details.... I'd like to read the code to see if it is possible to display arrows only for some "significant" variables to avoid cluttering. Thank you in advance. -- H??ctor Villalobos <hvillalo at ipn.mx> IPN-CICIMAR. A.P. 592. Col. Centro La Paz, Baja California Sur, M??XICO. 23000