Re: NetConnection.Call.Failed
Flávio Lúcio Pereira <[email protected]>
| Newsgroups | gmane.comp.java.openamf.user |
|---|---|
| Message-ID | <[email protected]> |
Reza,
First, I would like to be thankful for its aid.....
I made the changes that you he ordered....
the error message now is:
code: SERVER.PROCESSING
level: error
type: java.lang.Exception
rootcause: undefined
description: No service for 'pacote.Centralizador'
details: java.lang.Exception: No service for 'pacote.Centralizador'
you it could continue to help me, please?
I trust you!! :)
to follow my actionscript code and, my java code and other are:
ActionScript Code:
//Importando a classe Usuario
import Usuario.as;
//Classes para a conexão remota...
//#include "Netservices.as"
//#include "NetDebug.as"
import mx.remoting.*;
//Definindo a Conexão Remota....
var gatewayUrl:String = "http://localhost:8080/openamf/gateway";
NetServices.setDefaultGatewayUrl(gatewayUrl);
var gatewayConnection = NetServices.createGatewayConnection();
//Definindo o Serviço Java....
var servico = gatewayConnection.getService("pacote.Centralizador", this);
//Mapeando as clases.... ( classe java / classe flash )
var teste = Object.registerClass("Usuario", Usuario);
if (teste == true) {
trace("A classe foi registrada com sucesso!!");
} else {
trace("Ocorreu um erro ao registrar a classe!");
}
//Criando um usuario Flash
var novoUsuario:Usuario = new Usuario();
novoUsuario.nome = "Flavio";
trace(novoUsuario.toString());
//Enviando o usuario
trace("--------------------");
trace(" - mandarUsuario - ");
//Chamando o método mandarUsuario da classe Java definida no serviço
servico.mandarUsuario(novoUsuario);
//Definindo a função resultado de mandarUsuario
function mandarUsuario_Result(result) {
trace("Usuario mandado (corretamente): "+result);
trace(" ------------------ ");
trace(" - receberUsuario - ");
//Chamando o metodo receberUsuario da classe Java definida no servico
servico.receberUsuario();
}
//Definindo a função resultado de receberResultado
function receberUsuario_Result(result) {
trace("Usuario Recebido (corretamente): "+result);
trace("eh uma instancia de Usuario? -> "+(result instanceof Usuario));
}
//Definindo uma funçao global para o caso de ocorrer um erro
_global.System.onStatus = function(status) {
trace(" - onStatus:");
trace(" codigo: "+status.code);
trace(" level: "+status.level);
trace(" type: "+status.type);
trace(" rootcause: "+status.rootcause);
trace(" descricao: "+status.description);
trace(" details: "+status.details);
};
=============================================================================
Class Usuario.as is:
class Usuario
{
var nome:String;
function Usuario()
{
trace("Novo usuario Flash criado...");
}
public function toString():String
{
return "usuario[" + nome + "]";
}
}
=============================================================================
My class java: Centralizador.java
import java.util.logging.Logger;
import com.carbonfive.flash.ASTranslator;
public class Centralizador {
private static final Logger log =
Logger.getLogger(Centralizador.class.getName());
private Usuario usuario;
public void mandarUsuario(Usuario usuario)
{
ASTranslator t = new ASTranslator();
usuario = (Usuario)t.fromActionScript(usuario);
log.info("usuario recolhido: " + usuario.toString());
}
public Usuario receberUsuario()
{
// ASTranslator t = new ASTranslator();
log.info("usuario a enviar: " + usuario.toString());
return usuario;
}
}
=============================================================================
my class Usuario.java is:
import java.io.Serializable;
public class Usuario implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private String nome;
public String getNome(){
return nome;
}
public void setNome(String novoNome)
{
nome = novoNome;
}
public String toString()
{
return "Usuario[" + getNome() + "]";
}
}
=============================================================================
my openamf-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<!--
Configure behavior of outgoing AMF messages:
forceLowerCaseKeys - if true, the hash maps used to return custom classes
will convert all keys to lower case;
set this to:
true if you're using ActionScript 1.0 on the client,
false if you're using ActionScript 2.0 (which is case-sensitive)
-->
<amf-serializer>
<force-lower-case-keys>false</force-lower-case-keys>
</amf-serializer>
<!-- Required for DefaultGateway-->
<invoker>
<name>PageableRecordSet</name>
<class>org.openamf.invoker.PageableResultSetServiceInvoker</class>
</invoker>
<invoker>
<name>SessionControl</name>
<class>org.openamf.invoker.SessionControlInvoker</class>
</invoker>
<invoker>
<name>WebService</name>
<class>org.openamf.invoker.WebServiceInvoker</class>
</invoker>
<invoker>
<name>JMX</name>
<class>org.openamf.invoker.JMXServiceInvoker</class>
</invoker>
<!-- Uncomment this to enable EJB invoker
<invoker>
<name>EJB</name>
<class>org.openamf.invoker.EJBServiceInvoker</class>
</invoker>
-->
<invoker>
<name>Java</name>
<class>org.openamf.invoker.JavaServiceInvoker</class>
</invoker>
<pageable-recordset>
<initial-data-row-count>20</initial-data-row-count>
</pageable-recordset>
<!--
Example Custom Class to Java Class mapping
When a class of type org.openamf.examples.Person is Serialized
it will be registered to Person in flash
When a custom class of Person is Deserialized it
will be translated to an org.openamf.examples.Person
<custom-class-mapping>
<java-class>org.openamf.examples.Person</java-class>
<custom-class>Person</custom-class>
</custom-class-mapping>
<custom-class-mapping>
<java-class>org.openamf.pacote.Usuario</java-class>
<custom-class>Usuario</custom-class>
</custom-class-mapping>
-->
<!-- Required for AdvancedGateway -->
<!--
This allows you to declare infomation about your services,
instead of having the DefaultGateway guess
-->
<service>
<name>SessionControlService</name>
<invoker-ref>SessionControl</invoker-ref>
<method>
<name>close</name>
<parameter>
<type>*</type>
</parameter>
</method>
</service>
<service>
<name>OpenAMFPageableRecordSet</name>
<invoker-ref>PageableRecordSet</invoker-ref>
<method>
<name>*</name>
<parameter>
<type>*</type>
</parameter>
</method>
</service>
<service>
<name>Directory</name>
<service-location>org.openamf.examples.Directory</service-location>
<invoker-ref>Java</invoker-ref>
<method>
<!-- Operation's are matched by the name and parameters -->
<name>addPerson</name>
<state-bean-ref>
<name>Authentication</name>
</state-bean-ref>
<parameter>
<!--
type can be the the name of the class,
a * for any types,
or a ? any 1 type
-->
<type>*</type>
</parameter>
</method>
<method>
<!-- Operation's are matched by the name and parameters -->
<name>getPeople</name>
<state-bean-ref>
<name>Authentication</name>
</state-bean-ref>
<parameter>
<!--
type can be the the name of the class,
a * for any types,
or a ? any 1 type
-->
<type>*</type>
</parameter>
<result-filter>
<class>org.openamf.filter.BeanListToRecordSet</class>
<parameter>
<name>ignore</name>
<value>extraInfo</value>
</parameter>
</result-filter>
</method>
</service>
<state-bean>
<name>Authentication</name>
<class>org.openamf.examples.Authentication</class>
<scope>session</scope>
</state-bean>
</config>
=============================================================================
my web.xml is:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
<web-app>
<servlet>
<servlet-name>DefaultGateway</servlet-name>
<display-name>DefaultGateway</display-name>
<description>DefaultGateway</description>
<servlet-class>org.openamf.DefaultGateway</servlet-class>
<init-param>
<param-name>OPENAMF_CONFIG</param-name>
<param-value>/WEB-INF/openamf-config.xml</param-value>
<description>Location of the OpenAMF config file.</description>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>AdvancedGateway</servlet-name>
<display-name>AdvancedGateway</display-name>
<description>AdvancedGateway</description>
<servlet-class>org.openamf.AdvancedGateway</servlet-class>
<init-param>
<param-name>OPENAMF_CONFIG</param-name>
<param-value>/WEB-INF/openamf-config.xml</param-value>
<description>Location of the OpenAMF config file.</description>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>ServletRedirector</servlet-name>
<servlet-class>org.apache.cactus.server.ServletTestRedirector</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DefaultGateway</servlet-name>
<url-pattern>/gateway</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>AdvancedGateway</servlet-name>
<url-pattern>/gateway2</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>ServletRedirector</servlet-name>
<url-pattern>/ServletRedirector</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>30</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
=============================================================================
my log tomcat:
06/09/2005 15:30:07 org.openamf.io.AMFDeserializer <init>
INFO: Deserializing Message, for more info turn on debug level
06/09/2005 15:30:07 org.openamf.DefaultGateway service
INFO: REQUEST:
[AMFBody: {serviceName=pacote.Centralizador,
serviceMethodName=mandarUsuario, response=/1, type=ARRAY,
value=[ASObject[type=Usuario]]}]
06/09/2005 15:30:07 org.openamf.DefaultGateway logRequestException
SEVERE: Error in service, detail=[AMFBody:
{serviceName=pacote.Centralizador, serviceMethodName=mandarUsuario,
response=/1, type=ARRAY, value=[ASObject[type=Usuario]]}],
AMFBody=[AMFBody: {serviceName=pacote.Centralizador,
serviceMethodName=mandarUsuario, response=/1, type=ARRAY,
value=[ASObject[type=Usuario]]}]
org.openamf.invoker.ServiceInvocationException: java.lang.Exception:
No service for 'pacote.Centralizador'
at org.openamf.DefaultGateway.invokeBody(DefaultGateway.java:203)
at org.openamf.DefaultGateway.processMessage(DefaultGateway.java:190)
at org.openamf.DefaultGateway.service(DefaultGateway.java:95)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.lang.Exception: No service for 'pacote.Centralizador'
... 18 more
06/09/2005 15:30:07 org.openamf.DefaultGateway service
INFO: RESPONSE:
[AMFBody: {serviceName=null, serviceMethodName=null, response=null,
type=UNKNOWN, value=[AMFError: {ASObject[type=null]}]}]
06/09/2005 15:30:07 org.openamf.io.AMFSerializer serializeMessage
INFO: Serializing Message, for more info turn on debug level
2005/9/1, Reza Heidari <[email protected]>:
> Your problem is in your ActionScript code:
>
> gatewayConnection.getService("org.openamf.examples.Centralizador",this);
>
> you need to reference your java Centralizador and org.openamf.examples.Centralizador doesn't exist...so try this instead:
>
> gatewayConnection.getService("pacote.Centralizador",this);
>
> Also not sure if it will work the way you have it setup right now, but it looks like you're mapping User.as to Usuario.java incorrectly. First, you need the properties of User to have the same as Usuario, i.e. Usuario has a property of nome and you have User having a property of name and openAMF doesn't know how to serialize it, both objects should have either nome or name. Also, try using an AdvancedGateway (instead of DefaultGateway) and setting up a custom-mapping in your openamf-config.xml:
>
> <custom-class-mapping>
> <java-class>pacote.Usuario</java-class>
> <custom-class>User</custom-class>
> </custom-class-mapping>
>
> Finally, in your openamf-config.xml set the <force-lower-case-keys> to false (unless you're using actionscript 1.0).
>
> And then in your Centralizador.java you don't need to use the ASObjects as openAMF will serialize/deserialize your java object into your actionscript object...
>
> sendUser(ASObject usuarioAS) can become sendUser(Usuario usuario)
> and getUser can return a Usuario
>
> Hope this helps,
> Reza
>
> -----Original Message-----
> From: [email protected] [mailto:[email protected]] On Behalf Of Flávio Lúcio Pereira
> Sent: Thursday, September 01, 2005 9:19 AM
> To: [email protected]
> Subject: Re: [Openamf-user] NetConnection.Call.Failed
>
> Ok, I´m sorry for that....
>
> Please, Help-me now :)
>
> Thakz for interesting!!!
>
> The log files contains:
>
> 01/09/2005 11:09:16 org.openamf.io.AMFDeserializer <init>
> INFO: Deserializing Message, for more info turn on debug level
> 01/09/2005 11:09:16 org.openamf.DefaultGateway service
> INFO: REQUEST:
> [AMFBody: {serviceName=org.openamf.examples.Centralizador,
> serviceMethodName=mandarUsuario, response=/1, type=ARRAY,
> value=[ASObject[type=Usuario]]}]
>
>
> My JAVA code is:
>
> Centralizador.java
>
> package pacote;
> import java.util.logging.Logger;
> import com.carbonfive.flash.ASTranslator;
> import flashgateway.io.ASObject;
>
>
> public class Centralizador {
> private static final Logger log =
> Logger.getLogger(Centralizador.class.getName());
>
> private Usuario usuario;
>
> public void sendUser(ASObject usuarioAS)
> {
> ASTranslator t = new ASTranslator();
> usuario = (Usuario)t.fromActionScript(usuarioAS);
>
> log.info("usuario recolhido: " + usuario.toString());
> }
> public ASObject getUser()
> {
> ASTranslator t = new ASTranslator();
> log.info("usuario a enviar: " + usuario.toString());
>
> return (ASObject)t.toActionScript(usuario);
> }
> }
>
> ----------------------------------------------------------------------------------------------------------------------------------
>
> Other Class - User.java
>
> package pacote;
> import java.io.Serializable;
>
> public class Usuario implements Serializable {
>
> /**
> *
> */
> private static final long serialVersionUID = 1L;
> private String nome;
>
>
> public String getNome(){
> return nome;
> }
>
>
> public void setNome(String novoNome)
> {
> nome = novoNome;
> }
>
>
> public String toString()
> {
> return "Usuario[" + getNome() + "]";
> }
> }
>
> ----------------------------------------------------------------------------------------------------------------------------------
>
> ActionScript code:
>
> //Importando a classe Usuario
> import User.as;
>
> //Classes para a conexão remota...
> //#include "Netservices.as"
> //#include "NetDebug.as"
> import mx.remoting.*;
>
>
> //Definindo a Conexão Remota....
>
> NetServices.setDefaultGatewayUrl("http://localhost:8080/openamf/gateway");
>
> var gatewayConnection = NetServices.createGatewayConnection();
>
> //Definindo o Serviço Java....
>
> var servico = gatewayConnection.getService("org.openamf.examples.Centralizador",
> this);
>
>
>
> //Map the classes.... ( classe java / classe flash )
>
>
>
> var teste = Object.registerClass("User", User);
> if(teste == true){
> trace("A classe foi registrada com sucesso!!");
> }else{
> trace("Ocorreu um erro ao registrar a classe!");
> }
>
> //Criando um usuario Flash
> var novoUsuario:Usuario = new Usuario();
> novoUsuario.nome = "Flavio";
> trace(novoUsuario.toString());
>
> //Enviando o usuario
> trace("--------------------");
> trace(" - sendUser - ");
> //Chamando o método mandarUsuario da classe Java definida no serviço
>
> servico.sendUser(novoUsuario);
>
> //Definindo a função resultado de mandarUsuario
> function sendUser_Result(result)
> {
> trace("Usuario mandado (corretamente): " + result);
>
> trace(" ------------------ ");
> trace(" - getUser - ");
>
> //Chamando o metodo receberUsuario da classe Java definida no servico
> servico.receberUsuario();
> }
> //Definindo a função resultado de receberResultado
> function getUser_Result(result)
> {
> trace("Usuario Recebido (corretamente): " + result);
> trace("eh uma instancia de Usuario? -> " + (result instanceof Usuario));
> }
>
> //Definindo uma funçao global para o caso de ocorrer um erro
>
> _global.System.onStatus = function(status)
> {
> trace(" - onStatus:");
> trace(" codigo: " + status.code);
> trace(" level: " + status.level);
> trace(" type: " + status.type);
> trace(" rootcause: " + status.rootcause);
> trace(" descricao: " + status.description);
> trace(" details: " + status.details);
> }
>
> ----------------------------------------------------------------------------------------------------------------------------------
>
> Class User.as
>
> class User
> {
> var name:String;
>
> function User()
> {
> trace("Novo usuario Flash criado...");
> }
>
> public function toString():String
> {
> return "usuario[" + name + "]";
> }
> }
>
> ----------------------------------------------------------------------------------------------------------------------------------
>
> the contains openamf-config.xml :
>
>
> <?xml version="1.0" encoding="UTF-8"?>
> <config>
>
> <!--
> Configure behavior of outgoing AMF messages:
> forceLowerCaseKeys - if true, the hash maps used to return custom classes
> will convert all keys to lower case;
> set this to:
> true if you're using ActionScript 1.0 on the client,
> false if you're using ActionScript 2.0 (which is case-sensitive)
> -->
> <amf-serializer>
> <force-lower-case-keys>true</force-lower-case-keys>
> </amf-serializer>
>
> <!-- Required for DefaultGateway-->
> <invoker>
> <name>PageableRecordSet</name>
> <class>org.openamf.invoker.PageableResultSetServiceInvoker</class>
> </invoker>
> <invoker>
> <name>SessionControl</name>
> <class>org.openamf.invoker.SessionControlInvoker</class>
> </invoker>
> <invoker>
> <name>WebService</name>
> <class>org.openamf.invoker.WebServiceInvoker</class>
> </invoker>
> <invoker>
> <name>JMX</name>
> <class>org.openamf.invoker.JMXServiceInvoker</class>
> </invoker>
>
> <!-- Uncomment this to enable EJB invoker
> <invoker>
> <name>EJB</name>
> <class>org.openamf.invoker.EJBServiceInvoker</class>
> </invoker>
> -->
>
> <invoker>
> <name>Java</name>
> <class>org.openamf.invoker.JavaServiceInvoker</class>
> </invoker>
> <pageable-recordset>
> <initial-data-row-count>20</initial-data-row-count>
> </pageable-recordset>
> <!--
> Example Custom Class to Java Class mapping
>
> When a class of type org.openamf.examples.Person is Serialized
> it will be registered to Person in flash
>
> When a custom class of Person is Deserialized it
> will be translated to an org.openamf.examples.Person
>
> <custom-class-mapping>
> <java-class>org.openamf.examples.Person</java-class>
> <custom-class>Person</custom-class>
> </custom-class-mapping>
> -->
> <!-- Required for AdvancedGateway -->
> <!--
> This allows you to declare infomation about your services,
> instead of having the DefaultGateway guess
> -->
> <service>
> <name>SessionControlService</name>
> <invoker-ref>SessionControl</invoker-ref>
> <method>
> <name>close</name>
> <parameter>
> <type>*</type>
> </parameter>
> </method>
> </service>
> <service>
> <name>OpenAMFPageableRecordSet</name>
> <invoker-ref>PageableRecordSet</invoker-ref>
> <method>
> <name>*</name>
> <parameter>
> <type>*</type>
> </parameter>
> </method>
> </service>
> <service>
> <name>Directory</name>
> <service-location>org.openamf.examples.Directory</service-location>
> <invoker-ref>Java</invoker-ref>
> <method>
> <!-- Operation's are matched by the name and parameters -->
> <name>addPerson</name>
> <state-bean-ref>
> <name>Authentication</name>
> </state-bean-ref>
> <parameter>
> <!--
> type can be the the name of the class,
> a * for any types,
> or a ? any 1 type
> -->
> <type>*</type>
> </parameter>
> </method>
> <method>
> <!-- Operation's are matched by the name and parameters -->
> <name>getPeople</name>
> <state-bean-ref>
> <name>Authentication</name>
> </state-bean-ref>
> <parameter>
> <!--
> type can be the the name of the class,
> a * for any types,
> or a ? any 1 type
> -->
> <type>*</type>
> </parameter>
> <result-filter>
> <class>org.openamf.filter.BeanListToRecordSet</class>
> <parameter>
> <name>ignore</name>
> <value>extraInfo</value>
> </parameter>
> </result-filter>
> </method>
> </service>
> <state-bean>
> <name>Authentication</name>
> <class>org.openamf.examples.Authentication</class>
> <scope>session</scope>
> </state-bean>
> </config>
>
> ---------------------------------------------------------------------------------------------------------------------------------
>
> my web.xml is:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <!DOCTYPE web-app
> PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
> "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
> <web-app>
> <servlet>
> <servlet-name>DefaultGateway</servlet-name>
> <display-name>DefaultGateway</display-name>
> <description>DefaultGateway</description>
> <servlet-class>org.openamf.DefaultGateway</servlet-class>
> <init-param>
> <param-name>OPENAMF_CONFIG</param-name>
> <param-value>/WEB-INF/openamf-config.xml</param-value>
> <description>Location of the OpenAMF config file.</description>
> </init-param>
> <load-on-startup>1</load-on-startup>
> </servlet>
> <servlet>
> <servlet-name>AdvancedGateway</servlet-name>
> <display-name>AdvancedGateway</display-name>
> <description>AdvancedGateway</description>
> <servlet-class>org.openamf.AdvancedGateway</servlet-class>
> <init-param>
> <param-name>OPENAMF_CONFIG</param-name>
> <param-value>/WEB-INF/openamf-config.xml</param-value>
> <description>Location of the OpenAMF config file.</description>
> </init-param>
> <load-on-startup>1</load-on-startup>
> </servlet>
> <servlet>
> <servlet-name>ServletRedirector</servlet-name>
> <servlet-class>org.apache.cactus.server.ServletTestRedirector</servlet-class>
> </servlet>
> <servlet-mapping>
> <servlet-name>DefaultGateway</servlet-name>
> <url-pattern>/gateway</url-pattern>
> </servlet-mapping>
> <servlet-mapping>
> <servlet-name>AdvancedGateway</servlet-name>
> <url-pattern>/gateway2</url-pattern>
> </servlet-mapping>
> <servlet-mapping>
> <servlet-name>ServletRedirector</servlet-name>
> <url-pattern>/ServletRedirector</url-pattern>
> </servlet-mapping>
> <session-config>
> <session-timeout>30</session-timeout>
> </session-config>
> <welcome-file-list>
> <welcome-file>index.html</welcome-file>
> </welcome-file-list>
> </web-app>
>
>
>
>
>
> 2005/8/31, Todd Hivnor <[email protected]>:
> > There isn't enough information in your error report for us to really help.
> > We need more clues.
> >
> > Have you configured logging?
> > What is in your log files?
> >
> > You might want to attach your Java code, ActionScript code, web.xml, and
> > openamf-config.xml files.
> >
> >
> >
> > Flávio Lúcio Pereira wrote:
> >
> > >Please I am despaired.
> > >
> > >I do not obtain to correct this error.....
> > >
> > >- onStatus:
> > > code: NetConnection.Call.Failed
> > > level: error
> > > type: undefined
> > > rootcause: undefined
> > > description: HTTP: Status 500
> > > details: http://localhost:8080/openamf/gateway
> > >
> > >Somebody could help me?
> > >
> > >I would be thankful much!!!
> > >
> > >Flávio
> > >
> > >
> > >-------------------------------------------------------
> > >SF.Net email is Sponsored by the Better Software Conference & EXPO
> > >September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> > >Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> > >Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> > >_______________________________________________
> > >Openamf-user mailing list
> > >[email protected]
> > >https://lists.sourceforge.net/lists/listinfo/openamf-user
> > >
> > >
> >
> >
> >
> > -------------------------------------------------------
> > SF.Net email is Sponsored by the Better Software Conference & EXPO
> > September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> > Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> > Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> > _______________________________________________
> > Openamf-user mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/openamf-user
> >
>
>
> -------------------------------------------------------
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> _______________________________________________
> Openamf-user mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/openamf-user
>
>
> -------------------------------------------------------
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> _______________________________________________
> Openamf-user mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/openamf-user
>
-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf