You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Michele Mazzucco <Mi...@ncl.ac.uk> on 2007/03/13 17:56:39 UTC

MissingResourceException in AxisServlet

Hi all,

from the tomcat logs I can see this message:

Mar 13, 2007 4:43:01 PM org.apache.axis2.transport.http.AxisServlet
doPost
SEVERE: java.util.MissingResourceException: Can't find resource for
bundle org.apache.axis2.i18n.ProjectResourceBundle, key
spec.FAULT_ACTION_NOT_SUPPORTED_REASON

Oddly the configuration is the same on several machines (axis2 nightly
build, sun jdk 1.5.0_04-b05, linux 2.6.14), but it happens only in a few
of them. 
Any clue?


Thanks,
Michele


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: [axis2] Re: MissingResourceException in AxisServlet

Posted by Michele Mazzucco <Mi...@ncl.ac.uk>.
Hi again,

this is the log on the server side:

INFO  [10:44:42,450] QOSPRequestURIBasedDispatcher:findService - Target
service is [Service1]
INFO  [10:44:42,452] QOSPRequestURIBasedDispatcher:findService1 - The
target service is available
INFO  [10:44:42,453] QOSPRequestURIBasedDispatcher:forwardMessage -
Target service is [Service1]
INFO  [10:44:42,454] QOSPRequestURIBasedDispatcher:forwardMessage - Axis
service set properly
TRACE [10:44:42,455] QOSPRequestURIBasedDispatcher:forwardMessage - Null
axis operation
TRACE [10:44:42,456] QOSPRequestURIBasedDispatcher:invoke - forward
executed
Mar 15, 2007 10:44:42 AM org.apache.axis2.transport.http.AxisServlet
doPost
SEVERE: java.util.MissingResourceException: Can't find resource for
bundle org.apache.axis2.i18n.ProjectResourceBundle, key
spec.FAULT_ACTION_NOT_SUPPORTED_REASON


The QOSPRequestURIBasedDispatcher is a handler which replaces the
RequestURIBasedDispatcher handler. The invoke method is:

