Questions tagged [swish]

Swish is a micropayment system in Sweden. Do not use this tag for SWI-Prolog for Sharing (SWISh)

Swish is a micropayment system in Sweden.

Do not use this tag for .

28 questions
0
votes
1 answer

Recieving POST data and converting to base64 produces qualityloss

Im sending in data through post and get a png back in the response. Convert it to base64 so i dont have to save the file. The image is a qr code and it seems to suffer from some quality loss since iPhones cant seem to scan it, androids are fine. Ive…
Jimmy
  • 275
  • 2
  • 6
  • 27
0
votes
0 answers

How to make the predicate spent(Passengers, Year, Sum)?

1. Write the predicate spent(Passengers, Year, Sum) to find the total cost of tickets for passengers from of the list of Passengers in year Year. trip(01, Kuiv, Odessa, 1500). trip(02, Kuiv, Lviv, 700). trip(03, Uzhorod, Krum, 6000). trip(04,…
Mashka
  • 35
  • 4
0
votes
1 answer

return to same tab after redirection to native app in mobile and back to browser

How to return to same tab in browser when user is redirected to a native app and then back to the browser with a url containing additional query parameters, as it is considered a new page and the browser opens it in e new tab resulting in loss of…
H4ckint0sh
  • 41
  • 4
0
votes
1 answer

Swish Payout API in PHP

Swish is a Swedish payment provider. You pay by simply sending money to a phone number. This is a API for the new PAYOUT-service offered by Swish. Not the same as PAYMENT service, so dont confuse yourself with that. There is no PHP examples…
Phanteon
  • 1
  • 1
0
votes
2 answers

Control loaded swish animation in AS 3.0

I'm developing an AS 3.0 wrapper to add some extra stuff that has to load some old and plain frame to frame SwishMax 3 animations and then be able to stop them, play them, and so... Here is my code: package { import flash.display.Sprite; …
coma
  • 16,429
  • 4
  • 51
  • 76
0
votes
2 answers

php curl with certificate and key file not connecting with swish payment api

I need to implement Swish Payment e-commerce API with my website. Testing code given by swish is working fine using Git Bash. Sample is here curl -s -S -i --cert ./Swish_Merchant_TestCertificate_1231181189.pem --key…
Sakib Ali
  • 1
  • 1
  • 3
0
votes
1 answer

Implementing Swedish Swish payment - C# - Could not create SSL/TLS secure channel - Certificate signing request

As described in this question I'am able to connect with Swish using their test account and test certificate. C# HttpClient with X509Certificate2 - WebException: The request was aborted: Could not create SSL/TLS secure channel However when using my…
Ogglas
  • 62,132
  • 37
  • 328
  • 418
0
votes
1 answer

custom code browser using Lucene/swish-e

I am working on a C++ project which has a huge code base and multiple components. I want to create a rich code browser for it which will give a visual studio like experience. I am thinking of an Adobe AIR app with Lucene or Swish-e as the backend…
341008
  • 9,862
  • 11
  • 52
  • 84
0
votes
1 answer

clickTAG on SWiSHMAX 4, does it work?

I'm working on online animated Flash banners for Google, there's a code called clickTAG to be added on an invisible button in the swf file, so Google can track where the clicks came from (which website URL). In Adobe Flash Pro, you have to add the…
Mojito
  • 31
  • 1
  • 5
0
votes
1 answer

Load a Website URL from a textbox in a window in Swish Max 3

Thanks for reading in advance. I am making a dummy mobile screen where a user should type a URL in a textbox and the url shall be loaded in a mobile window. I have made all the designs. But can somebody please suggest how to do that please.?
themajiks
  • 420
  • 1
  • 8
  • 23
-1
votes
1 answer

Prolog-return all triples of elements in the ring Zm which satisfy the property x + y = z- Arguments are not sufficiently instantiated

I am trying to Implement plus(X,Y,Z) , which should return all triples of elements in the ring Z_m that satisfy the property X + Y = Z, etc. Here is my codes: plus(X,Y,Z):-read(M),A is mod(X,M),B is mod(Y,M),Sum is A+B,Z is Sum mod…
Miu
  • 3
  • 2
-2
votes
2 answers

i look some example of using Swish Search Engine Extension in php

did somebody use this Extension in php or have an example of code, edit : i want to hear an opinion on this Extension if somebody deal with it. a tutorial with code , large examples ..
Haim Evgi
  • 123,187
  • 45
  • 217
  • 223
-2
votes
1 answer

Writing predicates in prolog, data search

Write the predicate, reach(Departure, Arrivals) to find all points you can get into from the Departure point. We have this facts: trip(Id, From, To, Price) Id — flight number From — departure point To — Point of arrival Price — price …
1
2