Hi RawChannel,
Could you paste a configuration snippet (change the numbers if needed)?
-chhil
--
If you do not have the specs it is difficult to go ahead or suggest anything. The sample message dump you had shared does not have the DLI. How can anybody guess what is expected by your host?Sumeet
On Tuesday, 22 January 2013 07:32:04 UTC+5:30, amit shukla wrote:
--
--
jPOS is licensed under AGPL - free for community usage for your open-source project. Licenses are also available for commercial usage.
Please support jPOS, contact: sa...@jpos.org
You received this message because you are subscribed to the "jPOS Users" group.
Please see http://jpos.org/wiki/JPOS_Mailing_List_Readme_first
To post to this group, send email to jpos-...@googlegroups.com
To unsubscribe, send email to jpos-users+...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/jpos-users
I m using currently ascii ,i also tried post ,raw and hexchannel.but same out.
Should i use padchannel.
Please suggest.
Hi Sumeet,
it is adding length ,but finacle don't accept length .
Please suggest what channel i have to use to send correct format data.
On Friday, 18 January 2013 16:48:06 UTC+5:30, Sumeet Phadnis wrote:
--
--
jPOS is licensed under AGPL - free for community usage for your open-source project. Licenses are also available for commercial usage.
Please support jPOS, contact: sa...@jpos.org
You received this message because you are subscribed to the "jPOS Users" group.
Please see http://jpos.org/wiki/JPOS_Mailing_List_Readme_first
To post to this group, send email to jpos-...@googlegroups.com
To unsubscribe, send email to jpos-users+...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/jpos-users
Hi Amit,Pls check your packager definition file. It may have reference to a DTD file something like...
<!DOCTYPE isopackager PUBLIC"-//jPOS/jPOS Generic Packager DTD 1.0//EN"If so, change it to...<!DOCTYPE isopackager SYSTEM "genericpackager.dtd">... and make sure you have "genericpackager.dtd" file in the same folder as the packager config file.Regards,Sumeet
On Friday, 18 January 2013 16:32:10 UTC+5:30, amit shukla wrote:
hi,what is DLI?
--
I am trying to develop a web Service to connect with Finacle BancsConnect using JPOS ASCHII Channel. I am trying to develop a web Service to connect with Finacle BancsConnect using JPOS ASCHII Channel. Bet
> getting error as "Message received is not complete Length after
> Disassembling [200], Length before Disassembling [200]" Any Expert is there
> to do kind help? on this regards. How to fix the error. There may be a
> trailing space or any.>
> Pid: 11379 06/12/2012 20:39:14.346 Received 204 Bytes
> 30 32 30 30 31 32 30 30 f0 30 81 01 00 84 80 00 02001200.0......
> 00 00 00 00 06 00 00 30 31 36 35 31 39 36 32 35 .......016519625
> 32 30 30 30 33 38 36 33 36 37 34 30 30 30 30 30 2000386367400000
> 30 30 30 30 30 30 30 35 30 30 30 30 30 35 34 35 0000000500000545
> 37 37 32 30 31 32 31 32 32 30 31 32 32 30 30 31 7720121220122001
> 31 31 32 33 34 35 36 37 38 39 30 31 43 42 4c 49 112345678901CBLI
> 42 20 20 20 30 35 30 30 30 42 44 54 43 30 30 30 B 05000BDTC000
> 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 0000000000000000
> 30 30 30 30 31 44 30 30 30 30 30 30 30 30 30 30 00001D0000000000
> 30 30 30 30 30 30 42 44 54 30 35 30 31 36 31 36 000000BDT0501616
> 30 32 31 30 32 33 35 38 39 30 32 30 30 31 31 36 0210235890200116
> 31 30 31 32 32 35 31 31 30 36 32 30 37 30 30 31 1012251106207001
> 30 30 33 43 42 4c 30 30 33 41 54 4d 003CBL003ATM
>
> [/finacle/7018ON10J15/standin/v1.2/projects/swif/src/swfso001.cxx,1056]
> (fnDisassemble8583) Message Length greater than 20 but Field not Received
> [/finacle/7018ON10J15/standin/v1.2/projects/swif/src/swfso001.cxx,651]
> (fnSWIFProcMsg) fnDisassemble8583 Failed : Message received is not complete
> Length after Disassembling [200], Length before Disassembling [200]
>
>
>
Here is the code I am using to connect. Any Suggestion Please:
ISOMsg isoMsg = new ISOMsg();
isoMsg.setPackager(packager);
isoMsg.setMTI("1200");
isoMsg.set(2, "5196252000386367");
isoMsg.set(3, "400000");
isoMsg.set(4, "50000");
isoMsg.set(11, "054577");
isoMsg.set(12, "201212");
isoMsg.set(17, "2012");
isoMsg.set(24, "200");
isoMsg.set(32, "12345678901");
//isoMsg.set(37, "522194824");
isoMsg.set(41, "CBLIB");
//isoMsg.set(42, "IB");
//isoMsg.set(43, "CITY>DHAKABD");
isoMsg.set(46, "00BDTC000000000000000000000001D0000000000000000BDT");
isoMsg.set(49, "050");
isoMsg.set(102, "1602102358902001");
isoMsg.set(103, "1012251106207001");
isoMsg.set(123, "CBL");
isoMsg.set(124, "ATM");
//isoMsg.set(125, "1234556/56778890");
byte[] data = isoMsg.pack();
ASCIIChannel myChannel = new ASCIIChannel();
myChannel.setHost("192.168.200.180");
myChannel.setPort(20037);
myChannel.setPackager(packager);
myChannel.connect();
myChannel.send(isoMsg);
myChannel.getLogger();
ISOMsg responseMsg = myChannel.receive();
System.out.println(responseMsg);
>
> It should be noted that I am using 1987binary-aschii packager to pack the ISOMsg. Any help will be highly appreciated. I need urgent help.
Thank You all. I have fixed it. Any more issue I will face will let u know all.
@Zablon Ochomo,
I want to use the CSC channel. What modifications was made to the send length methods, and can you share please?
--
--
jPOS is licensed under AGPL - free for community usage for your open-source project. Licenses are also available for commercial usage.
Please support jPOS, contact: sa...@jpos.org
You received this message because you are subscribed to the "jPOS Users" group.
Please see http://jpos.org/wiki/JPOS_Mailing_List_Readme_first
To post to this group, send email to jpos-...@googlegroups.com
To unsubscribe, send email to jpos-users+...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/jpos-users
---
You received this message because you are subscribed to the Google Groups "jPOS Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jpos-users+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
--
jPOS is licensed under AGPL - free for community usage for your open-source project. Licenses are also available for commercial usage. Please support jPOS, contact: sa...@jpos.org
Join us in IRC at http://webchat.freenode.net/?channels=jpos
You received this message because you are subscribed to the "jPOS Users" group.
Please see http://jpos.org/wiki/JPOS_Mailing_List_Readme_first
To post to this group, send email to jpos-...@googlegroups.com
To unsubscribe, send email to jpos-users+...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/jpos-users
---
You received this message because you are subscribed to the Google Groups "jPOS Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jpos-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jpos-users/aef71cf8-a4de-45ad-ba8e-af550d2258d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.