SOAP Security: HTTP-Basic authentication
Eugene Prokopiev <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
Hi, How can I create SOAP Call for service protected by servlet container with HTTP-Basic authentication? I can use this code with Axis (http://ws.apache.org/axis/): Service service = new Service(); Call call = (Call)service.createCall(); call.setUsername(username); call.setPassword(password); How can I do it with Mozilla JavaScript?