I love the ajaxpro.net library. The applications I have developed are
working great when using IE. But when testing on Mac OSX using Firefox
and Safari, I get an error,
"192.168.1.11 undefined"
192.168.1.11 is an internal test server IP.
I am using AjaxPro.2.dll (version 6.4.26.2), and have the below in my
.aspx file:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
AjaxPro.Utility.RegisterTypeForAjax(GetType(Ajax), Me.Page)
End Sub
<AjaxPro.AjaxMethod(HttpSessionStateRequirement.Read)> _
Public Function asyncFunction( _
ByVal ds As DataSet, _
ByVal container As String, _
ByVal actionCtrl As String) As DataSet
Dim dsReturn As New DataSet
dsReturn.Tables.Add(DataService.Gateway(ds.Tables(0),
container, actionCtrl))
Return dsReturn
End Function
I am hoping that it is a configuration issue of some kind, or something
simple. I have the below in my web.config file:
<location path="ajaxpro">
<system.web>
<httpHandlers>
<add verb="*" path="*.ashx"
type="AjaxPro.AjaxHandlerFactory,
AjaxPro.2"/>
</httpHandlers>
</system.web>
</location>
Any help would be appreciated.
Thank you, Grey
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---