You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2003/08/28 09:08:01 UTC

DO NOT REPLY [Bug 22783] New: - MalformedURLException: unknown protocol

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22783>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22783

MalformedURLException: unknown protocol

           Summary: MalformedURLException: unknown protocol
           Product: Ant
           Version: 1.5.1
          Platform: Other
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Optional Tasks
        AssignedTo: dev@ant.apache.org
        ReportedBy: sachin.raj@wipro.com


when i try to deploy my war file into weblogic 6.1 the following error is 
displayed

     [java] java.net.MalformedURLException: unknown protocol: d
     [java]     at java.net.URL.<init>(URL.java:475)
     [java]     at java.net.URL.<init>(URL.java:371)
     [java]     at java.net.URL.<init>(URL.java:325)
     [java]     at weblogic.deploy.parseSource(deploy.java:973)
     [java]     at weblogic.deploy.init(deploy.java:517)
     [java]     at weblogic.deploy.runBody(deploy.java:355)
     [java]     at weblogic.utils.compiler.Tool.run(Tool.java:79)
     [java]     at weblogic.deploy.main(deploy.java:1616)

--------------- build.xml--------------
	<target name="deploy" depends="war" description="DEPLOY">
		<echo>Deploying to weblogic......</echo>	
	    	<serverdeploy action="deploy" source="../${jar-file}">
			<weblogic application="SerialExtract"
			    server="t3://localhost:7001"
			    classpath="d:/bea/wlserver6.1/lib/weblogic.jar"
			    password="password"
			    component="SerialExtract:myserver"
			    debug="true"/>
	    	</serverdeploy>
	</target>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org