AndreI Sljusar

Greenhorn
+ Follow
since Jan 30, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by AndreI Sljusar

Thanks Tim!

According to Ant documentation:

<javac srcdir="${src}:${src2}"
destdir="${build}"
includes="mypackage/p1/**,mypackage/p2/**"
excludes="mypackage/p1/testpackage/**"
classpath="xyz.jar"
debug="on"
/>

There are two java source directories. Am I rigth?


Andrei
17 years ago
Hi,

I meant:

<target name="compile" depends="init">

<javac srcdir="${src.java.dir}:${src.generated.java.dir}"
destdir="${build.webapp.dir}/WEB-INF/classes"
source="${source.level}"
excludes="**/*.html"
debug="${debug}">
<classpath>
<path refid="classpath"/>
<path refid="kodo.class.path"/>
</classpath>
</javac>
</target>

src.java.dir uses classes from src.generated.java.dir.

Regards,
Andrei
17 years ago
Hi,

The ant documentation says: <javac srcdir="${src}:${src2}". So I use it to compile from multiple source directories.)

But ant can't find source directories.

Am I missing something here?

Regards,
Andrei
17 years ago
Hi all,

I call method and get the following error:

AxisFault
faultCode: {http://xml.apache.org/axis/}HTTP
faultSubcode:
faultString: (405)Method Not Allowed
faultActor:
faultNode:
faultDetail:
{}:return code: 405
Must use GET

{http://xml.apache.org/axis/}HttpErrorCode:405

(405)Method Not Allowed
at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:744)
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
at org.apache.axis.client.Call.invoke(Call.java:2767)
at org.apache.axis.client.Call.invoke(Call.java:2443)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)


Can you tell me what this error means?

Thanks in advance.

Andrei
18 years ago
I am going to use web servces. Just I develop client side.

The web service server is not ready yet, but I was given a test response with data, which I would like to use to test web service client.

Andrei
18 years ago
Thanks Balaji for a such a prompt reply.

"The client stub will also read this soap response and gives the reponsse data after deserialization."

It means I can't pass on my soap response as a byte stream, for example to the client stub programmatically and to call the methods.

Andrei
18 years ago
Hi everyone,

I use Axis engine.

I can't use web service, but I have an example SOAP response.

How to extract data from this response.

Question: how to deserialize java objects from this response? I have generated java classes using wsdltojava.


Thanks,
Andrei
18 years ago