Re: AW: axis / hibernate woes

2007-08-03 Thread Tammy Dugan
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. Medical Informatics Health Information and Translational Sciences (HITS) Building 410

Re: OutofMemoryError thrown from Axis class

2007-07-18 Thread Tammy Dugan
there any limitation on the maximum size of a soap message? If true, any idea on how to increase this limit? I would highly appreciate any suggestions or pointers regarding this. Thank You. Regards, Nanjappa -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. Medi

Re: Enable MTOM per operation

2007-06-29 Thread Tammy Dugan
/index.php> and rest assured with the added security of spyware protection. -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. Medical Informatics Health Information and Translational Sciences (HITS) Building 410 West 10th Street, Suite 2000 Indianapolis, IN 46202 Main: 317.423.

Re: [AXIOM] How to serialize axiom document without building objects in memory

2007-06-29 Thread Tammy Dugan
Hope this helps someone. Thanks, Tammy Tammy Dugan wrote: After doing some more testing, it looks like my solution works. Before, I never got an out of memory message, but the returned xml file was empty for a long time (20 minutes or more even though content was being written to it the whol

Re: [AXIOM] How to serialize axiom document without building objects in memory

2007-06-29 Thread Tammy Dugan
larger amount than I expected was buffered before being written. I received no out of memory errors on a 46MB file so I guess everything is fine. I will do a little more testing to confirm this. Tammy Davanum Srinivas wrote: Ah. Sorry. need to think about that On 6/28/07, Tammy Dugan <[EM

Re: [AXIOM] How to serialize axiom document without building objects in memory

2007-06-28 Thread Tammy Dugan
I'm not streaming attachments. I am streaming soap body xml. Will the custom dataHandler work for that too? Thanks, Tammy Davanum Srinivas wrote: http://marc.info/?l=axis-user&m=118282183314980&w=2 On 6/28/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: With a little work

Re: [AXIOM] How to serialize axiom document without building objects in memory

2007-06-28 Thread Tammy Dugan
der() method to get called before you are ready to start sending stuff out the door), but we've managed to get true streaming to work using Axis2/Axiom, which saves a lot of transient memory. -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. Medical Informatics Health Information

Re: [Axis2] Enabling MTOM partially duplicates message

2007-06-26 Thread Tammy Dugan
I know. I updated the JIRA with a thank you and a confirmation of the fix. Thanks, Tammy Davanum Srinivas wrote: please check the jira. all you have to do is *not* issue the flush from your custom datasource class thanks, dims On 6/26/07, Tammy Dugan <[EMAIL PROTECTED]> wrote:

Re: [Axis2] Enabling MTOM partially duplicates message

2007-06-26 Thread Tammy Dugan
shows even for a simple scenerio.. Also AFAIKS I do not seee you are using any MTOM specific features in your implementation... Hope you have not mistaken javax.activation.DataSource to OMDataSource... Thanks, Thilina On 6/21/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: Here is what the re

[Axis2] Enabling MTOM partially duplicates message

2007-06-21 Thread Tammy Dugan
try { reader = StAXUtils.createXMLStreamReader(this.data); } catch (Exception e) { } return reader; } ... } Tammy -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. Medical Informatics H

[Axis2] Missing resource exception

2007-06-19 Thread Tammy Dugan
for is not packaged in the jar. Tammy -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. Medical Informatics Health Information and Translational Sciences (HITS) Building 410 West 10th Street, Suite 2000 Indianapolis, IN 46202 Main: 317.423.5500 Fax: 317.423.5695 IU campus mail add

Re: MTOM error "java.lang.OutOfMemoryError: Java heap space"

2007-06-06 Thread Tammy Dugan
Just following up on this bug. I really can't switch over to Axis2 until this is working so I would appreciate any help you could give me. Thanks, Tammy Tammy Dugan wrote: I submitted bug Axis2-2743. Here is an excerpt from the JIRA: When I try to return 270 MB of xml from an axis2 se

