leoking | 15 Dec 14:51
Favicon

Q2 Deployed Twice

Hi 

When Java Heap Space memory exception occurs. Q2 was auto deployed but twice
and i am using portno in one of the *.xml . It shows JVM_Bind Exception .
Can any one give suggestion on this. 

Regards
leo

--
View this message in context: http://jpos.1045706.n5.nabble.com/Q2-Deployed-Twice-tp5077535p5077535.html
Sent from the jPOS - Dev mailing list archive at Nabble.com.

------------------------------------

Sebastián | 10 Dec 00:14
Picon

ISOUtil.isNumeric

Hello people!, I have a small question about this handy method on ISOUtil
class:

/**
* Return true if the string represent a number
* in the specified radix.
* <br><br>
**/
public static boolean isNumeric ( String s, int radix ) {
int i = 0, len = s.length();
while ( i < len && Character.digit( s.charAt( i ), radix ) > -1 ){
i++;
}
return ( i >= len );
}

My question is if I pass the empty String this method returns true, even
though "" doesn't represent a number. Yet when checking the tests cases I
saw that you specifically check this case and expect the method to return
true when checking the empty string. ¿What am I missing here?¿Maybe ""
should map to 0?.

Thanks!

[Non-text portions of this message have been removed]

------------------------------------

sridhar | 8 Dec 19:32

Problem to Getting ISORequest from Transaction Context in Txn Manager for Some Transactions

Hi,
We have faced problem for Transaction Context .

We have sent multiple json requests  by the help of Apache Jakarta JMeter.

we have used Apache Jakarta  JMeter , through which at a time we can sent 
Multiple  Transactions from Multipl Users.

Our Rest JSON Web Service sent the requests to Q2 Server by converting json
to ISOMsg and also received the ISOMsg and sent to Jakrata JMeter by
converting   ISOMsg to JSON.

In this process, we successfully done the transaction end to end from VT to
Gateway through Web Services.

But we have faced the problems when multiple users at a time hit the
requests to Q2 Server.

We have gone through Following steps to handle the Transactions in Q2
Server.
1.Q2 Server received the requests by ISOMsg Request Listener.
2.ISOMsg Request Listener put the ISO Request and ISO Source in Context.
3.we put the Context into Transaction Manager Acquirer Space.
4.All the Transaction Participants under the Acquirer Transaction Manager
acessed the Context by extending Transaction Participant.
5.In this Process we have handled the Transactions.

But When We hit  multiple transactions and we acessed the IsoRequest in
Transaction Participant by getting it from Transaction Context,
it is returning null for some Transactions.
(Continue reading)

vaibhav aher | 9 Nov 08:59
Picon

Re: Payment Gateway Support

>
>
> Hello JPOS Gurus,
>
> We are new to JPOS development and we are planing to develop a payment
> processing gateway, which will not be attached to paypal or such other
> provider. We will be directly connected to switching for domestic and
> international transactions. So I have few queries
>
> 1. Can JPOS be used as a framework to develop the gateway. Is there anyone
> who has developed the same?
> 2. Does any one came across JPOS used for development of back office tools
> like charge back, reconciliation other stuffs?
> 3. Which is the secure platform and stable to be considered (OS, Database,
> Application server, Web Server etc.) preferred open source?
>
> Thanks in advance
>
> Regards
> --
> Vaibhav
>
>

[Non-text portions of this message have been removed]

------------------------------------

amendez_argumedo | 28 Sep 02:29
Picon
Favicon

FSDMsg schema configuration


  Hi  all,

     I need to manage the following message   

       "22FS000FSFSBETX"

   I just want to know , how can i configure my shcema, Today I have the next one.

<?xml version="1.0" encoding="UTF-8"?>
<schema>
 <field id="Rcode"   type="N"   length="2" />
 <field id='separator'  type='FS' length='2' />
 <field id="num1"   type="N"   length="3" />
 <field id='separator'  type='FS' length='2' />
 <field id="num2"   type="N"   length="3" />
 <field id='separator'  type='FS' length='2' />
 <field id="num3"   type="N"   length="1" />
 <field id='endSeparator'  type='FS' length='3' />
 </schema>

  to get the following log I need to change my message like this:

    "22FS000FS   FSBETX"

<fsdmsg schema='file:cfg/packager/fsd2-base'>
  Rcode: '22'
  separator: 'FS'
  num1: '000'
  num2: '   '
(Continue reading)

Mohan | 15 Jun 16:09
Picon

sending 1000 message / sec

i am newbie to jpos. we want to perform some stress test on the host server.
how to send 1000 messages/sec thru QMUX pool and channel adaptor. is there any specific configuration
needs to be done?

and also we need to verify the response.

------------------------------------

ardent.singh | 12 May 07:43
Picon
Favicon

How to configure jpos server for use SSl.I did not get find server.

How to configure jpos server for use SSl.I did not get find server.Please tell me if any one to know answer.

------------------------------------

swordfish | 9 Mar 07:52
Picon
Favicon

Q2 Web Interface

Dear All,

I've created web interface as replacement xml file configuration for Q2-component like QServer,
ChannelAdaptor and Transaction Manager, so jpos developer can easily configure their component
through web interface. This application is using Q2 as main-engine,
hibernate for database interface, mysql as database, jetty as webserver, jsp and joomla. You can see screenshot
on my attachment.

download source-code link:
http://tinyurl.com/q2web-rar

the file contain 3 folder
q2web
swhbrcore
swhbroltp

extract file on the same folder

create database: q2web_core
locate file q2web_core-2011-03-09.sql, it's located on q2web\doc
execute the sql-script

create database: q2web_oltp
locate file q2web_oltp.sql, it's located on q2web\doc
execute the sql-script

open NetBeans-IDE
file -> open project-> locate q2web 
debug

(Continue reading)

ade irwansiah | 9 Mar 07:49
Picon
Favicon

Q2 Web Interface

Dear All,
I've created web interface as replacement xml file configuration for Q2-component like QServer,
ChannelAdaptor and Transaction Manager, so jpos developer can easily configure their
component through web interface. This application is using Q2 as main-engine,hibernate for database
interface, mysql as database, jetty as webserver, jsp and joomla. You can see screenshoton my attachment.
download source-code link:http://tinyurl.com/q2web-rar
the file contain 3 folderq2webswhbrcoreswhbroltp
extract file on the same folder
create database: q2web_corelocate file q2web_core-2011-03-09.sql, it's located on
q2web\docexecute the sql-script
create database: q2web_oltplocate file q2web_oltp.sql, it's located on q2web\docexecute the sql-script
open NetBeans-IDEfile -> open project-> locate q2web debug
open your browsergoto address https://localhost:8443/login username : rootpassword:root
if login success, now you can create QServer, ChannelAdaptor, Transaction Managerfrom web interface.
I'm sorry, i was to lazy for writing this application document.
Thanks to Mr. Alejandro and jPos Team for creating excellent engine like Q2.

Regards,
Ade Irwansiah

[Mod] Edited links to google docs, to avoid upload.com commercialism

------------------------------------

iran_bispo | 23 Feb 21:17
Picon

Configuração para ambiente de produção Jpos.

Oi a todos,
o meu nome é Iran, e trabalho na Medlink (Rio de Janeiro-Brasil).
Em breve iremos usar o Jpos para substituir o Postilion.
A empresa atualmente faz 850.000 transações/mes.
Gostaria de uma consulta, para saber qual seria a melhor configuração para o sistema quando entrar em
produção, com relação ao Transaction Manager e pool c3p0 (Hibernate/SqlServer).
Atualmente nos testes configurei da seguinte forma:
Transaction Manager com sessions = 15.
C3p0 : c3p0.max_size = 30 (min = 5) .
Obrigado,
Iran.

--- Español (traducción de Google) ---
Hola a todos,
Mi nombre es Iran, y el trabajo en MedLink (Río de Janeiro, Brasil). 
Pronto vamos a utilizar Jpos para reemplazar Postilion. 
La compañía sirve actualmente 850.000 transacciones por mes. 
Me gustaría una consulta para saber cuál es la mejor configuración para el sistema cuando entra en
producción, con respecto al Transaction Manager y la pool C3P0 (Hibernate / SqlServer). 
Actualmente en las pruebas configurado de la siguiente manera: 
Transaction Manager con sesiones = 15. 
C3P0: c3p0.max_size = 30 (min = 5). 

Gracias, 
Iran

------------------------------------

Keyur Mapith | 27 Jan 11:10
Favicon

Not able to receive the response from server.

Hi all,

I m new to this forum.
Actually i am having one problem regarding the transmission of ISO8583 message.
The thing is like I am able to send request to the server and the server is 
parsing the request, generating response and sending it to the client.
But on the client side I am not able to receive the response in the client 
application...
Please help me out of this...
Thank you in advance..

Here i am sending you a sample code of client that i am using in client 
application. The code is as follows:
************************************************************************************

import java.io.IOException;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.jpos.core.Sequencer;
import org.jpos.core.VolatileSequencer;
import org.jpos.iso.AsciiInterpreter;
import org.jpos.iso.BaseChannel;
import org.jpos.iso.ISOChannel;
import org.jpos.iso.ISODate;
import org.jpos.iso.ISOException;
import org.jpos.iso.ISOField;
import org.jpos.iso.ISOMsg;
(Continue reading)


Gmane