cancel
Showing results for 
Search instead for 
Did you mean: 

Web Service authentication by security role

Former Member
0 Kudos

I define an web service with authentication by security role.

I access web service via web dynpro model in EP7.

It appear below error:

<b>Exception on execution of web service with WSDL URL 'http://XXX:50000/XXX/Config1?wsdl ' with operation 'XXXXXXXX' in interface 'XXXVi_Document'</b>

how should i do to solve this problem ?

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi WU,

Use this code with ur webservice & check the error in log file.May be we will get some more info abt this.

This code will be in execute method

Request_XXX reqData = new Request_XXXdbModel);

reqData.wdSetInvocationLogEnabled(true);

in the catch block give this

logger.traceThrowableT(

Severity.ERROR,

wdComponentAPI.getApplication().getDeployableObjectPart().getName(),

ex);

//if (logger.beDebug()) {

logger.fatalT(requestModel.wdGetRequestLog());

logger.fatalT(requestModel.wdGetResponseLog());

logger.fatalT(requestModel.associatedModelClassInfo().getModelInfo().toString());

logger.fatalT(requestModel.toString());

request model is ue model & ex is the exception in catch block.

execute the application after this change & check the server log.In case u r not able to find out the problem,send the stach trace.

regards

Sumit

Former Member
0 Kudos

I am also getting the same error. I am able to send the request through the web service navigator and get a response. When I use the studio to run the same application, I am getting the same error. Did you resolve this? I appreciate your help.

Muthu.