Re: MTOM error "java.lang.OutOfMemoryError: Java heap space"

2007-05-31 Thread Tammy Dugan
sample test case? We need something concrete to recreate the bug on our side. No, you cannot use OutputStream directly as the data has to be in xml. thanks, dims On 5/30/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: 2007-05-29 16:59:18,828 INFO - (Thread[http-8080-Processor3,5,main]) End soap

Re: MTOM error "java.lang.OutOfMemoryError: Java heap space"

2007-05-30 Thread Tammy Dugan
t the apparent problems with XMLStreamWriter serialization? Thanks, Tammy Davanum Srinivas wrote: can u please paste the stack trace(s)? Are u using http 1.1 or 1.0? thx, dims On 5/29/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: I created a OMSourcedElementImpl from an input stream: OMFact

Re: MTOM error "java.lang.OutOfMemoryError: Java heap space"

2007-05-29 Thread Tammy Dugan
handling - expanding the tree will inline the attachment data as base64 text, so the fact that it's actually transmitted as a binary blob doesn't help when Rampart is engaged. - Dennis -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. Medical Informatics Health

[Axis2] Exception Processing ErrorPage java.lang.IllegalStateException

2007-05-29 Thread Tammy Dugan
reasonable looking error? Tammy -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. Medical Informatics Health Information and Translational Sciences (HITS) Building 410 West 10th Street, Suite 2000 Indianapolis, IN 46202 Main: 317.423.5500 Fax: 317.423.5695 IU campus mail address: HS, 2000

Re: MTOM error "java.lang.OutOfMemoryError: Java heap space"

2007-05-24 Thread Tammy Dugan
, WA +1-425-939-0576 - Wellington, NZ +64-4-298-6117 Tammy Dugan wrote: Can you tell me a specific test case or supply a snippet of code so I know how to use an OMDataSource with an inputStream? I don't know what classes implement this interface. Tammy Davanum Srinivas wrote: Hmm...Plea

Re: MTOM error "java.lang.OutOfMemoryError: Java heap space"

2007-05-23 Thread Tammy Dugan
: Hmm...Please *don't* do this :) You are better off working with OMDataSource since it will avoid the overhead of actually creating the DOM document in memory if it is not needed. Please check the axiom test cases for info on how to work with OMDataSource. thanks, dims On 5/23/07, Tammy

Re: MTOM error "java.lang.OutOfMemoryError: Java heap space"

2007-05-23 Thread Tammy Dugan
e since it will avoid the overhead of actually creating the DOM document in memory if it is not needed. Please check the axiom test cases for info on how to work with OMDataSource. thanks, dims On 5/23/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: I have been having a similar problem but with t

Re: MTOM error "java.lang.OutOfMemoryError: Java heap space"

2007-05-23 Thread Tammy Dugan
eiben mit WEB.DE FreeMail - einfach, schnell und > > kostenguenstig. Jetzt gleich testen! http://f.web.de/?mc=021192 > > > > > > - > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For add

Re: [AXIOM] Problem getting DocumentElement from DocumentImpl

2007-03-23 Thread Tammy Dugan
This is a fairly pressing issue so I would appreciate any help I can get. thanks, Tammy Tammy Dugan wrote: I am using DocumentImpl so I can convert org.w3c.dom to the axiom dom. I need to create a DocumentImpl dom from an input stream and get access to the document element as an

[AXIOM] Problem getting DocumentElement from DocumentImpl

2007-03-22 Thread Tammy Dugan
} if (ruleDocument.builder.getDocumentElement() != null) { System.out.println("builder document element is not null"); } } Tammy Dugan -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. 1050 Wishard Blvd., RG5 Indianapol

Re: [Axis 2] problem running 3/16/2007 nightly build

2007-03-22 Thread Tammy Dugan
-api-SNAPSHOT.jar http://people.apache.org/repository/org.apache.ws.commons.axiom/jars/axiom-dom-SNAPSHOT.jar http://people.apache.org/repository/org.apache.ws.commons.axiom/jars/axiom-impl-SNAPSHOT.jar On 3/21/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: Not a problem. I can wait for t

