Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Consuming Session-enabled Web Service

Former Member
0 Kudos

We've used .NET C Sharp to create a session-enabled web service. ABAP acts as a client to consume this web service. However, ABAP cannot correctly call the web service because the session information (session cookie) cannot pass to web service.

Any way or trick to call a session-enabled (stateful) web service from ABAP?

1 ACCEPTED SOLUTION

athavanraja
Active Contributor
0 Kudos

you may get a quicker answer here

4 REPLIES 4

athavanraja
Active Contributor
0 Kudos

you may get a quicker answer here

Former Member
0 Kudos

I solved by myself already.

We can use SM59 to create HTTP Destination since it supports cookie. At LPCONFIG, we can use HTTP Destination instead of URL.

Former Member
0 Kudos

Hi Thomas,

I have to implement ABAP consuming web service, can you help me describing the different steps in detail ?

Thanks in advance.

Philippe

0 Kudos

Basically, you can follow the steps in Thomas Jung's blog:

/people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap

It has full steps to teach you creating web service proxy which is called by ABAP when consuming web service.