Ofbiz Installation

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
38 messages Options
12
Reply | Threaded
Open this post in threaded view
|

Re: ftl form question

Jacek Wagner
I solved the problem. It was well too easy. Thank you. Jacek

David E Jones wrote:

>
> On Apr 17, 2009, at 11:44 AM, Jacek Wagner wrote:
>
>> All,
>>
>> In all ftl forms I found when method="post"  action always points to
>> a desire service.
>>
>> Is it possible to call direct url instead.
>>
>> Example: instead  
>> ****action="<@ofbizUrl>searchorders</@ofbizUrl>"***  do something
>> like this
>> ***action="<@ofbizUrl>http://orderpagetest.ic3.com/hop/orderform.jsp</@ofbizUrl>***
>>
>
> Yes, but leave you the <@ofbizUrl> tags, they are only needed to write
> URLs internally.
>
> -David
Reply | Threaded
Open this post in threaded view
|

Re: ftl form question

cjhorton
On Fri, Apr 17, 2009 at 6:21 PM, Jacek Wagner <[hidden email]>wrote:

> I solved the problem. It was well too easy. Thank you. Jacek
>
>
> David E Jones wrote:
>
>>
>> On Apr 17, 2009, at 11:44 AM, Jacek Wagner wrote:
>>
>>  All,
>>>
>>> In all ftl forms I found when method="post"  action always points to a
>>> desire service.
>>>
>>> Is it possible to call direct url instead.
>>>
>>> Example: instead  ****action="<@ofbizUrl>searchorders</@ofbizUrl>"***  do
>>> something like this
>>> ***action="<@ofbizUrl>http://orderpagetest.ic3.com/hop/orderform.jsp</@ofbizUrl>***
>>>
>>>
>>
>> Yes, but leave you the <@ofbizUrl> tags, they are only needed to write
>> URLs internally.
>>
>> -David
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: ftl form question

cjhorton
**Gmail issue**

Are you talking about something like this?

<a href="http://orderpagetest.ic3.com/hop/login">Link text</a>

On Fri, Apr 17, 2009 at 6:22 PM, CJay Horton <[hidden email]> wrote:

>
>
> On Fri, Apr 17, 2009 at 6:21 PM, Jacek Wagner <[hidden email]>wrote:
>
>> I solved the problem. It was well too easy. Thank you. Jacek
>>
>>
>> David E Jones wrote:
>>
>>>
>>> On Apr 17, 2009, at 11:44 AM, Jacek Wagner wrote:
>>>
>>>  All,
>>>>
>>>> In all ftl forms I found when method="post"  action always points to a
>>>> desire service.
>>>>
>>>> Is it possible to call direct url instead.
>>>>
>>>> Example: instead  ****action="<@ofbizUrl>searchorders</@ofbizUrl>"***
>>>>  do something like this
>>>> ***action="<@ofbizUrl>http://orderpagetest.ic3.com/hop/orderform.jsp</@ofbizUrl>***
>>>>
>>>>
>>>
>>> Yes, but leave you the <@ofbizUrl> tags, they are only needed to write
>>> URLs internally.
>>>
>>> -David
>>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: ftl form question

Jacek Wagner
Yes. Thank you. Jacek

CJay Horton wrote:

