Hi misters,
I have a page that I request it by URL like this:
http://localhost:2121/Integracion/WFServiceRequest.aspx?servicio=MaquinaEstados&metodo=IterarEstadoExt&estadoActual=200&transicion=ReclamacionRetenida&idpaxtarea=93539&estadoTareaExt=(RetenidoObservaciones=ObservacionesPRUEBASEPV)
This page do this:
Response.Write(respuesta);
Response.Flush();
Response.Close();
the response of page is text like this:
Error=message of error
Some users of application web say me that call this page and when click Ctrl
+ F5, the Explorer not have response. Another partner developer, comment me
that the problem are Explorer DLL's and some characters in the response. Is
it possible ?
Finally, two tests:
for this response works: (don't have \r\n)
Error=Error en la invocación del servicio maquinaestados. Error en
ProviderFactory.ExecuteNonQueryNum. 0 Message: Informix .NET provider
Informix Could not do a physical-order read to fetch next row.
sqlerrm(informix.valoracion) Native: -244 SQL ErrorCode: HY000
for this response NOT works: (have \r\n)
Error=Error en la invocación del servicio maquinaestados. Error en
ProviderFactory.ExecuteNonQuery ERROR INFORMIX Message: ERROR [HY000]
[Informix .NET provider][Informix]Could not do a physical-order read to fetch
next row. sqlerrm(informix.valoracion) Source: IBM.Data.Informix TargetSite:
Void HandleError(IntPtr, SQL_HANDLE, RETCODE) Num. #0 Message: [Informix .NET
provider][Informix]Could not do a physical-order read to fetch next row.
sqlerrm(informix.valoracion) Native: -244 SQL ErrorCode: HY000
Characters for suspect: \r\n character # and number 0 (#0), or
characters [ and ]
Any suggestion and comment will be appreciated and i will very grateful.
Thanks in advance. Greetings.

Signature
http://www.alhambra-eidos.es/web2005/index.html
www.kiquenet.net
http://www.setbb.com/putainformatica/viewtopic.php?p=843
www.trabajobasura.com/solusoft
Peter Bromberg [C# MVP] - 24 Oct 2007 12:34 GMT
First, if you expect users from other machines to be able to see your page,
you need to get it out of the Development web server
and host it in IIS. Development server only works for localhost and uses
nonstandard ports.
Second, you need to be very careful that there aren't any illegal characters
in the querystring.
Peter

Signature
Recursion: see Recursion
site: http://www.eggheadcafe.com
unBlog: http://petesbloggerama.blogspot.com
BlogMetaFinder: http://www.blogmetafinder.com
> Hi misters,
>
[quoted text clipped - 44 lines]
>
> Thanks in advance. Greetings.
Alhambra Eidos Kiquenet - 24 Oct 2007 12:56 GMT
Thanks very much, mister.
I test in production environment :
http://serverProduction:2121/Integracion/WFServiceRequest.aspx?servicio=MaquinaEstados&metodo=IterarEstadoExt&estadoActual=200&transicion=ReclamacionRetenida&idpaxtarea=93539&estadoTareaExt=(RetenidoObservaciones=ObservacionesPRUEBASEPV)
and I'm sure querystring not problem.
The problem is the response (the text that I get...)
> > for this response works: (don't have \r\n)
> >
[quoted text clipped - 17 lines]
> > Characters for suspect: \r\n character # and number 0 (#0), or
> > characters [ and ]
Regards