Juan | 29 Sep 19:53

Necesito Orientacion

Hola que tal ?, necesito orientacion respecto a algun ejemplo para 
levantar un servicio en donde pueda abrir una conexion permante hacia 
un servidor ISO ya que mi proveedor de servicios requiere una conexion 
permanente hacia su host y el envio de tramas de ISO a traves de esa 
conexion permanente.

Les agradezco de antemano la atencion.

Muchas gracias.

Juan Avalos

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

David Bergert | 11 Sep 20:14

.NET C# implementation of FSDMsg.java

Hello:

Attached please find the following link to the FSDMsg.cs source code, which
is a derivative work based upon FSDMsg.java r2539, simply a port of the
methods that I required (for example this does not support Binary fields or
separators other the FS 0x1C), from java to .NET (v3.5) C#. This should also
run under mono (http://www.mono-project.com/Main_Page) but hasn't been
tested there yet.

http://code.google.com/p/ols-oscp/source/browse/trunk/FSDMsg.NET/FSDMsg.cs

-----
Example Pseudo Code usage - same as jPOS's FSD

		   //Pack
                FSDMsg fsd = new FSDMsg("message-");  // looks for
message-base.xml

                fsd.set("format", "A");
                fsd.set("merchant-id", "1234567890123456");
                fsd.set("terminal-id", "12345678");
                fsd.set("magstripe" , "4111111111111111=0808");
                fsd.set("amount", "100.00";
                String MyMsg = fsd.pack();

		    //Unpack			
                FSDMsg rfsd = null;
                rfsd = new FSDMsg("message-resp-"); //looks for
message-resp-base.xml
                rfsd.unpack(recievebytes); 
(Continue reading)

Okunola Olayiwola | 6 Sep 15:26

HELP ON WORKING WITH POSTILION SERVER

Hello Developers,

I need assistance and guide of someone that has worked specifically on 
POSTILION server, using POS terminal. I mean, someone that written 
application on POS terminal to send message to Postilion TERMAPP. 

I have an application in C on POS terminal, whereby I am sending 
transaction messages to Postilion Server. 1. The server was able to 
recieve the message (without 2 bytes header after reconfiguring the 
postilion to receive message without 2 bytes header), but the postilion 
server COULD NOT process my transaction.  HELP PLS?

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

Okunola Olayiwola | 5 Sep 13:50

Does JPOS ISO-8583 C lightweight library supports Postpackager & PostChannel?

Hi Developers,

I am writing POS terminal applications using C, and my application 
talks with POSTILION at the FEP server. I found out that if I wants to 
user JPOS, i need POSTPACKAGER and POSTCHANNEL. I want to buy JPOS ISO-
8583 C lightweight library which has iso87packager, but i want to find 
out if the C library has postpackager and postchannel that i can use in 
my application to talk to postilion server?

Ola.

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

super_foly | 3 Sep 21:56

org.jpos.tpl.PersistentEngine cannot be cast to org.jpos.tpl.ConnectionPool

I receive the following error whenever I try to use ConnectionPool 
within my q2 implementation:

<log realm="payment_sender" at="Wed Sep 03 20:52:17 WAT 2008.751">
  <org.jpos.tpl.PersistentEngine cannot be cast to 
org.jpos.tpl.ConnectionPool/>
</log>

I also need to know where I can pick up org.jpos.q2.qbean.TaskAdaptor 
class. I currently use org.jpos.q2.iso.TaskAdaptor with my persistent 
engine to define my Connection pool within q2.

Thank you.

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

Francis | 20 Aug 10:34

Need sample parsing module for POS

the problem is when im parsing it with the generic parser the fields
does not match is it because of the TPDU it would be a great help if i
can have a sample module of this.

TPDU   6009886378
MTI       0200
Bitmap  3020058020C01005
Field     Value
[ 3 ]      001000
[ 4 ]      003735943886
[ 11 ]     000017
[ 22 ]     151
[ 24 ]     988
[ 25 ]     00
[ 35 ]     6393135040101368=110500000000000
[ 41 ]     12345678
[ 42 ]     123456789123456
[ 52 ]     CE9B992F3BC07DFD
[ 62 ]     000016
[ 64 ]     FCAA41685C936970

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

Okunola Olayiwola | 14 Aug 11:38

Sending 2 bytes header message to Postilion

Hello All,

I am writing a POS application on a pos terminal where i need to send 
ISO 8583 message packet to bank's host server running Postilion 
Termapp. I was able to successfully packed the message using the APIs 
and send to the server using the serversocket. But my challenge is that 
the bank's spec says that a 2-byte header is to prefixed all messages 
sent to/from Postilion. Please, how do i go about this?

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

Ade Irwansiah | 14 Aug 05:22

Custom Log

dear all,
when we used q2 with configuration below
<logger name="Q2" class="org.jpos.q2.qbean.LoggerAdaptor">
  <log-listener class="org.jpos.util.SimpleLogListener" />

  <log-listener class="org.jpos.util.DailyLogListener">
    <property name="window" value="86400" /> 
    <property name="prefix" value="log/q2" />
    <property name="suffix" value=".log"/> 
  </log-listener>
</logger>

it produce log file called "q2.log"
and its content is incoming, outgoing message
like example below.

<log realm="channel/127.0.0.1:6000" at="Fri May 30 07:11:00 ICT 2008.750">
  <receive>
    <isomsg direction="incoming">
      <header>6000013000</header>
      <field id="0" value="0200"/>
      <field id="3" value="000000"/>
      <field id="4" value="000000015000"/>
      <field id="11" value="000075"/>
      <field id="12" value="071100"/>
      <field id="13" value="0530"/>
      <field id="24" value="000"/>
      <field id="35" value="1609060011006000=1010000061"/>
      <field id="41" value="16091030"/>
      <field id="42" value="160906001103   "/>
(Continue reading)

Anthony Schexnaildre | 13 Aug 02:00

FSDMsg - add ability to set Map ?

Hello all,

I am doing a quite a bit of work with RESTful webservices and JAXB. I  
am marshaling transactions from XML and JSON into FSDMsg. Currently  
everything needs to be iterated through twice. Once during the  
marshaling and another time to set the fields on FSDMsg. JAXB does  
have the notion of type adaptors but because of the needs to set the  
schema in the FSDMsg constructor I end up having to do some awful  
hacks to make it work. The simplest and cleanest solution would be to  
add a setMap( Map map ) on FSDMsg. From looking at the source it seems  
this would be very easy and would cause no problems any existing  
implementations. I also figure this could be convenient for others.  
Would the core developers consider this change?

-Anthony

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

naray_anand | 11 Aug 10:14

New to jpos

Hi,
This is Anand, I am trying to use jpos in my application where both
(Request and Response) ISO 8583 message needs to be generated.

How do i start using this jpos. If somebody who already implemented
ISO8583 message format, can help me out on this.????

Thanks in advance....

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

Faisal Ibnu Mas'ud | 1 Aug 11:27

PIN Derivation (IBM 3624 Method)

Hi,

I need to build simulator for PIN verification processing.
I've tried to search any discussion in this group related how to generate PIN offset using IBM 3624 method.
I found this http://tech.groups.yahoo.com/group/jpos-dev/message/6020 that explain "The natural
PIN is the result of encrypting the last 12 positions of the Primary Account Number ('PAN') under a key"

But I don't understand:
  - The last 12 positions of PAN include or exclude check digit
  - How to pad the PAN

Thanks

----------------------------------------------
Faisal I. M
Without fun you cannot do a good job...

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


Gmane