Problems calling a page by URL

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi misters,

I have a page that I request it by URL like this:

http://localhost:2121/Integracion/W...etenidoObservaciones=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.
 
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
 
Thanks very much, mister.

I test in production environment :

http://serverProduction:2121/Integr...etenidoObservaciones=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)

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 ]

Regards
 
Back
Top