> **Gmail issue**
>
> Are you talking about something like this?
>
> <a href="http://orderpagetest.ic3.com/hop/login">Link text</a>
>
> On Fri, Apr 17, 2009 at 6:22 PM, CJay Horton <[hidden email]> wrote:
>
>  
>> On Fri, Apr 17, 2009 at 6:21 PM, Jacek Wagner <[hidden email]>wrote:
>>
>>    
>>> I solved the problem. It was well too easy. Thank you. Jacek
>>>
>>>
>>> David E Jones wrote:
>>>
>>>      
>>>> On Apr 17, 2009, at 11:44 AM, Jacek Wagner wrote:
>>>>
>>>>  All,
>>>>        
>>>>> In all ftl forms I found when method="post"  action always points to a
>>>>> desire service.
>>>>>
>>>>> Is it possible to call direct url instead.
>>>>>
>>>>> Example: instead  ****action="<@ofbizUrl>searchorders</@ofbizUrl>"***
>>>>>  do something like this
>>>>> ***action="<@ofbizUrl>http://orderpagetest.ic3.com/hop/orderform.jsp</@ofbizUrl>***
>>>>>
>>>>>
>>>>>          
>>>> Yes, but leave you the <@ofbizUrl> tags, they are only needed to write
>>>> URLs internally.
>>>>
>>>> -David
>>>>
>>>>        
>
>  
Reply | Threaded
Open this post in threaded view
|

RE: Ofbiz Installation

Charles Tjandra
In reply to this post by su2


- Check your Java in command-line >java -version , make sure it is version 5
- Check your JAVA_HOME & PATH in Environment, if ti is correct..

Charles

-----Original Message-----
From: shuchi [mailto:[hidden email]]
Sent: 18 April 2009 0:12
To: [hidden email]
Subject: [?? Probable Spam] Ofbiz Installation



Hello,

I have downloaded J2SE 5.0, development kit with NetBeans. I have also
downloaded ofbiz-trunk-current from http://build.ofbiz.org/

I was trying to execute ofbiz.jar(by double clicking in windows) but file
does not respond. It does not give either error or starts executing.

I have also tried running ofbiz-trunk-current\ofbiz-trunk\startofbiz(batch
file), but it does not execute, cmd prompt flashes for few seconds and goes
away without executing the file and i dont get error either.

I have windows XP Pro.

p.s. originally I posted on OFBiz - Dev, and moved it here.

Your help is really appreciated
--
View this message in context:
http://www.nabble.com/Ofbiz-Installation-tp23101859p23101859.html
Sent from the OFBiz - User mailing list archive at Nabble.com.

Reply | Threaded
Open this post in threaded view
|

form question

Jacek Wagner
In reply to this post by cjhorton
All,

 From the ftl written form I am calling cybersource to process credit
card payment (note i am not allowed to pass any information)

What would be the best way to capture cybersource posted response?

<!-- //
function lookupOrders(click) {
        document.lookuporder.action =
"https://orderpagetest.ic3.com/hop/orderform.jsp";

    if (click) {
        document.lookuporder.submit();
    }
    return true;
}
// -->

Jacek
Reply | Threaded
Open this post in threaded view
|

Re: form question

BJ Freeman
if you want to integrate it into ofbiz, like paypal take a look at that
implementation.
Note: you have to pass information so they have someway to Identify you.
one piece is the return URL
so make a URI in your controller that will process the returned info.


Jacek Wagner sent the following on 4/20/2009 4:21 PM:

> All,
>
> From the ftl written form I am calling cybersource to process credit
> card payment (note i am not allowed to pass any information)
>
> What would be the best way to capture cybersource posted response?
>
> <!-- //
> function lookupOrders(click) {
>        document.lookuporder.action =
> "https://orderpagetest.ic3.com/hop/orderform.jsp";
>
>    if (click) {
>        document.lookuporder.submit();
>    }
>    return true;
> }
> // -->
>
> Jacek
>
>
Reply | Threaded
Open this post in threaded view
|

Re: form question

Jacek Wagner
Calling cybersource is done and i will be more than happy to share my
solution. Receiving response is my problem. I could not find any paypal
specific reference in controller for payment and order application alike.

J

BJ Freeman wrote:

