NF-e problemas com WSDL e consumo de servico

Bom dia a todos, eu baixei os WSDL do site da SEFAZ/SP e gerei as classes atravez do JAX-WS (que vem junto com o netbeans), gerei também os xml e os beans através do JAXB.

Agora segue uma duvida, estava eu codificando, e cheguei num beco sem saida até agora, eu rodo o programa mas sai uma menssagem de erro que eu desconheço, na realidade eu nem intendo o porque que ela aparece.

segue o codigo e a menssagem de erro:

public class VerificarStatus{
    public static void main(String args[]){
         // gero os beans atravez dos .xsd, populo eles e crio os xml.
         // dai agora eu vou consumir os web services

        
        producao3.ObjectFactory pof = new producao3.ObjectFactory();
        producao3.NfeStatusServicoNF nf = pof.createNfeStatusServicoNF();
        
        nf.setNfeCabecMsg(getCabecalho());
        nf.setNfeDadosMsg(new String());      
        
        producao3.NfeStatusServico status = new producao3.NfeStatusServico();
        producao3.NfeStatusServicoSoap stub = status.getNfeStatusServicoSoap();// da erro bem nessa linha <------
        
        String resposta = stub.nfeStatusServicoNF(nf.getNfeCabecMsg(), nf.getNfeDadosMsg());

        System.out.println(resposta);
  
    }

}

Erro:

Exception in thread "main" javax.xml.ws.WebServiceException: class producao3.NfeStatusServicoNF do not have a property of the name {http://www.portalfiscal.inf.br/nfe/wsdl/NfeStatusServico}nfeCabecMsg
        at com.sun.xml.internal.ws.client.sei.BodyBuilder$DocLit.<init>(BodyBuilder.java:191)
        at com.sun.xml.internal.ws.client.sei.SEIMethodHandler.<init>(SEIMethodHandler.java:105)
        at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.<init>(SyncMethodHandler.java:73)
        at com.sun.xml.internal.ws.client.sei.SEIStub.<init>(SEIStub.java:71)
        at com.sun.xml.internal.ws.client.WSServiceDelegate.createEndpointIFBaseProxy(WSServiceDelegate.java:628)
        at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:331)
        at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:313)
        at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:295)
        at javax.xml.ws.Service.getPort(Service.java:99)
        at producao3.NfeStatusServico.getNfeStatusServicoSoap(NfeStatusServico.java:74)
        at nfe.VerificarStatus.main(VerificarStatus.java:138)
Caused by: javax.xml.bind.JAXBException: {http://www.portalfiscal.inf.br/nfe/wsdl/NfeStatusServico}nfeCabecMsg is not a valid property on class producao3.NfeStatusServicoNF
        at com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl.getElementPropertyAccessor(JAXBContextImpl.java:931)
        at com.sun.xml.internal.ws.client.sei.BodyBuilder$DocLit.<init>(BodyBuilder.java:188)
        ... 10 more
Java Result: 1

Bom, se alguem ja passou algo pareceido, qualquer ajuda é bem vinda. :smiley:
P.S.:
Link para o wsdl: https://www.fazenda.sp.gov.br/nfe/url_webservices/WSDL_SP.zip
Link para o manual da integração v3.0: https://www.fazenda.sp.gov.br/nfe/legislacao/manual_de_integracao_contribuinte_v30.pdf
Link para os Schemas(*.xsd) em vigencia para a v3.0: https://www.fazenda.sp.gov.br/nfe/downloads/PL_005c.zip