-
sdaau
axis numeric gnuplot histogram
I’m having this file as data.dat:Xstep Y1 Y2 Y3 Y4 332 1.22 0.00 0.00 1.43 336 5.95 12.03 6.11 10.41 340 81.05 81.82 81.92 81.05 394 11.76 6.16 10.46 5.87 398 0.00 0.00 1.51 1.25 1036 0.03 0.00 0.00 0.00I can plot this data as histogram with this script, hist-v1.gplot (using set style data histogram): set xlabel “X values” set ylabel “Occurence” set style data histogram set style histogram cluster gap 1 set style fill solid border -1 set term png set output ‘hist-v1.png’ set boxwidth 0.9 # attem
-
user930514
tooltip axis jqplot
For a JQplot chart with 2 y axes, I am able to set the tooltip but when i hover over a datapoint i need to know to which y axis the tooltip belongs. I need this so that i can display the tooltip after multiplying with the appropriate scale factor. The code i tried is shown below. I thought y will be null when we hover over a data point belonging to y2 axis. But y is never null.$(“#”+sTargetId).bind(‘jqplotcustomDataMouseOver’, function (ev, seriesIndex, pointIndex, data) { var chart_left = $(
-
slm
web-services axis
I have been facing an error while creating a web service client, while generatong Java from WSDL. The complete stack trace is as follows. I am using jdk1.6, axis2, Windows 7, Eclipse Indigo.The complete error trace is as follows…IWAB0399E Error in generating Java from WSDL: java.io.IOException: <input ..>, <output ..> or <fault ..> in <portType> with undefined message found. message name is ‘{http://service.ads.itism.tcs.com}null’java.io.IOException: <input ..>,
-
Alberto acepsut
charts axis javafx-2 line-plot
Having a XY Line Chart I would like compress/expand data visualization both for X and Y axis by left mouse click, keep pressed and drag left/right and up/down.Here is a chart exampleand here is the code to plot sample datapublic class BaseXYChart extends Application {@Override public void start(Stage stage) {stage.setTitle(“Linear plot”);final CategoryAxis xAxis = new CategoryAxis();final NumberAxis yAxis = new NumberAxis(1, 22, 0.5);yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yA
-
The dude
apache2 tomcat6 mod-jk soap axis
I have a tomcat6 server with axis2, that provides web services. This server get connections through an apache2 server using mod_jk. Most connections are ok, but sometimes I get exceptions like this one:17:17:23,730 ERROR RPCMessageReceiver:160 – com.ctc.wstx.exc.WstxEOFException: Unexpected EOF; was expecting a close tag for element <ns2:dhAudioFile>at [row,col {unknown-source}]: [1,4097]I am really lost here. The exceptions are being thrown from tomcat, but I don’t know in which point the
-
JudoWill
java matlab axis plot bioinformatics
I’m making a large number of seqlogos programmatically. They are hundreds of columns wide and so running a seqlogo normally creates letters that are too thin to see. I’ve noticed that I only care about a few of these columns (not necessarily consecutive columns) … most are noise but some are highly conserved.I use something like this snippet:wide_seqs = cell2mat(arrayfun(@randseq, repmat(200, [500 1]), ‘uniformoutput’, false)); wide_seqs(:, [17,30, 55,70,130]) = repmat([‘ATCGG’], [500 1])conse
-
Paul
java weblogic axis weblogic9.x soapfault
I have some WSDL from which I need to generate a web service implementation. I’m using Eclipse, and Axis1.4, and running on Weblogic9.2.Generating the server stubs goes fine, and I’ve implemented the code I need to. However, for compatibility with the exising implementation we are emulating, I need to return SOAP faults for some specified error conditions.That is, I need the SOAP body of the response to look like this example:<soapenv:Body><soapenv:Fault><faultcode xmlns:ns1=”foob
-
CloudyMarble
java eclipse axis webservice-client wsdl2java
I’ve used default eclipse wizard to create a web service client (File>New>Other and select a wizard for web service client). The classes were generated and the problem now is that the username and password were introduced, and I don’t know how to modify my code to access the server, I tried to change the code in _initServiceProxy() method of generated proxy classprivate DirService_Port proxy = null;private void _initDirService_PortProxy() {try {proxy = (new com.soap.DirService_ServiceLocator()).
-
Sasi Kathimanda
java web-services soap ant axis
I am using Axis 1.4 version and used org.apache.axis.tools.ant.wsdl.Wsdl2javaAntTask to generate clientcode. However, when i tried to make a call ended up with following error,Thanks in Advancejava.io.IOException: Chunked input stream failed to receive valid chunk size:<?xmlversion=”1.0″at org.apache.axis.transport.http.ChunkedInputStream.getChunked(ChunkedInputStream.java:155)at org.apache.axis.transport.http.ChunkedInputStream.read(ChunkedInputStream.java:87)at java.io.FilterInputStream.rea
-
Andreas Veithen
authentication wsdl axis eclipse-wtp wsdl2java
I was provided this WSDL, and I have to develop a client for it (I’ve been making questions here about it lol).<?xml version=”1.0″ encoding=”UTF-8″?> <wsdl:definitions targetNamespace=”urn:ManterFornecedor” xmlns:s0=”urn:ManterFornecedor” xmlns:soap=”http://schemas.xmlsoap.org/wsdl/soap/” xmlns:soapenc=”http://schemas.xmlsoap.org/soap/encoding/” xmlns:wsdl=”http://schemas.xmlsoap.org/wsdl/” xmlns:xsd=”http://www.w3.org/2001/XMLSchema”><wsdl:types><xsd:schema elementFormDefau
-
Mauricio Alejandro Westermeyer
java eclipse web-services apache axis
Would like some help. I already spent a lot of hours trying to solve this problem, searching in the web, some sites – and some questions here – but still no answer for this. Any help will be greatly appreciated.I’m not by that means a specialist in this, so some information may be vague I’ll try to be to use the best terms to describe the problem.When I try to consume a webservice I myself created using Eclipse, in Java language, using Apache Tomcat 6, it gives me an error:The content of the bod
-
Sam888
service axis
I do some testing on WS. I create a wsdl with multiple method.But I only can execute the 1st method, others failed and give me error below:javax.xml.ws.ProtocolException: CWWSS7200E: Unable to create AxisService from ServiceEndpointAddress atorg.apache.axis2.jaxws.ExceptionFactory.createProtocolException(ExceptionFactory.java:199) atorg.apache.axis2.jaxws.ExceptionFactory.makeProtocolException(ExceptionFactory.java:97) atorg.apache.axis2.jaxws.marshaller.impl.alt.MethodMarshallerUtils.createSys
-
Andreas Veithen
wcf web-services axis
I’ve a web service created using WCF. It uses CustomException as well. When i use Axis 2 to generate java code from it (WSDL2JAVA) it thorws the following error:> IWAB0399 Error in generating java from WSDL > Missing <soap:fault> element inFault Operation “CustomExceptionFault” in operation “CustomExceptionFault”, in binding > GetPDFs > java.io.IOException: ERROR: Missing <soap:fault> element inFault “CustomExceptionFault” in operation “CustomExceptionFault”,
-
Arjan Tijms
java wcf authentication axis webservice-client
We are able to access a WCF web service from a plain Java client through the main method. However, when we try to access the same through a Java EE application, (from the DAO layer) it displays an error.Our code is : BasicHttpBinding_ISPHostedIMServiceStub stub = new BasicHttpBinding_ISPHostedIMServiceStub(new URL(“http://mscxxxx.svc?wsdl”),new SPHostedIMServiceLocator());stub.setUsername(username); stub.setPassword(password);stub.getTask();Error -AxisFaultfaultCode: {http://xml.apache.org/axi
-
John Saunders
java web-services axis fault
I am writing a simple web service to return an object with 2 properties.I am embedding the service into an existing web application.My wsdd looks like this.<globalConfiguration><parameter name=”adminPassword” value=”admin”/><parameter name=”sendXsiTypes” value=”true”/><parameter name=”sendMultiRefs” value=”true”/><parameter name=”sendXMLDeclaration” value=”true”/><parameter name=”axis.sendMinimizedElements” value=”true”/><requestFlow><handler type=”ja
-
user1853460
package axis failed-installation
I wanted to install package created by me On axis environment.But i am getting this error that :::: Target IP address []: 172.16.250.101 Target root password []: nec Both ARTPEC-3 and ARTPEC-4 packages detected. Target device [artpec-4]: artpec-4 Analyze_Example_1_1_ARTPEC-3.eap doesn’t match information in package.conf, skipping installing Analyze_Example_1_1_ARTPEC-4.eap curl: (48) An unknown option was passed in to libcurl =========== log from 172.16.250.101 follows, read carefully =========
-
Andreas Veithen
java web-services axis apache-axis
I have added the following to System Variables%AXIS_LIB%\axis.jar %AXIS_LIB%\commons-discovery.jar %AXIS_LIB%\commons-logging.jar %AXIS_LIB%\jaxrpc.jar %AXIS_LIB%\saaj.jar %AXIS_LIB%\log4j-1.2.8.jar %AXIS_LIB%\xml-apis.jar %AXIS_LIB%\xercesImpl.jarI have %AXIS_LIB% defined as c:\Axis-1_4\lib.Following the tutorial, I tried to use Java2WSDL to produce the WSDL file.% java org.apache.axis.wsdl.Java2WSDL -o wp.wsdl-l”http://localhost:8080/axis/services/WidgetPrice”-n “urn:Example
-
vikasde
java web-services axis
I am trying to create the java files from a remote webservice. I downloaded axis 1.4, copied the lib folder to c:\data\axis\lib which contains of these files:axis.jar axis-ant.jar commons-discovery-0.2.jar commons-logging-1.0.4.jar jaxrpc.jar log4j.properties log4j-1.2.8.jar saaj.jar wsdl4j-1.5.1.jarI added the c:\data\axis\lib folder to the %AXISCLASSPATH%. Now I am trying to create the java classes using this cmd:java -cp %AXISCLASSPATH% org.apache.wsdl.WSDL2JAVA http://myurl.com?wsdlHowever I
-
palacsint
axis
I am trying to create a service ticket, calling the methods (login, createTicket, logout) from Eclipse IDE. I had called the method login(), by passing uid, pwd, and got SID which is a session ID, in return. Now I am trying to create a ticket, and I am passing all the required params. Error that I got is:DEBUG [main] (Call.java:2445) – NSPush (32) DEBUG [main] (Call.java:2445) – org.apache.axis.i18n.resource::handleGetObject(empty00) DEBUG [main] (Call.java:2445) – NSPop (empty) AxisFaultfaultCo
-
Umesh Awasthi
java axis2 axis webservice-client saxparseexception
I am trying to call a web service but facing a strange behavior. we have a web-service running on my server but the code is not open to us so can not see what going on behind the wall The owner of the service have exposed web based test client UI which take input in a text box and will show the response to testing purpose.This input box is taking the input in the below mentioned format<CONTENT><CONTENTID></CONTENTID><DOCUMENTID>DRI2</DOCUMENTID><LOCALECODE>en
-
newbie
java axis
I get this error when I use my autogenerated ServiceBindingStub.java. WebService side is working ok, so this error must be in code, but code is autogenerated, so I cannot know why it doesn’t work. Some other calls work fine, but this doesn’t. This call included updating, while other working calls are just fetching data from WebService.AxisFaultfaultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionfaultSubcode: faultString: org.xml.sax.SAXParseException: Premature end of file.
-
rattek
java ssl axis
Since this week, I’m unable to get large responses from an Axis 1.4 Web service. My Web Service Client use to work well before this week. But now, when I fire a large request by using the stub, it ends with a “Connection has been shutdown […] Connection reset by peer : socket write error”.Then I started to send smaller requests with the same stub method and I works fine… I tried to add a timeout to my stub “stub.setTimeout(10000)” but it didn’t work. I’ve also set a timeout when I create SSL
-
Naju
java web-services junit axis
I am testing a java webservice with client jar which is made by axis-ant,When i run the test i’m getting the following errors.java.lang.NoSuchMethodError: org.apache.axis.description.TypeDesc.(Ljava/lang/Class;Z)Vat com.xxxx.www.xxxx.xsd.GetSalesIdRequest.(Unknown Source)Please help me.
-
bluish
java web-services axis socketexception
One of our customers faced this error while calling our webservice.I think this is because a connection problems from his side, but I need to know the exact reason. Can you help me with that?Stack trace:Error while calling 10108831-402TV04LF from Thread 1 occurred after 511441 AxisFaultfaultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userExceptionfaultSubcode:faultString: java.net.SocketException: Connection resetfaultActor:faultNode:faultDetail:{http://xml.apache.org/axis/}stackTrac
-
bluish
java web-services ssl axis
I have java app that uses Axis to get data from web service. web service is accessed via HTTPS. It works fine on my local PC, but customer uses proxy. I added setting for proxy: System.getProperties().put( “proxySet”, “true” ); System.getProperties().put( “proxyHost”, host); System.getProperties().put( “proxyPort”, port); Authenticator.setDefault(new Authenticator() {protected PasswordAuthentication getPasswordAuthentication() {return new PasswordAuthentication(username,password.toCharArray());}
-
Tim Cooper
java axis
I am just learning axis and trying to deploy the stock example. However, when I typed in java org.apache.axis.client.AdminClient, I get the error:Exception in thread “main”java.lang.NoClassDefFoundError:javax/xml/rpc/Service Exception Causedby: java.lang.ClassNotFoundException:javax.xml.rpc.ServiceExceptionat java.net.URLClassLoader$1.run(UnknownSource)at java.security.AccessController.doPrivileged(NativeMethod)at java.net.URLClassLoader.findClass(UnknownSource)at java.lang.ClassLoader.loadClass
-
Vanathi
java web-services axis
I got below issue while communicating using webservices. But it worked fine before also the “HomeAddress” is coming in response. Could you please help?Received SOAP message contains duplicate header: {http://webservices.company.com/services}HomeAddress for a bound parameterat org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)at org.apache.axis.encoding.DeserializationContext.endElement(D
-
Superman9999
web-services soap wsdl axis wsdl2java
I am running into ‘org.apache.axis2.AxisFault: unknown’ exceptions when connecting to a web service from client stub. This is an axis 2 web service. Client and server side stubs were generated by using WSDL2Java. I used the below links to embed or integrate my web service into an existing web application. http://wso2.org/library/90 http://www.developer.com/services/article.php/3777111/Embedding-Apache-Axis2-into-Existing-Applications.htmSo, I am not using axis 2 admin console. I verified the web