Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #74529 > unrolled thread

ISO8583

Started bybarontronik@gmail.com
First post2014-07-15 20:56 -0700
Last post2014-07-15 21:39 -0700
Articles 2 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  ISO8583 barontronik@gmail.com - 2014-07-15 20:56 -0700
    Re: ISO8583 Gary Herron <gary.herron@islandtraining.com> - 2014-07-15 21:39 -0700

#74529 — ISO8583

Frombarontronik@gmail.com
Date2014-07-15 20:56 -0700
SubjectISO8583
Message-ID<385182ab-db88-458d-8480-a1854125f50f@googlegroups.com>
Hi,

I'm very new to python programming.
I would like to ask how come when I send ISO8583 to the server, I didn't get any response back.

If I send it incorrect parameter, the server will reply but if I send it correctly, the server didn't response.

The original client is in java using ISOMUX, I have been trying to use the pyMux.py that on the ISO8583 module but didn't succeed also.

Right now i'm just using normal python socket and ISO8583 module.

The original java ISOMUX code:

    ISOMUX isoMux = new ISOMUX(channel)
    {
      protected String getKey(ISOMsg m)
        throws ISOException
      {
        return m.getMTI().substring(0, 2) + m.getString(32) + m.getString(12);
      }
    };

Could someone give me example whether python have other method similar to ISOMUX?

Thank you.

[toc] | [next] | [standalone]


#74532

FromGary Herron <gary.herron@islandtraining.com>
Date2014-07-15 21:39 -0700
Message-ID<mailman.11863.1405485611.18130.python-list@python.org>
In reply to#74529
On 07/15/2014 08:56 PM, barontronik@gmail.com wrote:
> Hi,
>
> I'm very new to python programming.
> I would like to ask how come when I send ISO8583 to the server, I didn't get any response back.

This is not really a Python question, but should rather be asked of 
whoever created the ISO8583 module.
Do you know how to contact the developers of the ISO8583 package?

Gary Herron



>
> If I send it incorrect parameter, the server will reply but if I send it correctly, the server didn't response.
>
> The original client is in java using ISOMUX, I have been trying to use the pyMux.py that on the ISO8583 module but didn't succeed also.
>
> Right now i'm just using normal python socket and ISO8583 module.
>
> The original java ISOMUX code:
>
>      ISOMUX isoMux = new ISOMUX(channel)
>      {
>        protected String getKey(ISOMsg m)
>          throws ISOException
>        {
>          return m.getMTI().substring(0, 2) + m.getString(32) + m.getString(12);
>        }
>      };
>
> Could someone give me example whether python have other method similar to ISOMUX?
>
> Thank you.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web