cancel
Showing results for 
Search instead for 
Did you mean: 

WebService: The difference between Deployable proxy & Standalone proxy

Former Member
0 Kudos

Hi all,

The help document tell me the difference between Deployable proxy & Standalone is the former can be deploy while the latter can not.

Now I know how to use a standalone proxy, but now I would like to call a ws in web application, I need a deployable one.

After autogenerate, to my surprise, there's no implementation class in SEI!

As know to all, if this proxy we call it 'zHello'

as a standalone proxy, we have four files in SEI

ZHellows.java

ZHellowsService.java

ZHellowsServiceImpl.java

ZHellowsSoapBindingStub.java

use the follow segment can do the job.

ZhellowsService service = new ZhellowsServiceImpl();

Zhellows hello = service.getLogicalPort();

System.out.println(hello.zHello("testit"));

but what I found in the SEI of a deplyable proxy is just 2 interface of them:

ZHellows.java

ZHellowsService.java

This time I do not know how to use this proxy, shall I implement it first?

Accepted Solutions (1)

Accepted Solutions (1)

former_member182372
Active Contributor
0 Kudos

Hi William,

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/45/f957507cb343f78e818c50620ed5ca/frameset.htm">Deployable versus Standalone Proxies</a>

Best regards, Maksim Rashhcynski.

Former Member
0 Kudos

Thank you, you got my answer

Answers (0)