Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
32answers
5k views

Why can't programs be proven?

Why can't a computer program be proven just as a mathematical statement can? A mathematical proof is built up on other proofs, which are built up from yet more proofs and on down to axioms - those ...
8
votes
1answer
273 views

Hypothetical, formerly-C++0x concepts questions

(Preamble: I am a late follower to the C++0x game and the recent controversy regarding the removal of concepts from the C++0x standard has motivated me to learn more about them. While I understand ...
7
votes
2answers
8k views

How do you Change a Package's Log Level using Log4j?

I've encountered the following bug: http://issues.apache.org/jira/browse/AXIS2-4363 It states the following: This error only occurs when log level for org.apache.axiom is DEBUG so a ...
4
votes
1answer
90 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 ...
3
votes
2answers
357 views

Working on Peano Axioms in Agda and hit a bit of a sticking point

PA6 : ∀{m n} -> m ≡ n -> n ≡ m is the axiom I am trying to solve and support, I've tried using a cong (from the core library) but am having troubles with the cong constructor PA6 = cong ...
2
votes
0answers
109 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 ...
2
votes
2answers
337 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 ...
2
votes
3answers
193 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). ...
2
votes
1answer
346 views

Spring ws - AxiomSoapMessage & attachment with MTOM are inline

im trying to understand how the AxiomSoapMessageFactory handles request (the body & attachment) but i dont understand some points (or they are maybe features) i 'm using AxioSoapMessageFactory ...
2
votes
5answers
448 views

10 LISP primitives analogous to 5 axioms of Euclidean geometry?

LISP can be built from ten primitives: The primitives are: atom, quote, eq, car, cdr, cons, cond, lambda, label, apply. Apparently these are equivalent to the 5 axioms of Euclidean geometry. ...
2
votes
1answer
4k views

How can I setup dependencies for Axis2 / Axiom on Maven2

I've tried the following settings on pom.xml to use Axis2 wsdl2code: <dependencies> <dependency> <groupId>org.apache.axis2</groupId> ...
1
vote
3answers
360 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 ...
1
vote
1answer
84 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: ...
1
vote
1answer
152 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 ...
1
vote
2answers
373 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: ...
1
vote
2answers
188 views

ClassNotFoundException axiom-api-1.2.7.jar

I am getting this exception in my java project Caused by: java.lang.ClassNotFoundException: org.apache.axiom.om.OMDataSource at java.net.URLClassLoader$1.run(Unknown Source) at ...
0
votes
0answers
11 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 ...
0
votes
0answers
50 views

Howto Access Username Token Inside Axis2/C Web Service Handler

I need to access Username security token inside my axis2/c web service handler. I know that rampart/c does it by password/ authentication callbacks. My service handler needs to this information to ...
0
votes
1answer
35 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
1answer
70 views

maxima's ode solver

I downloaded and installed sage because I needed an ODE solver.I think that Maxima is relatively restricted in that part as it doesn't seem to solve almost basic ODEs.I appreciate all the effort ...
0
votes
0answers
58 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 ...
0
votes
0answers
292 views

spring web service, axiom, xmlbeans thread safety issue?

I'm using spring web services 1.5.9 (with AxiomSoapMessagefactory and xmlbeans 2.4.0) configured as shown in the second code snippet (ws-servlet.xml). When working with a single thread the web ...
0
votes
1answer
183 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
2answers
649 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 ...
0
votes
1answer
52 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
224 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
0answers
69 views

How to write a program to generate the Envelope using OMFactory?

For sending binary data to a webservice, I wrote below code to generate the envelope. private static OMElement buildUploadEnvelope(String fileName, File file, String fileType) { DataHandler ...
0
votes
3answers
480 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 ...
0
votes
0answers
395 views

Problem with parsing an MTOM message from SOAPUI using Axiom library

I'm trying to create a web service that consumes an MTOM/XOP message and I'm using SOAPUI to create the sample request messages. My problem is that SOAPUI sets one of the content IDs as . Axiom ...
0
votes
1answer
489 views

axis2 “unexpected subelement value”

I'm trying to use Axis2 to connect to a SOAP webservice. This was previously working in Axis 1, but 2 is causing problems. I've regenerated the Java code using wsdl2java which has generated the stubs ...
0
votes
1answer
126 views

How can I create and Apache Axiom element from a E4X object from a script running in Rhino?

I am running a script running in Rhino, which creates an E4X object like this: var s = <product id="123"> <name>Google Search</name> ...
0
votes
1answer
539 views

How to add custom SOAP header in Spring WS using Axiom and XmlBeans

I'm using Spring WS 1.5.8, XmlBeans for marshalling/unmarshalling and AxiomSoapMessageFactory. My app. needs a custom SOAP header. The data that needs to be in the SOAP Header is a XmlBean (i.e ...
0
votes
1answer
76 views

Using database resources in Axiom Safe Request

I would like to know how to make use of an Axiom database resource inside a Safe function. Right now I'm just handling the connection manually but I know it would be better to use the already ...