IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.


#TechXchangePresenter
 View Only
  • 1.  CheckSum CRC32

    Posted Thu August 13, 2015 10:38 AM

    Hi Every One,

    how to write a checksum CRC32 algorithm code in webMethods… we have any wmservice r any other way we can develop the code… if anyone have any idea and if u have any docs regarding this please share with me.

    Note: i want to use webMethods services only …

    Thanks in Advance,

    Regards,
    Cherry Sri


    #webMethods-General
    #Integration-Server-and-ESB
    #webMethods


  • 2.  RE: CheckSum CRC32

    Posted Thu August 13, 2015 04:27 PM


  • 3.  RE: CheckSum CRC32

    Posted Fri August 14, 2015 01:39 AM

    Hi Mangat,

    Thanks for ur reply, I need java service also. First I want to try with wMServices if not possible i will do with java service please tell me if u have any idea about this…

    Thanks & Regards,
    Cherry Sri.


    #webMethods
    #Integration-Server-and-ESB
    #webMethods-General


  • 4.  RE: CheckSum CRC32

    Posted Fri August 14, 2015 04:32 AM

    I guess we do not have any BIS for doing CRC32 algorithm in wM. You have to write your own java service and then call that in your flow service.

    You may also raise a feature request on SAG Brainstorm on empower to have this feature in future releases.


    #webMethods
    #Integration-Server-and-ESB
    #webMethods-General


  • 5.  RE: CheckSum CRC32

    Posted Tue August 18, 2015 07:10 AM


  • 6.  RE: CheckSum CRC32

    Posted Tue August 18, 2015 08:23 AM

    Did you code the java service? If yes, can you share it here.

    For your perusal below is sample code snippet:

    import java.util.zip.CRC32;
    import java.util.zip.Checksum;
    
    String input = "Mahesh";
    byte bytes[] = input.getBytes();
    Checksum checksum = new CRC32();
    checksum.update(bytes, 0, bytes.length);
    long checksumValue = checksum.getValue();

    Print checksumValue

    Check the working code at http://sagwebmethods-mahesh.blogspot.in/


    #webMethods-General
    #Integration-Server-and-ESB
    #webMethods