Hi,
I created a Web Service Provider in Java.
I then created a Web Service Consumer in Java that uses the WSDL of the Web Service Provider.
I want to try to use Java in 8.5.1 from now on, so I’m doing some tests.
I ran across those posts:
They helped a lot!
I have then created a Java Agent to consume my Web Service Provider by using the Web Service Consumer. I try to import the Web Service Consumer in my Agent by using this:
import com.domain.security.*;
I copied/pasted this from the AuthenticationService.java from the Web Service Consumer (my class is called Authentication):
/*
-
To instantiate a callable instance for invoking this service, copy and paste from the following:
import com.domain.security.*;
// Refer to com.domain.security.Authentication.java for service interface methods:
Authentication stub = new AuthenticationServiceLocator().getDomino();
*/
However, when I try to save my agent, I receive the following error:
“The import com.domain cannot be resolved”
I must be missing something…
I’m new to the Eclipse Designer and Java Web Services…
Can someone help me on this?
Thanks!