> if you want to integrate it into ofbiz, like paypal take a look at that
> implementation.
> Note: you have to pass information so they have someway to Identify you.
> one piece is the return URL
> so make a URI in your controller that will process the returned info.
>
>
> Jacek Wagner sent the following on 4/20/2009 4:21 PM:
>  
>> All,
>>
>> From the ftl written form I am calling cybersource to process credit
>> card payment (note i am not allowed to pass any information)
>>
>> What would be the best way to capture cybersource posted response?
>>
>> <!-- //
>> function lookupOrders(click) {
>>        document.lookuporder.action =
>> "https://orderpagetest.ic3.com/hop/orderform.jsp";
>>
>>    if (click) {
>>        document.lookuporder.submit();
>>    }
>>    return true;
>> }
>> // -->
>>
>> Jacek
>>
>>
>>    
Reply | Threaded
Open this post in threaded view
|

Re: form question

BJ Freeman
Payments are setup different than the way your are doing it
the paypal is in the accounting and is setup through the product store
as an external payment.
http://docs.ofbiz.org/display/OFBIZ/Payment+Services
you can find the code
http://svn.apache.org/viewvc/ofbiz/branches/release09.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/
this is the cycbersource code for gateway
http://svn.apache.org/viewvc/ofbiz/branches/release09.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/cybersource/

you would use the post method
http://apps.cybersource.com/library/documentation/sbc/SOP_UG/html/
look at reply pages

Jacek Wagner sent the following on 4/20/2009 4:52 PM:

> Calling cybersource is done and i will be more than happy to share my
> solution. Receiving response is my problem. I could not find any paypal
> specific reference in controller for payment and order application alike.
>
> J
>
> BJ Freeman wrote:
>> if you want to integrate it into ofbiz, like paypal take a look at that
>> implementation.
>> Note: you have to pass information so they have someway to Identify you.
>> one piece is the return URL
>> so make a URI in your controller that will process the returned info.
>>
>>
>> Jacek Wagner sent the following on 4/20/2009 4:21 PM:
>>  
>>> All,
>>>
>>> From the ftl written form I am calling cybersource to process credit
>>> card payment (note i am not allowed to pass any information)
>>>
>>> What would be the best way to capture cybersource posted response?
>>>
>>> <!-- //
>>> function lookupOrders(click) {
>>>        document.lookuporder.action =
>>> "https://orderpagetest.ic3.com/hop/orderform.jsp";
>>>
>>>    if (click) {
>>>        document.lookuporder.submit();
>>>    }
>>>    return true;
>>> }
>>> // -->
>>>
>>> Jacek
>>>
>>>
>>>    
>
>
Reply | Threaded
Open this post in threaded view
|

Re: form question

Jacek Wagner
I have solved "Receiving response"  by creating URI as you suggested before.

    <!-- cybersource -->
    <request-map uri="csreceipt">
        <event type="service" invoke="csreceipt"/>
        <response name="success" type="view" value="PaymentReceipt"/>
        <response name="error" type="view" value="main"/>    
    </request-map>

where csreceipt is a java service which takes some not all parameters
posted by CyberSource  return.

works like a dream.

Thank you

Jacek

BJ Freeman wrote:

> Payments are setup different than the way your are doing it
> the paypal is in the accounting and is setup through the product store
> as an external payment.
> http://docs.ofbiz.org/display/OFBIZ/Payment+Services
> you can find the code
> http://svn.apache.org/viewvc/ofbiz/branches/release09.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/
> this is the cycbersource code for gateway
> http://svn.apache.org/viewvc/ofbiz/branches/release09.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/cybersource/
>
> you would use the post method
> http://apps.cybersource.com/library/documentation/sbc/SOP_UG/html/
> look at reply pages
>
> Jacek Wagner sent the following on 4/20/2009 4:52 PM:
>  
>> Calling cybersource is done and i will be more than happy to share my
>> solution. Receiving response is my problem. I could not find any paypal
>> specific reference in controller for payment and order application alike.
>>
>> J
>>
>> BJ Freeman wrote:
>>    
>>> if you want to integrate it into ofbiz, like paypal take a look at that
>>> implementation.
>>> Note: you have to pass information so they have someway to Identify you.
>>> one piece is the return URL
>>> so make a URI in your controller that will process the returned info.
>>>
>>>
>>> Jacek Wagner sent the following on 4/20/2009 4:21 PM:
>>>  
>>>      
>>>> All,
>>>>
>>>> From the ftl written form I am calling cybersource to process credit
>>>> card payment (note i am not allowed to pass any information)
>>>>
>>>> What would be the best way to capture cybersource posted response?
>>>>
>>>> <!-- //
>>>> function lookupOrders(click) {
>>>>        document.lookuporder.action =
>>>> "https://orderpagetest.ic3.com/hop/orderform.jsp";
>>>>
>>>>    if (click) {
>>>>        document.lookuporder.submit();
>>>>    }
>>>>    return true;
>>>> }
>>>> // -->
>>>>
>>>> Jacek
>>>>
>>>>
>>>>    
>>>>        
>>    
su2
Reply | Threaded
Open this post in threaded view
|

