Environment:Apache Tomcat/8.0.141.8.0_25-b17Oracle CorporationMac OS X10.9.4

Expectation:
As per cfhttp expected behavior i am not required to specify as a separate
attribute either the protocol (HTTP or HTTPS) or even the port.  I can but
not required to. If i don't specify then protocol defaults to http. For
port, if i specify it via port attribute then the attribute port overrides
the one embedded in the URL.


STR:

However, my latest experience running OpenBD on Tomcat 7.1 is this:

Case 1:
<cfset
url="localhost/obd/mmm/unit_tests/tester.cfc?method=test_properties_add_remove"
/>

<cfhttp throwonerror="true"  method="get" url="#trim(lcase(k))#" port="8080"
result="d"  redirect="false" resolveurl="false" />

I get connection refused on localhost.

Case 2: I add port number
<cfset
url="localhost:8080/obd/mmm/unit_tests/tester.cfc?method=test_properties_add_remove"
/>

<cfhttp throwonerror="true"  method="get" url="#trim(lcase(k))#" port="8080"
 result="d"  redirect="false" resolveurl="false" />


I get
Failed due to invalid Protocol: URI does not specify a valid host name:
localhost:8080/obd/mmm/unit_tests/tester.cfc?method=test_properties_add_remove
tagcontext

Case 3: i add URI protocol
<cfset url="
http://localhost:8080/obd/mmm/unit_tests/tester.cfc?method=test_properties_add_remove";
/>

And thing works!


Should i fix in the Openbd JEE Engine?


Regards,
Nitish



2014-12-04 22:29 GMT+05:30 John Moss <[email protected]>:

> I'm pretty sure cfwheels only works with railo and acf.
>
> On Thursday, December 4, 2014 9:08:22 AM UTC-7, forcesofindia.com wrote:
>>
>> cfwheels is very good but i am not sure if it still works with opened
>>
>> 2014-12-04 19:51 GMT+05:30 Brad Severance <[email protected]>:
>>
>>> What would you suggest for an MVC framework for OpenBD?
>>>
>>> Thanks!
>>> brad
>>>
>>> --
>>> --
>>> online documentation: http://openbd.org/manual/
>>> http://groups.google.com/group/openbd?hl=en
>>>
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "Open BlueDragon" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to [email protected].
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> -Nitish
>> "Imagination is more powerful than Knowledge"
>>
>  --
> --
> online documentation: http://openbd.org/manual/
> http://groups.google.com/group/openbd?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Open BlueDragon" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
>



-- 
-Nitish
"Imagination is more powerful than Knowledge"

-- 
-- 
online documentation: http://openbd.org/manual/
 http://groups.google.com/group/openbd?hl=en

--- 
You received this message because you are subscribed to the Google Groups "Open 
BlueDragon" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to