public InvocationResponse invoke(MessageContext messageContext) throws
AxisFault {

        if (log.isDebugEnabled()) {
            log.debug("Received message");
        }

        // Tries to get the header block identifying a QOSP message
        SOAPHeaderBlock qospBlock = null;
        try {
            final SOAPEnvelope envelope = messageContext.getEnvelope();
            qospBlock =
DispatchersHelper.getQoSPHeaderBlock(envelope.getHeader());
        } catch (OMException e) {
            throw new AxisFault("Unable to get the message header", e);
        }

        if (qospBlock == null) {
            if (log.isEnabledFor(Level.WARN)) {
                log.warn("Empty QoSP block found.");
            }
            throw new AxisFault("The QoSP message header is empty.");
        }

        // If the incoming message is a forward message saves some
informations
        if (DispatchersHelper.isForwardMessage(qospBlock)) {
            if (log.isTraceEnabled()) {
                log.trace("Received forward message");
            }

            // this.networkTS = System.currentTimeMillis();
            try {
                forwardMessage(messageContext);
                if (log.isTraceEnabled()) {
                    log.trace("forward executed");
                }
            } catch (AxisFault e) {

                if (log.isEnabledFor(Level.ERROR)) {
                    StringWriter sw = new StringWriter();
                    PrintWriter pw = new PrintWriter(sw);
                    e.printStackTrace(pw);
                    log.error(sw.toString());
                }
                throw e;
            }

        } else if (isResponseFromCodestore(qospBlock)) {
            if (log.isDebugEnabled()) {
                log.debug("Received codestore message");
            }
        } else {
            throw new AxisFault("Malformed header block. Is it a forward
message?");
        }

        return InvocationResponse.CONTINUE;
    } // -- invoke()

So it seems to me that the error is thrown after the invoke method
returns.

Michele

On Wed, 2007-03-14 at 19:55 +0000, Michele Mazzucco wrote:
> Glen,
> 
> this is one the the messages sent from the client but I don't see any  
> problem.
> 
> POST / HTTP/1.1
> User-Agent: Axis2
> Transfer-Encoding: chunked
> Content-Type: application/soap+xml; charset=UTF-8;action="urn:test2";
> 
> 28b
> <?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope  
> xmlns:wsa="http://www.w3.org/2005/08/addressing"  
> xmlns:soapenv="http://www.w3.org/2003/05/soap- 
> envelope"><soapenv:Header><wsa:To>http://host_name:8079</ 
> wsa:To><wsa:ReplyTo><wsa:Address>http://ip_address:6060/axis2/ 
> services/anonService142936511173901574478/anonOutInOp</wsa:Address></ 
> wsa:ReplyTo><wsa:MessageID>urn:uuid:24A72ED40BFE16B93411739015745511</ 
> wsa:MessageID><wsa:Action>urn:test2</wsa:Action></ 
> soapenv:Header><soapenv:Body><stressTest:test  
> xmlns:stressTest="http://ncl.ac.uk/qosp"><stressTest:lenght>1652</ 
> stressTest:lenght></stressTest:test></soapenv:Body></soapenv:Envelope>
> 0
> 
> 
> Michele
> 
> On 14 Mar 2007, at 03:30, Glen Mazza wrote:
> 
> > I'm unsure but ProjectResourceBundle appears to be missing a key (a
> > string for a given constant); however, the error which is causing Axis
> > to need to search for "spec.FAULT_ACTION_NOT_SUPPORTED_REASON" is only
> > happening on one machine, most probably due to user inputs/requests.
> > This--the (apparent) fact that the key is missing--is probably a JIRA
> > issue.  Why your code is such that Axis needs to search for that error
> > message to begin with is something for this mailing list.
> >
> > In src/org/apache/axis2/addressing/i18n/resource.properties, however,
> > this warning *is* defined as "The [action] cannot be processed at the
> > receiver." which gives a hint to a potential problem with your
> > application code.
> >
> > (There is also a comment in that file warning translators about
> > translating the 'spec.*' message keys--I wonder if that is the problem
> > with one of your machines--are you running UK English or a foreign
> > language on that separate machine while running US English on the
> > others?  If so, the nightly code might be missing the translation for
> > that key for any non-US English default computers.  But just a guess
> > here.)
> >
> > Glen
> >
> >
> > Am Dienstag, den 13.03.2007, 16:56 +0000 schrieb Michele Mazzucco:
> >> Hi all,
> >>
> >> from the tomcat logs I can see this message:
> >>
> >> Mar 13, 2007 4:43:01 PM org.apache.axis2.transport.http.AxisServlet
> >> doPost
> >> SEVERE: java.util.MissingResourceException: Can't find resource for
> >> bundle org.apache.axis2.i18n.ProjectResourceBundle, key
> >> spec.FAULT_ACTION_NOT_SUPPORTED_REASON
> >>
> >> Oddly the configuration is the same on several machines (axis2  
> >> nightly
> >> build, sun jdk 1.5.0_04-b05, linux 2.6.14), but it happens only in  
> >> a few
> >> of them.
> >> Any clue?
> >>
> >>
> >> Thanks,
> >> Michele
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> >> For additional commands, e-mail: axis-user-help@ws.apache.org
> >>
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-user-help@ws.apache.org
> >
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: [axis2] Re: MissingResourceException in AxisServlet

Posted by Michele Mazzucco <Mi...@ncl.ac.uk>.
Hi again,

I think I've found the problem. Service2 is deployed while the system is
running, and it's SOAP action is urn:second. However, for some obscure
reason - apart from the version service, there are no services deployed

-bash-3.00$ ls
Service2.aar  services.list  version.aar

-

the addressing module first detects the SOAP action the right way (i.e.
urn:second), 

TRACE DescriptionBuilder:processActionMappings - Input Action Mapping
found: urn:second

then it finds out another value
 	
TRACE AddressingInHandler:extractActionInformation -
extractActionInformation: soapAction='urn:first' wsa:Action='urn:first',

which causes the problem. Please find attached the axis2 logs while
below is services.xml:

<?xml version="1.0" encoding="UTF-8"?>


<service name="Service2" scope="request">
	<parameter name="ServiceClass" locked="xsd:false">
		ncl.qosp.test.functional.Service2
	</parameter>

	<operation name="test">
		<messageReceiver
			class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver" />
		<actionMapping>urn:second</actionMapping>
	</operation>
</service>


Any clue (eventually from one of the Axis2 guys)?

Thanks in advance,
Michele

