Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

File

Description

portTypeName.java

The SEI. This file contains the interface your service implements. You should not edit this file.

serviceName.java

The endpoint. This file contains the Java class your clients will use to make requests on the service.

_portTypeName_Impl.java

The skeleton implementation class. You will modify this file to implement your service.

portTypeName_portTypeNameImplPort_Server.java

A basic server main() that allows you to deploy your service as a stand alone process.

...

  • portTypeName.java is the service interface(SEI) for the service.
  • _portTypeName_Impl.java is the class you will use to implement the operations defined for the service.

...