Questions tagged [axis]

This tag should be used for questions about editing a plot axis, from any plotting library (e.g. matplotlib, ggplot, pandas, bokeh, plotly, etc.). Don't use this tag to refer to Apache Axis. Use [apache-axis] instead; see: https://meta.stackoverflow.com/q/276302/

3009 questions
12
votes
2 answers

XSLT mixed content node

I have a quite stupid question. How can I make sure that my XML mixed content node doesn't get mixed up? I have, say, an XML structure resembling this. Stuff This book is great if you need to…
Olivier Tremblay
  • 1,441
  • 2
  • 20
  • 37
12
votes
8 answers

Axis2's wsdl2java fails on RPC/Encoded style web services

Is there any alternative to Axis2? Or the way to make it work (different data binding, for example)? Retrieving document at '...'. Exception in thread "main" org.apache.axis2.wsdl.codegen.CodeGenerationException: java.lang.RuntimeException:…
Andrey Adamovich
  • 20,285
  • 14
  • 94
  • 132
11
votes
3 answers

javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?

How to resolve the above exception while invoking a .net web service (asmx) hosted on SSL ("https:") protocol from java using axis jars. Receving the following error message while executing the code: faultDetail: …
lakshmi K
  • 111
  • 1
  • 1
  • 3
11
votes
1 answer

How to change factor names on x axis with ggplot2 and R?

I am plotting the interaction between multiple variables with geom_boxplot, and the resulting factor names are very long. I want to rename these factor names on the plot without changing the factors in the original data set to make the plot easier…
James Wade
  • 337
  • 2
  • 3
  • 13
11
votes
2 answers

How to make an R barplot with a log y-axis scale?

This should be a simple question... I'm just trying to make a barplot from a vector in R, but want the values to be shown on a log scale, with y-axis tick marks and labelling. I can make the normal barplot just fine, but when I try to use log or…
jake9115
  • 3,964
  • 12
  • 49
  • 78
11
votes
3 answers

Cannot find Axis 1.4 for Download

I was hoping to download Apache Axis from this location http://www.apache.org/dyn/closer.cgi/ws/axis/1_4 but it turns out that all the mirrors listed there show me Not Found The requested URL /mirror/ws/axis/1_4 was not found on this server. Is…
Abbas Gadhia
  • 14,532
  • 10
  • 61
  • 73
10
votes
2 answers

Quaternions vs Axis + angle

I have been trying to find the difference between the 2 but to no luck minus this The primary diff erence between the two representations is that a quaternion’s axis of rotation is scaled by the sine of the half angle of rotation, and instead…
Chris Condy
  • 626
  • 2
  • 9
  • 25
10
votes
1 answer

Role of JAXB in Java based Web Services

I must admit that I'm new to Web services. When I create a Web service using CXF or Axis, even with custom beans being used to communicate information between the client and the service, the objects are automatically marshalled and unmarshalled for…
user1064539
10
votes
1 answer

Invoking a Java/AXIS Web Service from .NET: the ‘return null’ issue

I've been seeking for this problem through all google, stackoverflow and more. And I found a lot of related answers to it, but not a real solution. I'm consuming an Axis Service from a .NET Client but the return is always null, no matter what…
Hector Sanchez
  • 2,297
  • 4
  • 26
  • 39
10
votes
1 answer

Invert the y-axis of an image without flipping the image upside down

I'm trying to do some image processing with matplotlib. However the y-axis is decreasing bottom up. I want it to be increasing bottom up without flipping the image upside down I have the following code import matplotlib.pyplot as plt import numpy as…
ecjb
  • 5,169
  • 12
  • 43
  • 79
10
votes
4 answers

How to plot without extending axis limits

I'm trying to draw on an existing axis without extending or modifying its limits. For example: import numpy as np import matplotlib.pyplot as plt xy = np.random.randn(100, 2) plt.scatter(xy[:,0], xy[:,1]) Makes a fine plot with well-fitting axis…
shadowtalker
  • 12,529
  • 3
  • 53
  • 96
10
votes
2 answers

AXIS vs JAX-WS for Web Service Client

I am deciding on the implementation of Web Service Client in Java. I've generated Axis client in Eclipse and JAS-WS client with wsimport. Both solutions work and now I have to choose one to go forward. What should I think about before picking one…
jny
  • 8,007
  • 3
  • 37
  • 56
10
votes
1 answer

Axis exception: o.a.axis2.transport.http.HTTPSender.sendViaPost(196) - Unable to sendViaPost - Connection refused

I have a server that is executing a Webservice call to an external server. This call has to occur over SSL and using a proxy: My truststore is well configured: trustStore is: /opt/configuration/keystore/truststore.jks trustStore type is :…
Mathias G.
  • 4,875
  • 3
  • 39
  • 60
10
votes
1 answer

Web Services in ColdFusion 2016 no longer functional

I'm upgrading from ColdFusion 9 to ColdFusion 2016 and my web services suddenly no longer work. I believe it's because Axis 2 was introduced in Cold Fusion 10 and with it rendered my existing web services non-functional. Even if I set the Web…
MPaul
  • 2,553
  • 3
  • 20
  • 34
10
votes
2 answers

r- axis label in image

I need to graph a metric by spatial position in a call center. I wrote in R a tiny example: tt<-data.frame(a1=c(0.4,.5,.5,.7),a2=c(.5,.6,.7,.8), a3=c(.8,.7,.9,.8)) row.names(tt)<-paste("L", 1:4, sep='') tt<-as.matrix(tt) tt So my matrix is: > tt …
GabyLP
  • 3,649
  • 7
  • 45
  • 66