"no IV used for this cipher"

2009-12-03 Thread P.N.


Hello!

Can somebody please tell me, what it means: "no IV used for this 
cipher"? IV seems to be some security related abbreviation, but I'm not 
an expert in this area :-(


Kind regards

Peter



Axis2 ADB/POJO client and SSL problem

2009-12-03 Thread P.N.


Hello!

I've created a web service client (from WSDL, using ADB). I've set the 
following system properties:

javax.net.ssl.keyStore
javax.net.ssl.keyStoreType = JKS
javax.net.ssl.keyStorePassword
javax.net.ssl.trustStore
javax.net.ssl.trustStoreType = JKS
javax.net.ssl.trustStorePassword


When I want to run the client, I'm getting the following message:


org.apache.axis2.AxisFault: Transport error: 501 Error: Not Implemented
at 
org.apache.axis2.transport.http.HTTPSender.handleResponse(HTTPSender.java:295)
at 
org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:190)
at 
org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:75)
at 
org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:389)
at 
org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:222)

at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:435)
at 
org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:402)
at 
org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
at 
org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)
at 
com.semiramis.webservices._2006_01.export.extended.mde_0901.ExportSoapBindingStub.export(ExportSoapBindingStub.java:123)
at 
com.dvb.app.ws.client.export.ExportClient.(ExportClient.java:66)
at 
com.dvb.app.ws.client.export.ExportClient.main(ExportClient.java:41)



Additional information with javax.net.debug=true:

[snip: hexadecimal dump, containing also '']
main, WRITE: TLSv1 Application Data, length = 640
[Raw write]: length = 645
[snip: hexadecimal dump]
main, handling exception: java.net.SocketException: Software caused 
connection abort: recv failed

%% Invalidated:  [Session-1, SSL_RSA_WITH_RC4_128_MD5]
main, SEND TLSv1 ALERT:  fatal, description = unexpected_message
Padded plaintext before ENCRYPTION:  len = 18
: 02 0A B2 3E AB 3E A0 73   ED 12 BC 8C C7 47 9A F5  ...>.>.s.G..
0010: 99 76  .v
main, WRITE: TLSv1 Alert, length = 18
main, Exception sending alert: java.net.SocketException: Software caused 
connection abort: socket write error



IMHO, it looks like the problem occurred probably after transmission of 
data. tcldump seems to have a problem with SSL, cannot see the data 
transmitted.



Kind regards

Peter



Cannot run axis2 client (error 501)

2009-11-20 Thread P.N.


Hello!

When trying to connect to an axis-service (old axis version!) from an 
axis2-client I'm always getting the following error:



org.apache.axis2.AxisFault: Transport error: 501 Error: Not Implemented
at 
org.apache.axis2.transport.http.HTTPSender.handleResponse(HTTPSender.java:295)
at 
org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:190)
at 
org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:75)
at 
org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:389)
at 
org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:222)

at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:435)
at 
org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:402)
at 
org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
at 
org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)



What might be the cause for this?
Is it possible to get the full http messages?

Kind regards

Peter



Re: use abstract in complextype

2009-11-18 Thread P.N.

Please, don't capture other people's threads. Create Your own, instead!

P.



Re: Where are the locator and the service?

2009-11-17 Thread P.N.

P.N. wrote:


[snip]



Forgot to mention:
transport="http://schemas.xmlsoap.org/soap/http"/>


Regards

Peter



Where are the locator and the service?

2009-11-17 Thread P.N.


Hello!

I want to create a WS client from wsdl using:
WSDL2Java -uri file:///C:/Dokumente%20und%20Einstellungen/.../xxx.wsdl 
-d xmlbeans -s -o "C:\my-sources"


Though there's a service defined, no locator or service file are created.

Here's a snippet from my wsdl (guessing this should be the needed part, 
i.e. schemas, service with name):



http://schemas.xmlsoap.org/wsdl/"; 
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema";

... >



...

...

...




I've tested with one wsdl file resulting in a very big (some MB!) java 
source, when using ADB, so I'd prefer using XmlBeans.


Kind regards

Peter Nabbefeld