cancel
Showing results for 
Search instead for 
Did you mean: 

How to enter the authentication details of Proxy in SAP NWDS?

Former Member
0 Kudos

Hi,

I'm trying to consume a Web Service over the Internet by creating a Deployable proxy project. And trying to do New -> Client proxy definition but getting the error.

Under

Windows -> Preferences -> Workbench -> Proxy Settings I have entered the proxy details but there is no option to provide the authentication details.

Could U please help where I can enter the authentication details for the proxy. Because Whenever I try to browse the SAP UDDI Registry for the services I get an error as follows :

An ERROR has occurred

org.uddi4j.transport.TransportException: webservices_3711

--- caused by ---

com.sap.engine.services.webservices.jaxm.soap.accessor.NestedSOAPException: Problem in server response: [Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied. )].

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Ravi,

Give the settings in NWA,

SOA management->Tech Config->WS destination

Http authentication..

if it still does not work..add this code in NWDS( I assume ur trying it in Java j2ee perspective)

import com.sap.services.webservice.*

System.setProperty("proxyHost", "proxy");

System.setProperty("http.proxyHost", "proxy");

System.setProperty("proxyPort", "8080");

System.setProperty("http.proxyPort", "8080");

Authenticator.setDefault(new Authenticator() {

protected PasswordAuthentication getPasswordAuthentication() {

return new

PasswordAuthentication("mydomain

username","password".toCharArray());

}});

Hope it helps!!!!!!!!!!!!!

Reward points if u found it useful:-)

Former Member
0 Kudos

Hi Tauseef,

I'm in Web services perspective and I have created a dynamic proxy client project. I found in one the tutorials i'm goin accoding to that.I found it in

Help menu -> SAP Web AS documentation -> SAP Web Services.