Axiom is an Java library developed by Apache that provides an XML object model implementation.

learn more… | top users | synonyms

0
votes
0answers
20 views

Generate java objects from xsd using axiom parser [closed]

I am a newbie for apache axiom. I am Using axiom parser to parse my xml file. Fetching the required data from the xml.Now I want to generate java classes (objects) from an xsd using AXIOM parser and ...
0
votes
0answers
55 views

FreeImage works with lots of langs … any have experience with FSharp? Issues?

FreeImage works with lots of langs ... any have experience with FSharp? Issues? Environment --- VS'12, FSharp, NuGet Axiom FreeImage.dll Thanks
1
vote
1answer
19 views

How should i read xml element from AXIOM

Im trying to read some values from a xml using axiom. Is there are any sample code i can use to learn. Thank you, Achini
1
vote
1answer
81 views

How to write axioms in Z3 Java API?

In Z3 api, FuncDecl has a DeclKind() to indicates if it is a rewrite rule. But how to create a rewrite rule in Z3 java API?
3
votes
2answers
121 views

How to perform arithmetic on elements of a Prolog list

Background A list of integer coefficients can be used to represent a polynomial (in X). For example, 1 + 3x + 3x^2 + 2x^3 is represented by [1,3,3,2]. Let P be one of these lists. I need to write ...
0
votes
0answers
52 views

Capture AxisFault in axis2 client generated class

I am using a class created from wsdl2java using adb databinding. The only exception I ever get is OMBuilderException someElementName unsupported element in SOAPFault element. I take it that the ...
5
votes
3answers
147 views

How much performance increase with streaming XPath

Just read the article "Streaming XPath Parser for WSO2 ESB". I was wondering how much the performance increases with this implementation compared to the previous implementation. Are there any numbers ...
0
votes
1answer
40 views

axiom builder is null error

I am not sure whether it is relevant but We are using in our system axis2 and JAXB for xml parsing and soap for communication(On tomcat). Everything works well, however, I receive in my logs the ...
0
votes
2answers
46 views

Installing apache.axiom in eclipse Windows

I have a special requirement on using apache.axiom for webservice purpose. I do not know how to install the plugin in it. I have searched in the Eclipse market-place but couldn't find this package. ...
0
votes
1answer
81 views

Axiom getTextAsStream without caching Parser has already reached end of the document. No siblings found

I'm using Axiom in Axis2 to extract the text from a large base64Binary section of the SOAP message. My receiver is not using MTOM, and uses OMElement.getTextAsStream( false ) to extract the text. ...
0
votes
1answer
248 views

C# client for OMElement from Axis2 web service

I have a Axis2 web service implemented using AXIOM that returns a list of String. The code snippet of client in Java that works is as follws. // * send SOAP message sender.fireAndForget( ...
0
votes
0answers
206 views

Using axis2 soap implementation to add a soap header: the root element added, but the children of the root didn't.

I just used axis2 implementation to do some parsing and packaging of soap envelope work. but met some issues. the code segment is as follows: org.apache.axiom.soap.SOAPFactory sfac = ...
0
votes
2answers
129 views

Use a non-coalescing parser in Axis2

Does anyone know how I can get Axis2 to use a non-coalescing XMLStreamReader when it parses a SOAP message? I am writing code that reads a large base64 binary text element. Coalescing is the default ...
0
votes
1answer
105 views

Creating an AXIOM SOAP message with a large body

I am trying to create a SOAP message with a large XML body. The XML body comes from an input stream and the SOAP message is created manually. How can I use AXIOM to create the message without ...
0
votes
0answers
44 views

Add children node to org.springframework.ws.soap.SoapHeaderElement

I have to convert my web service request from SAAJ implementation to AXIOM. During that conversion I met a problem with creating custom SoapHeader of that call. I need to create HeaderElement with ...
0
votes
1answer
31 views

How to get Apache Axiom to correctly report source data line numbers when parsing XML