Re: Ofbiz Installation

su2
In reply to this post by Jacques Le Roux
Hi,

I do not see any java or ofbiz running in my task manager. Once i saw javaw.exe in processes, i killed it and again tried running it but nothing happened. still getting the same thing.

Please help!

jacques.le.roux wrote
Sounds like you have already an instance of OFBiz running in background. Use taskmanager to kill it and use startofbiznolog (or ant
run) to re-run OFBIz and see what happens.

Jacques

From: "shuchi" <shuchi@pexsupply.com>
> you are genius.
>
> I got following result
>
> proto  Local address    Foreign Address       State           pid
> TCP    0.0.0.0:8080     0.0.0.0                  Listening       1304
> C:\windows\system32\ws2_32.dll
> C:\Sun\SDK\jdk\jre\bin\net.dll
> --Unknown Component(s) --
> [java.exe]
>
>
>
> Cimballi-2 wrote:
>>
>> Try this :
>> netstat -abnv -p tcp
>>
>> And you can set the size of the terminal, right click, properties,
>> configuration.
>>
>> Cimballi
>>
>>
>> On Fri, Apr 17, 2009 at 1:31 PM, shuchi <shuchi@pexsupply.com> wrote:
>>
>>>
>>> When I try running netstat -abn, it gives me huge list which is not
>>> scrollable, i am not able to see the entire list.
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Ofbiz-Installation-tp23101859p23103338.html
>>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>>
>>>
>>
>>
>
> --
> View this message in context: http://www.nabble.com/Ofbiz-Installation-tp23101859p23103741.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>

Reply | Threaded
Open this post in threaded view
|

Re: Ofbiz Installation

Jacques Le Roux
Administrator
Download an launch Active Ports http://download.cnet.com/Active-Ports/3000-2651_4-29653.html?tag=mncol
This should help you to understand what your problem is

Jacques

From: "shuchi" <[hidden email]>

>
> Hi,
>
> I do not see any java or ofbiz running in my task manager. Once i saw
> javaw.exe in processes, i killed it and again tried running it but nothing
> happened. still getting the same thing.
>
> Please help!
>
>
> jacques.le.roux wrote:
>>
>> Sounds like you have already an instance of OFBiz running in background.
>> Use taskmanager to kill it and use startofbiznolog (or ant
>> run) to re-run OFBIz and see what happens.
>>
>> Jacques
>>
>> From: "shuchi" <[hidden email]>
>>> you are genius.
>>>
>>> I got following result
>>>
>>> proto  Local address    Foreign Address       State           pid
>>> TCP    0.0.0.0:8080     0.0.0.0                  Listening       1304
>>> C:\windows\system32\ws2_32.dll
>>> C:\Sun\SDK\jdk\jre\bin\net.dll
>>> --Unknown Component(s) --
>>> [java.exe]
>>>
>>>
>>>
>>> Cimballi-2 wrote:
>>>>
>>>> Try this :
>>>> netstat -abnv -p tcp
>>>>
>>>> And you can set the size of the terminal, right click, properties,
>>>> configuration.
>>>>
>>>> Cimballi
>>>>
>>>>
>>>> On Fri, Apr 17, 2009 at 1:31 PM, shuchi <[hidden email]> wrote:
>>>>
>>>>>
>>>>> When I try running netstat -abn, it gives me huge list which is not
>>>>> scrollable, i am not able to see the entire list.
>>>>> --
>>>>> View this message in context:
>>>>> http://www.nabble.com/Ofbiz-Installation-tp23101859p23103338.html
>>>>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>>>>
>>>>>
>>>>
>>>>
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Ofbiz-Installation-tp23101859p23103741.html
>>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>>
>>
>>
>>
>>
>
> --
> View this message in context: http://www.nabble.com/Ofbiz-Installation-tp23101859p23175525.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>