On Thu, 2007-03-15 at 10:51 +0000, Michele Mazzucco wrote:
> On Wed, 2007-03-14 at 19:46 -0400, Glen Mazza wrote:
> > Could it be that you misspelled "length"?
> 
> No, unfortunately no :(.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
> 

Re: [axis2] Re: MissingResourceException in AxisServlet

Posted by Michele Mazzucco <Mi...@ncl.ac.uk>.
On Wed, 2007-03-14 at 19:46 -0400, Glen Mazza wrote:
> Could it be that you misspelled "length"?

No, unfortunately no :(.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: [axis2] Re: MissingResourceException in AxisServlet

Posted by Glen Mazza <gr...@verizon.net>.
Hmmm.  Could it be that you misspelled "length"?  At least that's how we
spell it on my side of the pond.

Glen

Am Mittwoch, den 14.03.2007, 19:55 +0000 schrieb Michele Mazzucco:
> Glen,
> 
> this is one the the messages sent from the client but I don't see any  
> problem.
> 
> POST / HTTP/1.1
> User-Agent: Axis2
> Transfer-Encoding: chunked
> Content-Type: application/soap+xml; charset=UTF-8;action="urn:test2";
> 
> 28b
> <?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope  
> xmlns:wsa="http://www.w3.org/2005/08/addressing"  
> xmlns:soapenv="http://www.w3.org/2003/05/soap- 
> envelope"><soapenv:Header><wsa:To>http://host_name:8079</ 
> wsa:To><wsa:ReplyTo><wsa:Address>http://ip_address:6060/axis2/ 
> services/anonService142936511173901574478/anonOutInOp</wsa:Address></ 
> wsa:ReplyTo><wsa:MessageID>urn:uuid:24A72ED40BFE16B93411739015745511</ 
> wsa:MessageID><wsa:Action>urn:test2</wsa:Action></ 
> soapenv:Header><soapenv:Body><stressTest:test  
> xmlns:stressTest="http://ncl.ac.uk/qosp"><stressTest:lenght>1652</ 
> stressTest:lenght></stressTest:test></soapenv:Body></soapenv:Envelope>
> 0
> 
> 
> Michele
> 
> On 14 Mar 2007, at 03:30, Glen Mazza wrote:
> 
> > I'm unsure but ProjectResourceBundle appears to be missing a key (a
> > string for a given constant); however, the error which is causing Axis
> > to need to search for "spec.FAULT_ACTION_NOT_SUPPORTED_REASON" is only
> > happening on one machine, most probably due to user inputs/requests.
> > This--the (apparent) fact that the key is missing--is probably a JIRA
> > issue.  Why your code is such that Axis needs to search for that error
> > message to begin with is something for this mailing list.
> >
> > In src/org/apache/axis2/addressing/i18n/resource.properties, however,
> > this warning *is* defined as "The [action] cannot be processed at the
> > receiver." which gives a hint to a potential problem with your
> > application code.
> >
> > (There is also a comment in that file warning translators about
> > translating the 'spec.*' message keys--I wonder if that is the problem
> > with one of your machines--are you running UK English or a foreign
> > language on that separate machine while running US English on the
> > others?  If so, the nightly code might be missing the translation for
> > that key for any non-US English default computers.  But just a guess
> > here.)
> >
> > Glen
> >
> >
> > Am Dienstag, den 13.03.2007, 16:56 +0000 schrieb Michele Mazzucco:
> >> Hi all,
> >>
> >> from the tomcat logs I can see this message:
> >>
> >> Mar 13, 2007 4:43:01 PM org.apache.axis2.transport.http.AxisServlet
> >> doPost
> >> SEVERE: java.util.MissingResourceException: Can't find resource for
> >> bundle org.apache.axis2.i18n.ProjectResourceBundle, key
> >> spec.FAULT_ACTION_NOT_SUPPORTED_REASON
> >>
> >> Oddly the configuration is the same on several machines (axis2  
> >> nightly
> >> build, sun jdk 1.5.0_04-b05, linux 2.6.14), but it happens only in  
> >> a few
> >> of them.
> >> Any clue?
> >>
> >>
> >> Thanks,
> >> Michele
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> >> For additional commands, e-mail: axis-user-help@ws.apache.org
> >>
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-user-help@ws.apache.org
> >
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


[axis2] Re: MissingResourceException in AxisServlet

Posted by Michele Mazzucco <Mi...@ncl.ac.uk>.
Glen,

this is one the the messages sent from the client but I don't see any  
problem.

POST / HTTP/1.1
User-Agent: Axis2
Transfer-Encoding: chunked
Content-Type: application/soap+xml; charset=UTF-8;action="urn:test2";

28b
<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope  
xmlns:wsa="http://www.w3.org/2005/08/addressing"  
xmlns:soapenv="http://www.w3.org/2003/05/soap- 
envelope"><soapenv:Header><wsa:To>http://host_name:8079</ 
wsa:To><wsa:ReplyTo><wsa:Address>http://ip_address:6060/axis2/ 
services/anonService142936511173901574478/anonOutInOp</wsa:Address></ 
wsa:ReplyTo><wsa:MessageID>urn:uuid:24A72ED40BFE16B93411739015745511</ 
wsa:MessageID><wsa:Action>urn:test2</wsa:Action></ 
soapenv:Header><soapenv:Body><stressTest:test  
xmlns:stressTest="http://ncl.ac.uk/qosp"><stressTest:lenght>1652</ 
stressTest:lenght></stressTest:test></soapenv:Body></soapenv:Envelope>
0


Michele

On 14 Mar 2007, at 03:30, Glen Mazza wrote:

> I'm unsure but ProjectResourceBundle appears to be missing a key (a
> string for a given constant); however, the error which is causing Axis
> to need to search for "spec.FAULT_ACTION_NOT_SUPPORTED_REASON" is only
> happening on one machine, most probably due to user inputs/requests.
> This--the (apparent) fact that the key is missing--is probably a JIRA
> issue.  Why your code is such that Axis needs to search for that error
> message to begin with is something for this mailing list.
>
> In src/org/apache/axis2/addressing/i18n/resource.properties, however,
> this warning *is* defined as "The [action] cannot be processed at the
> receiver." which gives a hint to a potential problem with your
> application code.
>
> (There is also a comment in that file warning translators about
> translating the 'spec.*' message keys--I wonder if that is the problem
> with one of your machines--are you running UK English or a foreign
> language on that separate machine while running US English on the
> others?  If so, the nightly code might be missing the translation for
> that key for any non-US English default computers.  But just a guess
> here.)
>
> Glen
>
>
> Am Dienstag, den 13.03.2007, 16:56 +0000 schrieb Michele Mazzucco:
>> Hi all,
>>
>> from the tomcat logs I can see this message:
>>
>> Mar 13, 2007 4:43:01 PM org.apache.axis2.transport.http.AxisServlet
>> doPost
>> SEVERE: java.util.MissingResourceException: Can't find resource for
>> bundle org.apache.axis2.i18n.ProjectResourceBundle, key
>> spec.FAULT_ACTION_NOT_SUPPORTED_REASON
>>
>> Oddly the configuration is the same on several machines (axis2  
>> nightly
>> build, sun jdk 1.5.0_04-b05, linux 2.6.14), but it happens only in  
>> a few
>> of them.
>> Any clue?
>>
>>
>> Thanks,
>> Michele
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
>> For additional commands, e-mail: axis-user-help@ws.apache.org
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: [axis2] Re: MissingResourceException in AxisServlet