Re: [Axi2] Can't get MTOM attachments by reference to work

2007-03-21 Thread Tammy Dugan
onseDoc = new DocumentImpl(new OMDOMFactory()); in > the PreProcesserSoap > > > Though I'm not sure if the DOM implementations in Axiom as still > supposed to work, maybe it is a bug. But I would recommend not using DOM > ever, unless you really have to. Stick to StAX when y

Re: [Axis 2] problem running 3/16/2007 nightly build

2007-03-21 Thread Tammy Dugan
axis2-1.1 war by adding the nightly jars one by one.. You can check for the latest versions of dependent jars from the versions of dependent jars section in here[1].. ~Thilina [1]http://svn.apache.org/viewvc/webservices/axis2/trunk/java/etc/project.properties?view=markup On 3/21/07, Tammy

Re: [Axis 2] problem running 3/16/2007 nightly build

2007-03-21 Thread Tammy Dugan
/20/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: Tomcat 4.1 and jdk 1.4.2_12 Tammy Thilina Gunarathne wrote: > What's your app server & which jdk version.. > > > On 3/19/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: >> Both of these jars are already in axis2\WEB-I

Re: [Axi2] Can't get MTOM attachments by reference to work

2007-03-20 Thread Tammy Dugan
I can still use the service without the database properties set and a proper JDBC connection. If all this is required, then can you try to get a simple case working (or not working) with the MTOM stuff and send me that aar? Roshan Punnoose Phone: 301-497-6039 -Original Message----- From: Tamm

Re: [Axi2] Can't get MTOM attachments by reference to work

2007-03-20 Thread Tammy Dugan
I really need to get this problem solved fairly quickly so I would appreciate any help I can get. Thanks, Tammy Tammy Dugan wrote: I am running the axis2 1.1.1 release since I can't get the nightly build to run. I am using Tomcat 4.1. Even without attachments, the message I am getti

Re: [Axis 2] problem running 3/16/2007 nightly build

2007-03-20 Thread Tammy Dugan
Tomcat 4.1 and jdk 1.4.2_12 Tammy Thilina Gunarathne wrote: What's your app server & which jdk version.. On 3/19/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: Both of these jars are already in axis2\WEB-INF\lib. I receive the error when I click on the validate link. Tammy Thi

Re: [Axi2] Can't get MTOM attachments by reference to work

2007-03-19 Thread Tammy Dugan
;male (M)" system="SEX" />name="transgender (T)" ordinal="4">r:displayName="transgender (T)" system="SEX" />name="unknown (U)" ordinal="5">r:displayName="unknown (U)" system="SEX" />54801cutpo

Re: [Axi2] Can't get MTOM attachments by reference to work

2007-03-19 Thread Tammy Dugan
stored outside. Tammy Punnoose, Roshan wrote: Are the MIME boundaries present? That is one way of telling whether or not MTOM is being used. Something like: --MIME...--- all the data MIME...--- If not, then MTOM is not being used. Then you can up the root logger to DEBUG and see what

Re: [Axis 2] problem running 3/16/2007 nightly build

2007-03-19 Thread Tammy Dugan
Both of these jars are already in axis2\WEB-INF\lib. I receive the error when I click on the validate link. Tammy Thilina Gunarathne wrote: Please try adding stax-api-1.0.1.jar and wstx-asl-3.2.0.jar (woodstox stax parser).. -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc

Re: [Axis 2] problem running 3/16/2007 nightly build

