Un saluto a tutti. Senza scendere troppo nei dettagli ho un server domino 8.qualchecosa (chiamiamolo server A) su cui ho creato un database in cui ho un webservice consumer che fa riferimento ad un webservice su un altro server domino (stessa versione, chiamiamolo server B). Sul server A ho creato un agent che dovrebbe usare il webservice consumer per ottenere dati dal server A. Il codice dell\'agent è il seguente: Dim obj As New Password Dim sResult As String On Error Goto errore sResult = obj.getData(Codicefiscale) Print "Risultato " & sResult fine: Exit Sub errore: Print Error & " " & Erl Se eseguo questo codice ottengo un errore che fa riferimento a SAXParser e dice: gli spazi bianchi sono obligatori tra publicid e systemID Qualche idea? Grazie
|