Posted by Michele Mazzucco <Mi...@ncl.ac.uk>.
Some more information below:

SEVERE: java.util.MissingResourceException: Can't find resource for
bundle org.apache.axis2.i18n.ProjectResourceBundle, key
spec.FAULT_ACTION_NOT_SUPPORTED_REASON
Mar 14, 2007 6:55:57 PM org.apache.axis2.transport.http.AxisServlet
doPost
INFO: org.apache.axis2.AxisFault: HTTP Transport error: '404' -
'/axis2/RoutingService'; nested exception is:
        org.apache.axis2.AxisFault: HTTP Transport error: '404' -
'/axis2/RoutingService'; nested exception is:
        org.apache.axis2.AxisFault: HTTP Transport error: '404' -
'/axis2/RoutingService'; nested exception is:
        org.apache.axis2.AxisFault: HTTP Transport error: '404' -
'/axis2/RoutingService'


I've set the faultTo options to be http://..../axis2/RoutingService,
however I see the HTTP error 404 (and actually I still don't understand
the reason of the MissingResourceException).

Michele

On Wed, 2007-03-14 at 08:31 -0400, Glen Mazza wrote:
> Am Mittwoch, den 14.03.2007, 09:10 +0000 schrieb Michele Mazzucco:
> > > 
> > > In src/org/apache/axis2/addressing/i18n/resource.properties, however, 
> > > this warning *is* defined as "The [action] cannot be processed at the
> > > receiver." which gives a hint to a potential problem with your
> > > application code.
> > > 
> > What does that mean? If the action is the (ws-addressing) SOAP action in
> > my case contains only the target method.
> > 
> 
> I don't know.  That message is very generic.  Sorry I don't think I can
> help you further.
> 
> Glen
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: [axis2] Re: MissingResourceException in AxisServlet

