I notice that the constructor without the "features" seems to work (not cause 
an error).  The class extends "Service" which is brought in with "import 
javax.xml.ws.Service;".   Is there a constructor for the three arguments?  This 
happens in two files in the code Deloitte wrote occurring three times in each.

 

In each case the two argument calls are OK and the three argument calls are the 
constructor is undefined.

 

Jerry

 

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf 
Of Davidson, Jerry
Sent: Monday, April 30, 2012 1:29 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Error - Constructor: Service

 

  

I get the following error (3 times) and am not sure how to proceed to eliminate 
it.

 

Description         Resource             Path       Location               Type

The constructor Service(URL, QName, WebServiceFeature[]) is undefined           
CaseManagementVisitsServiceService.java                
/WvsAppWebService/src/gov/il/dhs/wvs/wsimport/casemanagement line 51   Java 
Problem

 

è  public CaseManagementVisitsServiceService(WebServiceFeature... features) {

        super(__getWsdlLocation(), CASEMANAGEMENTVISITSSERVICESERVICE_QNAME, 
features);

    }

 

    public CaseManagementVisitsServiceService(URL wsdlLocation) {

        super(wsdlLocation, CASEMANAGEMENTVISITSSERVICESERVICE_QNAME);

    }

 

è    public CaseManagementVisitsServiceService(URL wsdlLocation, 
WebServiceFeature... features) {

        super(wsdlLocation, CASEMANAGEMENTVISITSSERVICESERVICE_QNAME, features);

    }

 

    public CaseManagementVisitsServiceService(URL wsdlLocation, QName 
serviceName) {

        super(wsdlLocation, serviceName);

    }

 

è    public CaseManagementVisitsServiceService(URL wsdlLocation, QName 
serviceName, WebServiceFeature... features) {

        super(wsdlLocation, serviceName, features);

    }

 What does this mean? "WebServiceFeature... features"

 How do I find out how to fix these errors?  They seem to be duplicated in 
another class (RspServiceService) so If I can get the first ones the second 
will be fixeded.

 While it hasn't shown up here yet, I submitted another question this morning 
at about 9:30.  I switched from the original jetty configuration problem by 
switching to eclipse one.

Reply via email to