Here's what I'm doing, essentially copy/paste:ing from the Axiom Quickstart documentation: public GenericXmlParser(Reader input, String entryElementName, List<DciXmlMapping> dciXmlMappings) { ...
1
vote
2answers
572 views

Error: org.apache.axis2.AxisFault: No method specified in request

I have problem to make a client with axis2-1.6.2 Then I summarize the problem. I'm trying to use the next wsdl to make a client: http://www.mobilefish.com/services/web_service/countries.php?wsdl I'm ...
0
votes
0answers
68 views

axis2 axiom XMLStreamWriter escapes < lessthan signs with & lt; and wraps with extraElement

I've implemented a java service and deployed it to axis2. When I receive the message with an XMLStreamReader and then write it to a file with an XMLStreamWriter, the entire message is wrapped with ...
0
votes
1answer
247 views

Soap Handler org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR:

I'm using JAX-WS in a stateless bean exposed as a web service using Spring configuration (not Spring-WS). I've added a SOAP Handler and in handler, when I try to getMessage() on the ...
2
votes
0answers
96 views

Options for converting/finding analogs for Java class libraries in C#?

I've been tasked with rewriting a Java web services client in C#.NET. The only truly tedious part of this task has proven to be figuring out how to handle all the Java class libraries (sorry if that's ...
1
vote
3answers
250 views

How to control Spring-WS namespace single or double quote with XSLT

I want to change the double quotes to single quotes for a single namespace declaration in my document, while leaving all other namespace declarations as double quotes. How can I do this? Here's the ...
0
votes
1answer
58 views

Write a program which is partially NOT correct and prove it that it is partially not correct. [closed]

I have been asked to write a program which is partially NOT correct and SHOULD contain a LOOP. I looked at problem that are partially correct and also looked how they were proved partially correct. It ...
0
votes
0answers
388 views

com.ctc.wstx.exc.WstxUnexpectedCharException: Illegal character ((CTRL-CHAR, code 15))

I am extracting data from a XML using the axiom. But I'm getting above error because of having CTRL-CHAR (eg : â, €, ¢, “, ”, ™, ’, – etc) in the XML. Can any body help me to replace all the ...
1
vote
1answer
148 views

Adding namespaces to the AXIOMXPath

XML : <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ...
0
votes
0answers
61 views

How to send pdf file as a mail attachment using Axiom

I want to send a pdf file as a mail attachemt using axiom. I can set body, receiver .. but i cant attach pdf file to mail. I use OMElement to attach body to mail. How can i attach pdf to mail using ...
0
votes
0answers
75 views

Attach pdf file to Mail as a OMElement

I want to attach pdf file as a OMElement. How can i do that.
0
votes
1answer
130 views

No result with AXIOMXPath on Axis 2 web service

I am calling a SharePoint 2010 web service from a Java Axis 2 client, using ServiceClient object (no client code generation). I need to query the result with xPath to get the result code and other ...
1
vote
1answer
92 views

Different ways of axiomatising a contains-function for Z3 lists

Axiomatising the contains-operation on lists (on Rise4Fun) as (declare-fun Seq.in ((List Int) Int) Bool) (assert (forall ((e Int)) (not (Seq.in nil e)))) (assert (forall ((xs (List Int)) (e Int)) ...
1
vote
1answer
86 views

Length function for generic lists

This post shows how to axiomatise a length function for Z3's built-in lists. However, the function is sort-specific (here Int) and not applicable to lists of bools or custom sorts. ; declare len as ...
0
votes
2answers
178 views

What does “om” in org.apache.axiom.om means?

I'm pretty new to Web Services in java. I was starting on a project where one is already implemented, and there are lots of references to org.apache.axiom.om namespace. What does the om stands for ?
1
vote
2answers
165 views

Meaning of Provability Symbol ⊢ in Axiomatic Programming Paper [closed]

I'm reading "An Axiomatic Basis for Computer Programming." They use the provability symbol ⊢ in their axioms, e.g. ⊢P {Q} R Wikipedia describes the use of that symbol as such "x ⊢ y means y is ...
4
votes
3answers
457 views

Is it significantly costlier to fix a bug at the end of the project? [closed]

So this might seem like a 'stupid' or obvious question. But recently I began to doubt this because of this blog post: http://lesswrong.com/lw/9sv/diseased_disciplines_the_strange_case_of_the In ...
-1
votes
1answer
128 views

getting elements from soapresponse [closed]

I am trying to get the elements from soap response, through an element and iterator function, but not able to separate the elements. OMElement calres=Client.sendReceive(m1); //calres is an OmElement ...
3
votes
1answer
177 views

Axiom or WPF 3D?

I've done some simple sample apps with 3D WPF, but I feel like I'm gonna have to write a full layer on top of it if I want to manage objects in a simple way. Let me explain. I need to import objects ...
0
votes
1answer
132 views

formal axiomatic def of an example Kripke model in terms of ∀, ∃

I am looking for a formal axiomatic definition of an example Kripke model in terms of ∀, ∃ assuming knowledge of simple predicate logic, boolean logic,... All descriptions of Kripke models I ...
5
votes
1answer
562 views

Get an InputStream/io.Reader from OMElement object

I have a OMElement object and from that I want to get an InputStream or reader object. What I want is to stream the xml from the OMElement which I have, without getting loaded into memory. I only ...
2
votes
0answers
519 views

Axis2 AXIOM Serialization

I am trying to serialize a simple POJO into an AXIOM OMElement, for using with Axis2 web services. The POJO stores a String, an Enum and an Object value. While the String and most Object values are ...
0
votes
1answer
306 views

Axis2 : four ways to create clients

There are 4 ways to create Clients in Axis 2 as shown 1.building an AXIOM based client, 2.generating a client using Axis2 Databinding Framework (ADB), 3.generating a client using XMLBeans, 4.and ...
0
votes
0answers
132 views

Clearing an eventhandler in c# if the target has changed

I'm wondering about removing event handlers from derived classes. I have an eventhandler which needs to be cleared and then replaced. Now i understand that the ways to do this would be something ...
1
vote
3answers
1k views

Out of memory error when marshalling large attachments

I'm using spring ws on the server side with a AxiomSoapmessageFactory: <bean id="messageFactory" class="org.springframework.ws.soap.axiom.AxiomSoapMessageFactory"> <property ...
0
votes
1answer
485 views

Axiom dependency version required by spring web service 2.0

What is the version of Apache Axiom to be used with 2.0. I'm trying to use Axiom 1.2.8 and it is throwing some method not found error. I've a annotated end point as given below. ...
0
votes
3answers
2k views

How to add CDATA section to SOAPMessage using SAAJ?

I'm trying to add a cdata section to a soap message using saaj (axis2-saaj-1.5.4). I have an xml document which I would like to define as a cdata section and put it into an element inside the body of ...
1
vote
1answer
127 views

Dependency Theory - Question

I have been trying for the past few hours to get this, I have included below the only answer I have worked out that seems like it may go somewhere, can someone tell me if I am on the right tracks: ...
0
votes
1answer
61 views

Dependency Theory

I have: U-> PT….. 1 Q-> SU……2 etc... in using the reflexivity axiom can I then say Q-> S , Q-> U Q-> PT I trying to ask how this axiom works using the example above.
0
votes
1answer
457 views

How to handle OMElement at serverside using MTOM-XOP concept?

Iam able to upload the image using MTOM-XOP by value concept.After that I tried to upload the same image using MTOM-XOP by Reference concept (XOP:Include).Iam able to write the Client program and ...
0
votes
3answers
1k views

Create SOAP message from WSDL using axiom

I'm a starting a project which consist in sending a request to a web-service (which is already available) and parsing the response. I have the WSDL and URL endpoints. Does anyone have a startup ...
1
vote
1answer
207 views

Dependency Theory

Does anyone know of a good website, book or any other resources that would explain dependency theory well? I am stuck on a similar question to the one shown below: Given R < A = {P,Q,R,S,T,U,Y ...
4
votes
1answer
1k views

Whats the right choice for me for building Web Service using Axis2 - AXIOM, JAXB, ADB or XMLBeans

Axis2 supports Web Service creation using AXIOM, JAXB, ADB and XMLBeans. I am new in this area of Web Service development and want to create a Web Service using Axis2. The web service is going to be ...
1
vote
2answers
686 views

Problems with Spring WS Streaming Attachments with Security Interceptor

I'm having problems getting Spring WS to receive a request which has a file attached and use streaming. The problem is I get the following exception whenever I try to use a security interceptor: ...
4
votes
3answers
333 views

Axiom resolution

I try to understand how axiom resolution works in prolog. Let's assume that I define the two basic operations on the natural numbers: s(term) (stands for successor) and add(term, anotherTerm). ...

1 2