AJUDA COM WEBSERVICE

ARNALDOCRUZ 17/09/2010 13:27:04
#353223
Boa tarde

colegas fiz os seguintes passos para criar o webservice

1 - Novo Projeto\ASP.NET Web Service Apllication
2 Name = SNGPC
3 - OK

segunda parte

Solution explore\Projeto\Add WebReference
Adiiconei a URL = http://homologacao.anvisa.gov.br/sngpc/webservice/sngpc.asmx?WSDL

Retorna

Methods

ConsultaDadosArquivoSNGPC ( Email As string , Senha As string , CNPJ As string , Hash As string ) As string
EnviaArquivoSNGPC ( Email As string , Senha As string , Arquivo As string , HashIdentificacao As string ) As string
ValidarUsuario ( Email As string , Senha As string ) As string

WebReference Name coloquei = ServicoSNGPC

Pronto até aqui

Duvidas no webservice

No webservice eu não tenho dentro da tag Method algo do tipo

function ConsultaDadosArquivoSNGPC ( Email As string , Senha As string , CNPJ As string , Hash As string ) As string

Function EnviaArquivoSNGPC ( Email As string , Senha As string , Arquivo As string , HashIdentificacao As string ) As string

Duvidas no consumo do webservice mcriado

1 - Como usar os métodos listados pelo WSDL
2 - Como capturar do meu sistema o webservice criado
3 - Como passar os paramteros

Meu msn --->>> cscjak@hotmail.com

Obrigado

Se alguém puder mim ajudar eu agradeço





FOXMAN 17/09/2010 15:53:08
#353243
Amigo, blza

Para vc utilizar o metodo :

Dim ws As New ServicoSNGPC
Dim xxxx as String = ws.ConsultaDadosArquivoSNGPC ( [Ô]Email[Ô], [Ô]Senha[Ô], [Ô]CNPJ[Ô] , [Ô]Hash[Ô])
[ô]onde email,senha,cnpj,hash
Dim yyyy as String = ws.EnviaArquivoSNGPC ( [Ô]Email[Ô], [Ô]Senha[Ô] , [Ô]Arquivo[Ô] , [Ô]HashIdentificacao[Ô])
[ô]idem ao anterior


Basicamente seria isso.
Ve se funfa ae.
ARNALDOCRUZ 17/09/2010 16:24:36
#353247
FoxMan a duvida é


isso eu coloco no webservice na tag methodo

Dim ws As New ServicoSNGPC
Dim xxxx as String = ws.ConsultaDadosArquivoSNGPC ( [Ô]Email[Ô], [Ô]Senha[Ô], [Ô]CNPJ[Ô] , [Ô]Hash[Ô])
[ô]onde email,senha,cnpj,hash
Dim yyyy as String = ws.EnviaArquivoSNGPC ( [Ô]Email[Ô], [Ô]Senha[Ô] , [Ô]Arquivo[Ô] , [Ô]HashIdentificacao[Ô])
[ô]idem ao anterior

e no sistema que chamo o servico do webservice

tendeu a duvida não como é o methodo e sim onde colocar o código e de com o chamar

obrigado

MARCOSLING 17/09/2010 17:42:24
#353257
Isso não tem manual?
FOXMAN 17/09/2010 20:41:55
#353265
Resposta escolhida
Citação:

:
FoxMan a duvida é


isso eu coloco no webservice na tag methodo

Dim ws As New ServicoSNGPC
Dim xxxx as String = ws.ConsultaDadosArquivoSNGPC ( [Ô]Email[Ô], [Ô]Senha[Ô], [Ô]CNPJ[Ô] , [Ô]Hash[Ô])
[ô]onde email,senha,cnpj,hash
Dim yyyy as String = ws.EnviaArquivoSNGPC ( [Ô]Email[Ô], [Ô]Senha[Ô] , [Ô]Arquivo[Ô] , [Ô]HashIdentificacao[Ô])
[ô]idem ao anterior

e no sistema que chamo o servico do webservice

tendeu a duvida não como é o methodo e sim onde colocar o código e de com o chamar

obrigado



Isso é no sistema por exemplo em um botão CONSULTAR.

Dim ws As New ServicoSNGPC
Dim xxxx as String = ws.ConsultaDadosArquivoSNGPC ( txtEmail.text , txtSenha.text, txtCnpj.text , sHash)
if x = y then
txtResultado.text = xxxx
else
txtResultado.text = [Ô]xxxxxxxxxxxxxxxxxxxxxxx[Ô]
end if

Veja se este exemplo meu pode te ajudar.....

http://www.vbmania.com.br/pages/index.php?varModulo=Detalhe&varID=8163
Tópico encerrado , respostas não são mais permitidas