6

スクリプトの実行中に以下のエラーに直面しています。スクリプトは Web サービスを呼び出そうとしています..そして、Web サービスの呼び出しに成功しました。最後に..成功したメッセージも出力しますが、間に LOG UTILS を使用していくつかのエラーをスローするだけです。見て、提案してください..

java.lang.IllegalArgumentException: port out of range:67001

 

java.lang.NullPointerException 
        at com . drivelogic.services.logging.LogConfig.isDevMode(LogConfig.java:89)
        at com.drivelogic.services.logging.DlLogger.isTraceLog(DlLogger.java:277)
        at com.drivelogic.services.logging.DlLogger.log(DlLogger.java:55)
        at com.drivelogic.common.util.LogUtils.log(LogUtils.java:114)
        at com.drivelogic.common.util.LogUtils.fine(LogUtils.java:252)
        at com.cccis.frm.reprocess.util.PublishUtil.invokeWebService(PublishUtil.java:304)
        at com.cccis.frm.reprocess.batch.SOABatchReprocessor.reprocess(SOABatchReprocessor.java:137)
        at com.cccis.frm.reprocess.batch.SOABatchReprocessor.main(SOABatchReprocessor.java:56)

 

java.lang.IllegalArgumentException: port out of range:-2
        at java.net.InetSocketAddress.<init>(InetSocketAddress.java:83)
        at weblogic.socket.SocketMuxer.newSocket(SocketMuxer.java:373)
        at weblogic.socket.SocketMuxer.newClientSocket(SocketMuxer.java:383)
        at weblogic.socket.ChannelSocketFactory.createSocket(ChannelSocketFactory.java:86)
        at weblogic.socket.BaseAbstractMuxableSocket.createSocket(BaseAbstractMuxableSocket.java:133)
        at weblogic.rjvm.t3.MuxableSocketT3.newSocketWithRetry(MuxableSocketT3.java:214)
        at weblogic.rjvm.t3.MuxableSocketT3.connect(MuxableSocketT3.java:383)
        at weblogic.rjvm.t3.ConnectionFactoryT3.createConnection(ConnectionFactoryT3.java:34)
        at weblogic.rjvm.ConnectionManager.createConnection(ConnectionManager.java:1784)
        at weblogic.rjvm.ConnectionManager.findOrCreateConnection(ConnectionManager.java:1424)
        at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:443)
        at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:321)
        at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:254)
        at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:197)
        at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238)
        at weblogic.rjvm.RJVMFinder.findOrCreateRemoteCluster(RJVMFinder.java:316)
        at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:205)
        at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
        at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
        at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:353)
        at weblogic.jndi.Environment.getContext(Environment.java:315)
        at weblogic.jndi.Environment.getContext(Environment.java:285)
        at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
        at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
        at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
        at javax.naming.InitialContext.init(InitialContext.java:223)
        at javax.naming.InitialContext.<init>(InitialContext.java:197)
        at com.drivelogic.services.logging.QueueHandler.send(QueueHandler.java:60)
        at com.drivelogic.services.logging.DlLogger.log(DlLogger.java:66)
        at com.drivelogic.common.util.LogUtils.log(LogUtils.java:114)
        at com.drivelogic.common.util.LogUtils.fine(LogUtils.java:252)
        at com.cccis.frm.reprocess.util.PublishUtil.invokeWebService(PublishUtil.java:304)
        at com.cccis.frm.reprocess.batch.SOABatchReprocessor.reprocess(SOABatchReprocessor.java:137)
        at com.cccis.frm.reprocess.batch.SOABatchReprocessor.main(SOABatchReprocessor.java:56)
4

1 に答える 1

8

最大ポート番号は65535です。既知のサービス ポートのリストを次に示します (リストは頻繁に更新されます)。より低いポート番号を使用してみてください。

于 2013-03-27T11:03:45.683 に答える