You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ax...@ws.apache.org on 2004/10/08 13:42:51 UTC

[jira] Closed: (AXIS-1504) java package problem - a class could not be referenced via the packagename

Message:

   The following issue has been closed.

   Resolver: Davanum Srinivas
       Date: Fri, 8 Oct 2004 4:42 AM

closing as invalid bug.
---------------------------------------------------------------------
View the issue:
  http://issues.apache.org/jira/browse/AXIS-1504

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: AXIS-1504
    Summary: java package problem - a class could not be referenced via the packagename
       Type: Bug

     Status: Closed
   Priority: Trivial
 Resolution: INVALID

    Project: Axis
   Versions:
             1.2 Beta

   Assignee: 
   Reporter: Alexander Sowatsch

    Created: Wed, 11 Aug 2004 5:01 AM
    Updated: Fri, 8 Oct 2004 4:42 AM
Environment: netbeans 3.6, tomcat 5.0.19, j2sdk1.4.2_04

Description:

an axis webservice returns a complex type for example WeatherReport;

the problem was that a "Helper" - Class for example

de.myFirmName.webservice.axis.weather.myCalendar.CalendarFunctions;

couldnt be referenced via the package name.
if i used it like this way, to generate an object of WeatherReport:

import de.myFirmName.webservice.axis.weather.*;
...
myCalendar.CalendarFunctions.getActualDate();

the axis webservice throws an "Invocation target Exception"

i had to import the class like this:
import de.myFirmName.webservice.axis.weather.myCalendar.CalendarFunctions;

....

CalendarFunctions.getActualDate();

then it worked ...


---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


Measuring marshalling and network times

Posted by Luís Fraga <lf...@mobicomp.com>.
Hi there,

I sent this message to the user list but I didn't get the type of answer 
I needed, so I am trying this list instead.
I hope it is not out of this list scope...

I am using an axis client (1.1) to exchange XML documents (rpc-enc) with 
an oracle 9ias soap server.
The documents can reach up to 3Meg and very often the platform's 
performance is really slow.

Is there any way of measuring marshalling, unmarshalling and network 
times on Axis clients?
I tried to turn on Axis debug but it was too much verbose and I couldn't 
make sense out of it.
Are there any logging categories that I can turn on to monitor 
marshalling/unmarshalling and network tranfers?

By the way, how does the marshalling process work? Is marshalling done 
to a memory buffer and then sent to the http stream
or is marshalling done direclty to the http stream?

Thanks for any help,
   Luís