Example usage for java.rmi RemoteException printStackTrace

List of usage examples for java.rmi RemoteException printStackTrace

Introduction

In this page you can find the example usage for java.rmi RemoteException printStackTrace.

Prototype

public void printStackTrace() 

Source Link

Document

Prints this throwable and its backtrace to the standard error stream.

Usage

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public HlutdeildTypeUser[] getCatchPortion(BigDecimal shipID, String season) {
    try {/*  w  ww  .ja v a 2 s.  c  o  m*/
        GethlutdeildskipsElement parameters = new GethlutdeildskipsElement(shipID, season);
        return getPortionPort().gethlutdeildskips(parameters);
    } catch (RemoteException e) {
        e.printStackTrace();
    }

    return null;
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public UthlutanirTypeUser[] getShipPortions(BigDecimal shipID, String season) {
    try {/*from w  ww. j av a2s .  com*/
        GetuthlutanirskipElement parameters = new GetuthlutanirskipElement(shipID, season);
        return getPortionPort().getuthlutanirskip(parameters);
    } catch (RemoteException e) {
        e.printStackTrace();
    }

    return null;
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public LondunTypeUser[] getCatchInfoByShipNumber(BigDecimal shipNumber, Calendar from, Calendar to) {
    try {//from w w w . jav  a2s .com
        GetlandanirbyskipElement parameter = new GetlandanirbyskipElement(shipNumber, from, to);
        return getCatchPort().getlandanirbyskip(parameter);
    } catch (RemoteException e) {
        e.printStackTrace();
    }

    return null;
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public AflamarkTypeUser[] getCatchQuota(BigDecimal shipNumber, String period) {
    try {//from   w ww  .  ja  va2s  . co  m
        GetaflamarkElement parameter = new GetaflamarkElement(shipNumber, period);
        return getCatchQuotaPort().getaflamark(parameter);
    } catch (RemoteException e) {
        e.printStackTrace();
    }

    return null;
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public AflaHeimildSkerdingAlltTypUser getCatchDelimiterShipInfo(BigDecimal shipNumber) {
    try {/* ww  w  . j a  v a  2  s  .  com*/
        UpphafsstillaElement parameters = new UpphafsstillaElement(shipNumber);
        return getCatchDelimiterPort().upphafsstilla(parameters).getResult();
    } catch (RemoteException re) {
        re.printStackTrace();
        return null;
    }
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public AflaHeimildSkerdingAlltTypUser calculateCatchDelimiter(AflaHeimildSkerdingAlltTypUser delimiter) {
    try {/*w w  w  .  ja v a  2  s.  co m*/
        ReiknaElement parameters = new ReiknaElement(delimiter);
        return getCatchDelimiterPort().reikna(parameters).getResult();
    } catch (RemoteException re) {
        re.printStackTrace();
        return null;
    }
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public MillifaerslaTypeUser getTransferInfo(BigDecimal reference) {
    try {/*from   ww w  .  j  a  v a  2  s. c om*/
        GetmillifaerslabytilvisunElement parameters = new GetmillifaerslabytilvisunElement(reference);
        GetmillifaerslabytilvisunResponseElement res = getTransfersPort().getmillifaerslabytilvisun(parameters);
        return res.getResult();
    } catch (RemoteException e) {
        e.printStackTrace();
    }

    return null;
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public LondunTypeUser getCatchInfoByNumberAndPort(BigDecimal catchNumber, BigDecimal port) {
    try {/*  ww  w .  ja v a2 s .c  om*/
        GetlonduninfoElement parameter = new GetlonduninfoElement(port, catchNumber);
        GetlonduninfoResponseElement element = getCatchPort().getlonduninfo(parameter);
        return element.getResult();
    } catch (RemoteException e) {
        e.printStackTrace();
    }

    return null;
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public CheckReplyTypeUser getFishingCompanyHasValidStrandveidileyfi(String companySSN) {
    GethefurutgerdstrandvlbyktElement parameters = new GethefurutgerdstrandvlbyktElement(companySSN, null);
    try {//w  w  w . j  a v a2  s .  co  m
        GethefurutgerdstrandvlbyktResponseElement res = getLicensePort().gethefurutgerdstrandvlbykt(parameters);
        return res.getResult();
    } catch (RemoteException e) {
        e.printStackTrace();
    }

    return null;
}

From source file:is.idega.idegaweb.egov.gumbo.webservice.client.business.DOFWSClientRealWebservice.java

public VeidileyfiTypeUser getFishingLicenseInfo(BigDecimal id) {
    GetveidileyfibyidElement parameters = new GetveidileyfibyidElement(id);
    try {//from  ww  w . j av a 2s. com
        GetveidileyfibyidResponseElement ret = getLicensePort().getveidileyfibyid(parameters);
        return ret.getResult();
    } catch (RemoteException e) {
        e.printStackTrace();
    }

    return null;
}