su2
Reply | Threaded
Open this post in threaded view
|

Re: Ofbiz Installation

su2
In reply to this post by su2
I downloaded the activeports, but i do not see 8080 been used there
shuchi wrote
you are genius.

I got following result

proto  Local address    Foreign Address       State           pid
TCP    0.0.0.0:8080     0.0.0.0                  Listening       1304
C:\windows\system32\ws2_32.dll
C:\Sun\SDK\jdk\jre\bin\net.dll
--Unknown Component(s) --
[java.exe]


Cimballi-2 wrote
Try this :
netstat -abnv -p tcp

And you can set the size of the terminal, right click, properties,
configuration.

Cimballi


On Fri, Apr 17, 2009 at 1:31 PM, shuchi <shuchi@pexsupply.com> wrote:

>
> When I try running netstat -abn, it gives me huge list which is not
> scrollable, i am not able to see the entire list.
> --
> View this message in context:
> http://www.nabble.com/Ofbiz-Installation-tp23101859p23103338.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>
>
Reply | Threaded
Open this post in threaded view
|

Re: Ofbiz Installation

Jacques Le Roux
Administrator
You need to give use more informations, like the log (actually not all, only a snippet around your error)

Jacques

From: "shuchi" <[hidden email]>

>
> I downloaded the activeports, but i do not see 8080 been used there
>
> shuchi wrote:
>>
>> you are genius.
>>
>> I got following result
>>
>> proto  Local address    Foreign Address       State           pid
>> TCP    0.0.0.0:8080     0.0.0.0                  Listening       1304
>> C:\windows\system32\ws2_32.dll
>> C:\Sun\SDK\jdk\jre\bin\net.dll
>> --Unknown Component(s) --
>> [java.exe]
>>
>>
>>
>> Cimballi-2 wrote:
>>>
>>> Try this :
>>> netstat -abnv -p tcp
>>>
>>> And you can set the size of the terminal, right click, properties,
>>> configuration.
>>>
>>> Cimballi
>>>
>>>
>>> On Fri, Apr 17, 2009 at 1:31 PM, shuchi <[hidden email]> wrote:
>>>
>>>>
>>>> When I try running netstat -abn, it gives me huge list which is not
>>>> scrollable, i am not able to see the entire list.
>>>> --
>>>> View this message in context:
>>>> http://www.nabble.com/Ofbiz-Installation-tp23101859p23103338.html
>>>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>>>
>>>>
>>>
>>>
>>
>>
>
> --
> View this message in context: http://www.nabble.com/Ofbiz-Installation-tp23101859p23175552.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>

Reply | Threaded
Open this post in threaded view
|

Re: Ofbiz Installation

Stephen Rufle-2
In reply to this post by Cimballi-2
I am not sure if the JVM_Bind:8080 issue was solved. I had an issue with
my oracle install grabbing port 8080 for some web base management
application.

Cimballi wrote:

