mayexi | 2 Jul 12:54
Favicon

New to Jpos

Hello all, I am new to Jpos and I need all d help I can get. I've bought the programming guide.

I want to know the first thing to do to become quiete comfortable with Jpos.

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

Vinod Kumar | 2 Jun 20:40
Favicon

Packing and unpacking

Hi everyone,

I am new to JPOS and I have an urgent requirement.

I would like to just use the packing and unpacking funcctionalities of JPOS in my application to meet ISO
standards. Please let me know if any of you have already done this.

My e-mail id - yesvike_psg@...

Thanks in advance
Vinod

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

Requirement_JPOS

Dear All,

 Looking for Core JAva JPOS professionals with 3-9 yrs experienced.

Location:Delhli/NCR.

 Please let me know if you would be interested. It would be a great help if you find anyone who are looking for cahnge.

 Please send your CVs to gayathri.s@...

You can reach me on 080-28450737.

 Looking forward for your response.

Regards,

Gayathri

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

dan demers | 16 Apr 16:55

Re: Merging jpos-dev into jpos-users

+1

Dan Demers
www.edgil.com

On Thu, Apr 16, 2009 at 10:40 AM, dan demers <kodiakdjd@...> wrote:

> +1
>
> Dan Demers
> www.edgil.com
>
>
> On Thu, Apr 16, 2009 at 8:11 AM, David Bergert <dbergert.ng@...>wrote:
>
>>
>>
>> +1
>>
>> David Bergert, CISSP, CISA, CPISM/A
>> www.paymentsystemsblog.com
>>
>> On Apr 15, 2009, at 10:39 AM, Alejandro Revilla wrote:
>>
>> >
>> >
>> > In order to have an unified archive, we are considering merging jpos-
>> > dev
>> > with jpos-users. If you agree, I'd send you invites to the jpos-
>> > users so
(Continue reading)

Alejandro Revilla | 15 Apr 17:36
Favicon

Merging jpos-dev into jpos-users

In order to have an unified archive, we are considering merging jpos-dev
with jpos-users. If you agree, I'd send you invites to the jpos-users so
users in this list can join (feel free to ignore them if you don't want
to join).

Please send your +/- 1 here or on twitter (#jpos)

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

TransactionManager fields to protected?

I would like to extend TransactionManager and override the method:

     protected void initParticipants (Element config)
         throws ConfigurationException
     {
	......
     }

I want to do this in order to init my participants in a special way.  
Unfortunately the "groups" field is not "protected" and there are no  
accessor methods so it does not matter that I can override  
initParticipants method. Would it be possible to change the fields on  
TransactionManager to "protected"?

-Anthony

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

thanhtung_ora | 30 Mar 03:53
Favicon

Error: Socket

TargetHost = "localhost";
MY_PORT=2000;
Socket clientSocket = new Socket(TargetHost,MY_PORT);

Debug
==>
[main] ERROR nab.nttung.socket.MyClient ­ Error:java.net.ConnectException: Connection refused: connect
Pls check!

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

Alejandro Revilla | 14 Mar 15:02
Favicon

New jPOS-EE.pdf document available

FYI, I've updated http://jpos.org/jposee/jPOS-EE.pdf with a new section about the ReplicatedSpace
implementation. 

I hope you can get some time to play with it and report failure/success under different scenerios.

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

Alejandro Revilla | 4 Mar 01:49
Favicon

nserver contributed by Victor Salaman

FYI, I've just added a NIO based server contributed by Victor Salaman to
jPOS-EE opt directory (see http://jposee.googlecode.com) and
http://jpos.org/jposee/jPOS-EE.pdf for general information about
jPOS-EE.

I didn't test it yet, but as always, reading Victor's elegant code is
nice and a learning experience, so I encourage you to review.

--Alejandro

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

baracuda247 | 17 Feb 17:34

ISOChannel Response mismatch

Hi guys,

I have an ISO server that listens for client's request. Clients 
connect to this server using mux'ed channel.

A lot of time, server may initiate requests to the client. Access to 
the client is usually done via a reference to 
getLastConnectedISOChannel() of the ISOServer in the NameRegistrar

Most time, this model works pretty well. In some scenarios while the 
server is waiting for client to process its request, the response 
received doesnt match the request. EG 0200 request may come back with 
0810 response.

From my understanding, MUX does not apply to ISOServer and I will 
have to find a way of receiving on the last connected isochannel and 
placing the messages in the Space. 

- Question now is, how do I receive on the last connected isochannel 
and place message in space.?
- How does my server retrieve its response from space?

Regards

Angel

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

Horacio E | 10 Feb 15:06
Favicon

Control response time

Hello, I'm trying to implement the following, I want to send a 0200 message and wait 60 seconds for a
response, If I don't get a response by the second 61 I automatically generate a 0420. The thing is when I run
my code, it keeps the connection open waiting for a reply, here's the code I'm using.

        Logger logger = new Logger();
        logger.addListener(new SimpleLogListener(System.out));
        ISOChannel channel = new ASCIIChannel (
                "127.0.0.1", 10000, new ISOBANCARDPackager());

        ((LogSource)channel).setLogger (logger, "test-channel");
        channel.connect();

        ISOMsg m = new ISOMsg();

        m.setMTI("0200");
        m.set ( X, "XXXXXXX");
        .... (Rest of the the fields)

        channel.send(m);
        Thread.sleep(60000);
        ISOMsg r = channel.receive();
        System.out.println("MTI: " + r.getMTI().toString());
        System.out.println("RESPUESTA: " + r.getString(39));
        System.out.println("RAZON: " + r.getString(44));
        channel.disconnect();

 Any ideas? 
Thanks

/// Horacio
(Continue reading)


Gmane