Examples of HBCICallbackConsole


Examples of org.kapott.hbci.callback.HBCICallbackConsole

public class ConvertRDHNewToRDHXFile
{
    public static void main(String[] args)
    throws IOException
    {
        HBCIUtils.init(null,new HBCICallbackConsole());

        String nameOld=readParam(args,0,"Filename of old RDHNew passport file");
        HBCIUtils.setParam("client.passport.RDHNew.filename",nameOld);
        HBCIUtils.setParam("client.passport.RDHNew.init","1");
        HBCIPassportInternal passportOld=(HBCIPassportInternal)AbstractHBCIPassport.getInstance("RDHNew");
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

    extends AbstractShowLowlevelData
{
    public static void main(String[] args)
        throws Exception
    {
        HBCIUtils.init(null,new HBCICallbackConsole());
       
        String hbciversion;
        if (args.length>=1) {
            hbciversion=args[0];
        } else {
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

        String checkValids_st=getArg(args,4,"Auf g�ltige Werte testen (0/1)");
        boolean checkValids=checkValids_st.equals("1");
       
        Properties props=new Properties();
        props.setProperty("log.loglevel.default", "6");
        HBCIUtils.init(props,new HBCICallbackConsole());
       
        FileInputStream fi=new FileInputStream(ifilename);
        byte[]          buffer=new byte[1024];
        int             len;
        StringBuffer    st=new StringBuffer();
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

    extends AbstractShowLowlevelData
{
    public static void main(String[] args)
        throws Exception
    {
        HBCIUtils.init(null,new HBCICallbackConsole());
       
        String hbciversion;
        if (args.length>=1) {
            hbciversion=args[0];
        } else {
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

public class ConvertRDHPassport
{
    public static void main(String[] args)
        throws IOException
    {
        HBCIUtils.init(null,new HBCICallbackConsole());
       
        String nameOld=readParam(args,0,"Filename of old RDH passport file");
        HBCIUtils.setParam("client.passport.RDH.filename",nameOld);
        HBCIUtils.setParam("client.passport.RDH.init","1");
        HBCIPassportInternal passportOld=(HBCIPassportInternal)AbstractHBCIPassport.getInstance("RDH");
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

            System.out.println("  CheckAccountCRC <blz> <accnumber>");
            System.out.println("  CheckAccountCRC <iban>");
            System.exit(1);
        }
       
        HBCIUtils.init(null,new HBCICallbackConsole());
       
        if (args.length==2) {
          String blz=args[0];
          String number=args[1];
          String data=HBCIUtilsInternal.getBLZData(blz);
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

public class ShowLowlevelGVRestrictions
    extends AbstractShowLowlevelData
{
    public static void main(String[] args) throws Exception
    {
        HBCIUtils.init(null,new HBCICallbackConsole());

        String hbciversion;
        if (args.length >= 1) {
            hbciversion = args[0];
        } else {
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

        String pfilename=getArg(args,1,"Dateiname der Passport-Datei");
        String ifilename=getArg(args,2,"Dateiname f�r INI-Brief (noch nicht existierende Text-Datei)");
       
        String header="client.passport."+rdhtype;
       
        HBCIUtils.init(null,new HBCICallbackConsole());
        HBCIUtils.setParam(header+".filename",pfilename);
        HBCIUtils.setParam(header+".init","1");

        if (rdhtype.equals("SIZRDHFile")) {
            String libname=getArg(args,3,"Dateiname der SIZ-RDH-Bibliothek");
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

public class ConvertSIZRDHPassport
{
    public static void main(String[] args)
        throws IOException
    {
        HBCIUtils.init(null,new HBCICallbackConsole());
        HBCIUtils.setParam("log.loglevel.default","5");
       
        String nameOld=readParam(args,0,"Filename of SIZ RDH key file");
        String libname=readParam(args,1,"Complete filename of SIZ RDH library");
View Full Code Here

Examples of org.kapott.hbci.callback.HBCICallbackConsole

      }
     
      if (this.callback == null)
      {
        if (Application.inServerMode())
          this.callback = new HBCICallbackConsole();
        else
          this.callback = new HBCICallbackSWT();
      }
      //////////////////////////////////
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.