> Well, it's pretty clear : Address already in use: JVM_Bind:8080
>
> It means you have another server application running and using the 8080
> port. Don't you have another Tomcat running ?
>
> Cimballi
>
>
> On Fri, Apr 17, 2009 at 12:30 PM, shuchi <[hidden email]> wrote:
>
>  
>> I have following error message in
>> Desktop\ofbiz-trunk-current\ofbiz-trunk\runtime\logs\error.log
>>
>> It shows error dated 2009-04-14 - when I downloaded the
>> ofbiz-trunk-current.
>>
>> ***********************************************************************
>> 2009-04-14 14:45:06,500 (main) [     Http11Protocol.java:178:ERROR] Error
>> initializing endpoint
>> java.net.BindException: Address already in use: JVM_Bind:8080
>>        at org.apache.tomcat.util.net.JIoEndpoint.init(JIoEndpoint.java:501)
>>        at
>> org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:176)
>>        at
>> org.apache.catalina.connector.Connector.initialize(Connector.java:1058)
>>        at
>>
>> org.apache.catalina.core.StandardService.initialize(StandardService.java:677)
>>        at
>>
>> org.ofbiz.catalina.container.CatalinaContainer.init(CatalinaContainer.java:214)
>>        at
>>
>> org.ofbiz.base.container.ContainerLoader.loadContainer(ContainerLoader.java:190)
>>        at
>> org.ofbiz.base.container.ContainerLoader.load(ContainerLoader.java:66)
>>        at org.ofbiz.base.start.Start.initStartLoaders(Start.java:250)
>>        at org.ofbiz.base.start.Start.init(Start.java:89)
>>        at org.ofbiz.base.start.Start.main(Start.java:398)
>>
>> ***********************************************************************
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Ofbiz-Installation-tp23101859p23102273.html
>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>
>>
>>    
>
>  

--
Stephen P Rufle
[hidden email]
H1:480-626-8022
H2:480-802-7173
Yahoo IM: stephen_rufle
AOL IM: stephen1rufle

su2
Reply | Threaded
Open this post in threaded view
|

Re: Ofbiz Installation

su2
In reply to this post by su2
nope its not solved yet, still facing the same issue
shuchi wrote
I have following error message in Desktop\ofbiz-trunk-current\ofbiz-trunk\runtime\logs\error.log

It shows error dated 2009-04-14 - when I downloaded the ofbiz-trunk-current.

***********************************************************************
2009-04-14 14:45:06,500 (main) [     Http11Protocol.java:178:ERROR] Error initializing endpoint
java.net.BindException: Address already in use: JVM_Bind:8080
        at org.apache.tomcat.util.net.JIoEndpoint.init(JIoEndpoint.java:501)
        at org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:176)
        at org.apache.catalina.connector.Connector.initialize(Connector.java:1058)
        at org.apache.catalina.core.StandardService.initialize(StandardService.java:677)
        at org.ofbiz.catalina.container.CatalinaContainer.init(CatalinaContainer.java:214)
        at org.ofbiz.base.container.ContainerLoader.loadContainer(ContainerLoader.java:190)
        at org.ofbiz.base.container.ContainerLoader.load(ContainerLoader.java:66)
        at org.ofbiz.base.start.Start.initStartLoaders(Start.java:250)
        at org.ofbiz.base.start.Start.init(Start.java:89)
        at org.ofbiz.base.start.Start.main(Start.java:398)

***********************************************************************
Reply | Threaded
Open this post in threaded view
|

Re: Ofbiz Installation

Cimballi-2
Shuchi, once again, do this : netstat -abnv -p tcp

And then look at the name of the program, and then look at the program that
are started on your machine.
You can look in the Task Manager and stop it here or in the Services and
stop it there.

Cimballi


On Wed, Apr 22, 2009 at 1:50 PM, shuchi <[hidden email]> wrote:

>
> nope its not solved yet, still facing the same issue
>
> shuchi wrote:
> >
> > I have following error message in
> > Desktop\ofbiz-trunk-current\ofbiz-trunk\runtime\logs\error.log
> >
> > It shows error dated 2009-04-14 - when I downloaded the
> > ofbiz-trunk-current.
> >
> > ***********************************************************************
> > 2009-04-14 14:45:06,500 (main) [     Http11Protocol.java:178:ERROR] Error
> > initializing endpoint
> > java.net.BindException: Address already in use: JVM_Bind:8080
> >       at
> org.apache.tomcat.util.net.JIoEndpoint.init(JIoEndpoint.java:501)
> >       at
> org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:176)
> >       at
> > org.apache.catalina.connector.Connector.initialize(Connector.java:1058)
> >       at
> >
> org.apache.catalina.core.StandardService.initialize(StandardService.java:677)
> >       at
> >
> org.ofbiz.catalina.container.CatalinaContainer.init(CatalinaContainer.java:214)
> >       at
> >
> org.ofbiz.base.container.ContainerLoader.loadContainer(ContainerLoader.java:190)
> >       at
> org.ofbiz.base.container.ContainerLoader.load(ContainerLoader.java:66)
> >       at org.ofbiz.base.start.Start.initStartLoaders(Start.java:250)
> >       at org.ofbiz.base.start.Start.init(Start.java:89)
> >       at org.ofbiz.base.start.Start.main(Start.java:398)
> >
> > ***********************************************************************
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Ofbiz-Installation-tp23101859p23175799.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>
>
Reply | Threaded
Open this post in threaded view
|

Re: Ofbiz Installation

Ashish Nagar
Hello Shuchi,

You can alter the status of any program, if accessing your port, from
Computer Management --> Services and Computer Management-->Internet
Information Services-->Web Sites.

Regards,
--
Ashish Nagar

Cimballi wrote:

> Shuchi, once again, do this : netstat -abnv -p tcp
>
> And then look at the name of the program, and then look at the program that
> are started on your machine.
> You can look in the Task Manager and stop it here or in the Services and
> stop it there.
>
> Cimballi
>
>
> On Wed, Apr 22, 2009 at 1:50 PM, shuchi <[hidden email]> wrote:
>
>  
>> nope its not solved yet, still facing the same issue
>>
>> shuchi wrote:
>>    
>>> I have following error message in
>>> Desktop\ofbiz-trunk-current\ofbiz-trunk\runtime\logs\error.log
>>>
>>> It shows error dated 2009-04-14 - when I downloaded the
>>> ofbiz-trunk-current.
>>>
>>> ***********************************************************************
>>> 2009-04-14 14:45:06,500 (main) [     Http11Protocol.java:178:ERROR] Error
>>> initializing endpoint
>>> java.net.BindException: Address already in use: JVM_Bind:8080
>>>       at
>>>      
>> org.apache.tomcat.util.net.JIoEndpoint.init(JIoEndpoint.java:501)
>>    
>>>       at
>>>      
>> org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:176)
>>    
>>>       at
>>> org.apache.catalina.connector.Connector.initialize(Connector.java:1058)
>>>       at
>>>
>>>      
>> org.apache.catalina.core.StandardService.initialize(StandardService.java:677)
>>    
>>>       at
>>>
>>>      
>> org.ofbiz.catalina.container.CatalinaContainer.init(CatalinaContainer.java:214)
>>    
>>>       at
>>>
>>>      
>> org.ofbiz.base.container.ContainerLoader.loadContainer(ContainerLoader.java:190)
>>    
>>>       at
>>>      
>> org.ofbiz.base.container.ContainerLoader.load(ContainerLoader.java:66)
>>    
>>>       at org.ofbiz.base.start.Start.initStartLoaders(Start.java:250)
>>>       at org.ofbiz.base.start.Start.init(Start.java:89)
>>>       at org.ofbiz.base.start.Start.main(Start.java:398)
>>>
>>> ***********************************************************************
>>>
>>>
>>>      
>> --
>> View this message in context:
>> http://www.nabble.com/Ofbiz-Installation-tp23101859p23175799.html
>> Sent from the OFBiz - User mailing list archive at Nabble.com.
>>
>>
>>    
>
>  

12