Posted by Glen Mazza <gr...@verizon.net>.
Am Mittwoch, den 14.03.2007, 09:10 +0000 schrieb Michele Mazzucco:
> > 
> > In src/org/apache/axis2/addressing/i18n/resource.properties, however, 
> > this warning *is* defined as "The [action] cannot be processed at the
> > receiver." which gives a hint to a potential problem with your
> > application code.
> > 
> What does that mean? If the action is the (ws-addressing) SOAP action in
> my case contains only the target method.
> 

I don't know.  That message is very generic.  Sorry I don't think I can
help you further.

Glen



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


[axis2] Re: MissingResourceException in AxisServlet

Posted by Michele Mazzucco <Mi...@ncl.ac.uk>.
Glen,

please se my comments below.

On Tue, 2007-03-13 at 23:30 -0400, Glen Mazza wrote:
> I'm unsure but ProjectResourceBundle appears to be missing a key (a
> string for a given constant); however, the error which is causing Axis
> to need to search for "spec.FAULT_ACTION_NOT_SUPPORTED_REASON" is only
> happening on one machine, most probably due to user inputs/requests.
> This--the (apparent) fact that the key is missing--is probably a JIRA
> issue.  Why your code is such that Axis needs to search for that error
> message to begin with is something for this mailing list.
> 
> In src/org/apache/axis2/addressing/i18n/resource.properties, however, 
> this warning *is* defined as "The [action] cannot be processed at the
> receiver." which gives a hint to a potential problem with your
> application code.
> 
What does that mean? If the action is the (ws-addressing) SOAP action in
my case contains only the target method.

> (There is also a comment in that file warning translators about
> translating the 'spec.*' message keys--I wonder if that is the problem
> with one of your machines--are you running UK English or a foreign
> language on that separate machine while running US English on the
> others?  If so, the nightly code might be missing the translation for
> that key for any non-US English default computers.  But just a guess
> here.)

All machines run in UK english.
> 
> Glen


Best,
Michele
> 
> 
> Am Dienstag, den 13.03.2007, 16:56 +0000 schrieb Michele Mazzucco:
> > Hi all,
> > 
> > from the tomcat logs I can see this message:
> > 
> > Mar 13, 2007 4:43:01 PM org.apache.axis2.transport.http.AxisServlet
> > doPost
> > SEVERE: java.util.MissingResourceException: Can't find resource for
> > bundle org.apache.axis2.i18n.ProjectResourceBundle, key
> > spec.FAULT_ACTION_NOT_SUPPORTED_REASON
> > 
> > Oddly the configuration is the same on several machines (axis2 nightly
> > build, sun jdk 1.5.0_04-b05, linux 2.6.14), but it happens only in a few
> > of them. 
> > Any clue?
> > 
> > 
> > Thanks,
> > Michele
> > 
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-user-help@ws.apache.org
> > 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org


Re: MissingResourceException in AxisServlet

Posted by Glen Mazza <gr...@verizon.net>.
I'm unsure but ProjectResourceBundle appears to be missing a key (a
string for a given constant); however, the error which is causing Axis
to need to search for "spec.FAULT_ACTION_NOT_SUPPORTED_REASON" is only
happening on one machine, most probably due to user inputs/requests.
This--the (apparent) fact that the key is missing--is probably a JIRA
issue.  Why your code is such that Axis needs to search for that error
message to begin with is something for this mailing list.

In src/org/apache/axis2/addressing/i18n/resource.properties, however, 
this warning *is* defined as "The [action] cannot be processed at the
receiver." which gives a hint to a potential problem with your
application code.

(There is also a comment in that file warning translators about
translating the 'spec.*' message keys--I wonder if that is the problem
with one of your machines--are you running UK English or a foreign
language on that separate machine while running US English on the
others?  If so, the nightly code might be missing the translation for
that key for any non-US English default computers.  But just a guess
here.)

Glen


Am Dienstag, den 13.03.2007, 16:56 +0000 schrieb Michele Mazzucco:
> Hi all,
> 
> from the tomcat logs I can see this message:
> 
> Mar 13, 2007 4:43:01 PM org.apache.axis2.transport.http.AxisServlet
> doPost
> SEVERE: java.util.MissingResourceException: Can't find resource for
> bundle org.apache.axis2.i18n.ProjectResourceBundle, key
> spec.FAULT_ACTION_NOT_SUPPORTED_REASON
> 
> Oddly the configuration is the same on several machines (axis2 nightly
> build, sun jdk 1.5.0_04-b05, linux 2.6.14), but it happens only in a few
> of them. 
> Any clue?
> 
> 
> Thanks,
> Michele
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-user-help@ws.apache.org