0

簡単な Web サービスを Glassfish にデプロイしようとしています。Web サービス クラスは次のとおりです。

import com.dv.testrunner.extended.Task;
import com.medallion.etl.exception.StepExecutionException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;

/**
 *
 * @author dvargo
 */
@WebService(serviceName = "Execute")
public class Execute
{
    /**
     * Web service operation
     */
    @WebMethod(operationName = "executeTask")
    public boolean executeTask(@WebParam(name = "task") Task task)
    {
        boolean setUp = task.setUp();
        boolean execute;
        try
        {
            execute = task.execute();
        }
        catch (StepExecutionException ex)
        {
            Logger.getLogger(Execute.class.getName()).log(Level.SEVERE, null, ex);
            return false;
        }
        return setUp && execute;
    }
}

タスクはシンプルなインターフェースです。インターフェースは次のとおりです。

package com.dv.testrunner.extended;

import com.medallion.etl.exception.StepExecutionException;

/**
 *
 * @author dvargo
 */
public interface Task
{

    public boolean execute() throws StepExecutionException;

    public boolean setUp();

}

Netbeans 経由で Web サービスをデプロイしようとすると、次のエラーが発生します。

java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: 開始: org.apache.catalina.LifecycleException: java.lang.RuntimeException: サーブレット Web サービス エンドポイント '' 障害
    com.sun.enterprise.web.WebApplication.start(WebApplication.java:138) で
    org.glassfish.internal.data.EngineRef.start(EngineRef.java:130) で
    org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:269) で
    org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:294) で
    com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:462) で
    com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:240) で
    org.glassfish.deployment.admin.DeployCommand.execute (DeployCommand.java:382) で
    com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:355) で
    com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:370) で
    com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1064) で
    com.sun.enterprise.v3.admin.CommandRunnerImpl.access$1200 (CommandRunnerImpl.java:96) で
    com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1244) で
    com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1232) で
    com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:459) で
    com.sun.enterprise.v3.admin.AdminAdapter.service (AdminAdapter.java:209) で
    com.sun.grizzly.tcp.http11.GrizzlyAdapter.service (GrizzlyAdapter.java:168) で
    com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:117) で
    com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:238) で
    com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:828) で
    com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:725) で
    com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1019) で
    com.sun.grizzly.http.DefaultProtocolFilter.execute (DefaultProtocolFilter.java:225) で
    com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137) で
    com.sun.grizzly.DefaultProtocolChain.execute (DefaultProtocolChain.java:104) で
    com.sun.grizzly.DefaultProtocolChain.execute (DefaultProtocolChain.java:90) で
    com.sun.grizzly.http.HttpProtocolChain.execute (HttpProtocolChain.java:79) で
    com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54) で
    com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59) で
    com.sun.grizzly.ContextTask.run(ContextTask.java:71) で
    com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532) で
    com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513) で
    java.lang.Thread.run(Thread.java:680) で

何が起こっているのか、どうすれば修正できるのか、誰か考えがありますか? Task をパラメーターとして使用できないということですか?

4

2 に答える 2

1

JAX-WS では、インターフェイスをメソッド パラメータとして使用できません。Task をクラスに置き換えてみてください。

于 2012-05-22T18:58:28.257 に答える
0

JAX-WS がインターフェースを許可しないだけでなく、あなたのケースでは意味がありません。タスクが実行することになっていることをどのように指定しますか? パラメーターとして具象クラスが必要であり、クラスには@XmlRootElement. エンドポイントでさまざまなタスクをサポートする場合は、それを実現するために、さまざまな名前の操作がさらに必要になります。

于 2012-05-23T18:45:12.553 に答える