Hello Pavan,
please check whether you have all the 6 necessary projects imported and compiled into Eclipse (…client.java is optional,
but compiles, too) and the target platform correctly configured (“Flux Target Definition” from the …flux.releng project).
If this is done, the projects should compile and I don’t see whether the context menu shouldn’t be there.
Then, define an “Eclipse Application” run configuration, configure the VM parameters
-Dflux-eclipse-editor-connect=false, -Dflux-host=http://localhost:3000 and
-Dflux.user.name=defaultuser and run it.
Note that the default user is not
defaultUser, but it is defaultuser (with a lowercase “u”), I also made this mistake.
That all worked for me.
Ciao, Michael
From: flux-dev-bounces@xxxxxxxxxxx [mailto:flux-dev-bounces@xxxxxxxxxxx]
On Behalf Of Pavan Daga
Sent: Freitag, 6. Februar 2015 06:31
To: flux-dev@xxxxxxxxxxx
Subject: Re: [flux-dev] flux-dev Digest, Vol 10, Issue 2
Thanks Michael. That got me started.
Now when I do an npm start. I am not using any AUTHENTICATION thus using the defaultUser.
Same has been passed for the OSGI application and the Eclipse Application.
But I have the Flux >> Connect menu option disabled.
On Thu, Feb 5, 2015 at 8:36 PM, <flux-dev-request@xxxxxxxxxxx> wrote:
Send flux-dev mailing list submissions to
flux-dev@xxxxxxxxxxx
To subscribe or unsubscribe via the World Wide Web, visit
https://dev.eclipse.org/mailman/listinfo/flux-dev
or, via email, send a message with subject or body 'help' to
flux-dev-request@xxxxxxxxxxx
You can reach the person managing the list at
flux-dev-owner@xxxxxxxxxxx
When replying, please edit your Subject line so it is more specific
than "Re: Contents of flux-dev digest..."
Today's Topics:
1. Fwd: FLUX Server NPM Install on Windows (Pavan Daga)
2. Re: Fwd: FLUX Server NPM Install on Windows (Muehlberg, Michael)
3. Re: quick fix implementation question
(Jayaprakash Arthanareeswaran)
----------------------------------------------------------------------
Message: 1
Date: Thu, 5 Feb 2015 18:38:06 +0530
From: Pavan Daga <meetpavanhere@xxxxxxxxx>
To: flux-dev@xxxxxxxxxxx
Subject: [flux-dev] Fwd: FLUX Server NPM Install on Windows
Message-ID:
<CAO=zBfLq7V2vHj4CDMH25DGx2dPvQytFHeAh4H+7pdvCMqti_w@xxxxxxxxxxxxxx>
Content-Type: text/plain; charset="utf-8"
Hi Team,
I am trying to get started with FLUX on Windows.
I have taken the master copy from GIT. Installed Rabbit MQ and Node JS.
Now when I do an npm install from the windows command line I am getting
errors.
Attached is the debug log.
>From one of the forums I did notice running the npm bin command to get
"C:\flux-master\node.server\node_modules\.bin".
Inside this location I change the backslashes to forward slashes for it to
work in Windows. Yet I have the same problems.
Can you help me get started.
Thanks,
Pavan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/flux-dev/attachments/20150205/e2efb369/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: npm-debug.log
Type: application/octet-stream
Size: 4727 bytes
Desc: not available
URL: <https://dev.eclipse.org/mailman/private/flux-dev/attachments/20150205/e2efb369/attachment.obj>
------------------------------
Message: 2
Date: Thu, 5 Feb 2015 13:19:50 +0000
From: "Muehlberg, Michael" <michael.muehlberg@xxxxxxx>
To: Flux developer discussions <flux-dev@xxxxxxxxxxx>
Subject: Re: [flux-dev] Fwd: FLUX Server NPM Install on Windows
Message-ID:
<4057EE45B8A97640A3757194FEA1444D3C01BB5B@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
Content-Type: text/plain; charset="utf-8"
Hello Pavan,
the JSON has problems under Windows. It cannot install the bower package. Just install it by hand:
Delete the line
"prepublish": "cd flux.orion.integration; $(npm bin)/bower install"
from the package.json in the node.server folder and save it.
Then do the npm install again. No errors should happen then. I?m not sure whether a new npm install is necessary if you have done one before, but this is how I got it to run.
Then manually install the bower package via the following command
> node_modules/.bin/bower install --config.https-proxy=<your_proxy> --config.proxy=<your_proxy> --config.strict-ssl=false --config.cwd=flux.orion.integration
This worked on my Win machine. Note that you have to insert your proxy in <your_proxy> if you need one.
Ciao, Michael
From: flux-dev-bounces@xxxxxxxxxxx [mailto:flux-dev-bounces@xxxxxxxxxxx] On Behalf Of Pavan Daga
Sent: Donnerstag, 5. Februar 2015 14:08
To: flux-dev@xxxxxxxxxxx
Subject: [flux-dev] Fwd: FLUX Server NPM Install on Windows
Hi Team,
I am trying to get started with FLUX on Windows.
I have taken the master copy from GIT. Installed Rabbit MQ and Node JS.
Now when I do an npm install from the windows command line I am getting errors.
Attached is the debug log.
From one of the forums I did notice running the npm bin command to get
"C:\flux-master\node.server\node_modules\.bin".
Inside this location I change the backslashes to forward slashes for it to work in Windows. Yet I have the same problems.
Can you help me get started.
Thanks,
Pavan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/flux-dev/attachments/20150205/755d1a29/attachment.html>
------------------------------
Message: 3
Date: Thu, 5 Feb 2015 20:35:47 +0530
From: Jayaprakash Arthanareeswaran <jarthana@xxxxxxxxxx>
To: Flux developer discussions <flux-dev@xxxxxxxxxxx>
Subject: Re: [flux-dev] quick fix implementation question
Message-ID:
<OF15508D4B.DC6AE8BB-ON65257DE3.005244DE-65257DE3.0052EE96@xxxxxxxxxx>
Content-Type: text/plain; charset="utf-8"
Hi Martin,
I brought back my Orion/Flux set up to life yesterday and surprised to see
things not working. But I guess my mind was bit rusty. Today after
synching the repos and bit of cleaning up, I find them working alright.
One thing to notice is , quick fix needs to be implemented per problem
basis as that's the way JDT implements it. At the moment, the only quick
fix offered is the "remove modified quick fix". So, try out a simple code
like this:
public class Main {
abstract int invalid = 0;
}
Now when you hover on the problem, you should see a "Apply quickfix" just
below the error message.Clicking on that should remove the keyword
"abstract".
I am planning to add more simple quick fixes in the coming days.
Let me know what exactly is the problem you seeing? In my case, I had to
reload the Flux plugin, but I am sure you have already tried that.
Regards,
Jay
From: Martin Lippert <mlippert@xxxxxxxxx>
To: Flux developer discussions <flux-dev@xxxxxxxxxxx>
Date: 01/27/2015 08:48 PM
Subject: [flux-dev] quick fix implementation question
Sent by: flux-dev-bounces@xxxxxxxxxxx
Hey Jay,
I merged your pull request and run everything locally, but I can?t get the
quick fix to appear in the editor.
I tried the full Orion UI (not just the embedded editor piece) and I am
not sure how to trigger the quick fix to appear. Can you help?
Thanks!
-Martin
_______________________________________________
flux-dev mailing list
flux-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe
from this list, visit
https://dev.eclipse.org/mailman/listinfo/flux-dev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dev.eclipse.org/mailman/private/flux-dev/attachments/20150205/df297e8b/attachment.html>
------------------------------
_______________________________________________
flux-dev mailing list
flux-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/flux-dev
End of flux-dev Digest, Vol 10, Issue 2
***************************************
|