2007-03-19 Thread Tammy Dugan
again :(.. Yes.. You can try building from the source.. ~Thilina On 3/16/07, Tammy Dugan <[EMAIL PROTECTED]> wrote: I downloaded and expanded the war file. I went to localhost:8080/axis2/ to test the installation and got the following errors: org.apache.jasper.JasperException

[Axis 2] problem running 3/16/2007 nightly build

2007-03-16 Thread Tammy Dugan
resulted in the same error. Do I need to build from source? Tammy -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. 1050 Wishard Blvd., RG5 Indianapolis, IN 46202 (317) 630 - 7346 Confidentiality Notice: The contents of this message and any files transmitted with it may contain

[Axi2] Can't get MTOM attachments by reference to work

2007-03-16 Thread Tammy Dugan
y for the service I am testing: name="ServiceClass">org.regenstrief.queryposer.QueryStatisticsReturnServlet class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/> Thanks, Tammy Dugan -- Tammy Dugan Computer Programmer Regenstrief Institute, In

Re: [axis2]HTTP Status code

2007-03-15 Thread Tammy Dugan
: 301-497-6039 -Original Message- From: Tammy Dugan [mailto:[EMAIL PROTECTED] Sent: Thursday, March 15, 2007 12:10 PM To: axis-user@ws.apache.org Subject: Re: [axis2]HTTP Status code I tried this and the resp variable is always null. Do I need to pull a different version of axis2 down

Re: [axis2]HTTP Status code

2007-03-15 Thread Tammy Dugan
(HTTPConstants.MC_HTTP_SERVLETRESPONSE); if (resp != null) { resp.setStatus(status); } Roshan Punnoose Phone: 301-497-6039 -Original Message- From: Tammy Dugan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 14, 2007 1:04 PM To: axis-user@ws.apache.org Subject: Re: [axis2]HTTP

Re: [AXIOM] How to serialize axiom document without building objects in memory

2007-03-15 Thread Tammy Dugan
ole thing to inflate - try to avoid doing anything that causes the getReader() method to get called before you are ready to start sending stuff out the door), but we've managed to get true streaming to work using Axis2/Axiom, which saves a lot of transient memory. -Original Message- From: T

Re: [AXIOM] How to serialize axiom document without building objects in memory

2007-03-15 Thread Tammy Dugan
alize(...) method will work. If none of this works, then what version of axis/axiom are you using? Roshan Punnoose Phone: 301-497-6039 -Original Message- From: Tammy Dugan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 14, 2007 2:55 PM To: axis-user@ws.apache.org Subject: [AXIOM] H

Re: [axis2]HTTP Status code

2007-03-15 Thread Tammy Dugan
Punnoose Phone: 301-497-6039 -Original Message----- From: Tammy Dugan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 14, 2007 1:27 PM To: axis-user@ws.apache.org Subject: Re: [axis2]HTTP Status code Thanks. A couple more questions: * what can I call from the OperationClient to see the

[AXIOM] How to serialize axiom document without building objects in memory

2007-03-14 Thread Tammy Dugan
of append child statements. The above code still holds the whole dom tree in memory before it writes to a file. Is there a way I can prevent this? I essentially want every appendChild to write the child to the file. Tammy -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc. 1050 Wi

Re: [axis2]HTTP Status code

2007-03-14 Thread Tammy Dugan
(resp != null) { resp.setStatus(status); } Roshan Punnoose Phone: 301-497-6039 -Original Message- From: Tammy Dugan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 14, 2007 1:04 PM To: axis-user@ws.apache.org Subject: Re: [axis2]HTTP Status code How did you get access t

Re: [axis2]HTTP Status code

2007-03-14 Thread Tammy Dugan
(AxisServlet.java:236) Any ideas? Roshan Punnoose Phone: 301-497-6039 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Tammy Dugan Computer Programmer Regenstrief Institute, Inc

Re: problem with syncronous messages and attachments

2007-03-14 Thread Tammy Dugan
This is actually a fairly pressing issue. I would appreciate any help I can get. Thanks, Tammy Tammy Dugan wrote: I have a simple axis service with an operation with the following definition: public OMElement queryStatisticsReturn(OMElement element) { try

problem with syncronous messages and attachments

2007-03-13 Thread Tammy Dugan
ontext, i.e. the message context that actually gets returned to the client? Tammy Dugan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]