GithubHelp home page GithubHelp logo

tonyxx7 / google-secure-data-connector Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 64.36 MB

Automatically exported from code.google.com/p/google-secure-data-connector

Java 98.20% Protocol Buffer 1.70% Shell 0.10%

google-secure-data-connector's People

Contributors

rcolline avatar

Watchers

 avatar

google-secure-data-connector's Issues

SDC csv data *sometimes* all in one column in spreadsheet

What steps will reproduce the problem?
1. =ImportData("http://server.domain.com/report/page.aspx?r=MyParam) in Google 
Apps Spreadsheet cell.
2. SDC configured correctly

What is the expected output? What do you see instead?
Expected is csv data in separate columns in spreadsheet. Instead, sometimes the 
data show up all in a single column, like "item1", "item2", "item3".

What version of the product are you using? On what operating system?
Latest SDC on Linux Mint.

Please provide any additional information below.
If you wait it clears up on its own. Appears sporadically with no discernible 
pattern, when no changes are made to any part of system. Sometimes adding a 
bogus parameter to the URL forces a refresh and corrects the problem.

Normal: 

Row 1 ["colheader1"] ["colheader2"] ["colheader3"] 
Row 2 ["data1"] ["data2"] ["data3"] 

Not normal:

Cell A1 ["colheader1", "colheader2", "colheader3"] 
Cell A2 ["data1", "data2", "data3"]


Original issue reported on code.google.com by [email protected] on 14 Dec 2011 at 1:10

The online documentation has some errors

What steps will reproduce the problem?
1. Go to 
http://code.google.com/securedataconnector/docs/1.0/config.html#Configuring
ResourceRules
2. Look at the reference table
3. The parent tag for <allowDomainViewers> should be <rule> instead of 
<apps>

What is the expected output? What do you see instead?
The parent tag for <allowDomainViewers> should be <rule> instead of <apps>

What version of the product are you using? On what operating system?
1.2-0 

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 9 Apr 2010 at 8:25

Resource file watcher thread never closes the files it opens

The SDC crashed overnight with:
26 May 2010 09:43:10,444
[com.google.dataconnector.client.ResourcesFileWatcher] FATAL
com.google.dataconnector.client.ResourcesFileWatcher  - Could not read
configuration.
java.io.FileNotFoundException: /root/sdc/config/resourceRules.xml (Too many
open files)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:106)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at
com.google.dataconnector.util.FileUtil.getFileInputStream(FileUtil.java:104)
        at
com.google.dataconnector.client.ResourcesFileWatcher.run(ResourcesFileWatcher.ja
va:99)


We have now had it running for just under an hour and it has 39 copies of
resourceRules.xml open.

Occurring in version 1.3

Original issue reported on code.google.com by [email protected] on 25 May 2010 at 10:50

Code review request

Purpose of code changes on this branch:
- Clean up the installation locations.
- Update and simplify infrastructure scripts to reflect modern realities.

When reviewing my code changes, please focus on:
- Installation locations.
- Mechanisms of managing the daemons.

After the review, I'll merge this branch into:
/trunk



Original issue reported on code.google.com by [email protected] on 4 Aug 2009 at 10:31

Feature: allow anonymous access or via oauth for apps on market place

Hi guys,

the cloud/legacy integration become a necessity for many SMBs.

it would be great if you allow anonymous access and the possibility to target a 
specific domain and/or agent via a header by example

// sample usage 
fetchreq.setHeader(new HTTPHeader("use_intranet", "yes"));
fetchreq.setHeader(new HTTPHeader("sdc_domain", "mydomain.com"));
fetchreq.setHeader(new HTTPHeader("sdc_agent_id", "an agent id"));

it's up to you, but, security could be enforced using a new scope feed (defined 
in app manifest) ...

this feature will give us (SaaS guys) the possiblity to create tool to monitor 
SDC in background, sync data between gapps / legacy, etc ... (cron on a GAE app 
installed on a domain) for any domain/agent.

what do you think about this ?

Thanks


Original issue reported on code.google.com by [email protected] on 15 Jul 2012 at 4:59

1

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 10 Jan 2010 at 3:49

Support for JDBC

Need support for JDBC over SDC

Saqib

Original issue reported on code.google.com by docbook.xml on 26 Jan 2011 at 10:00

update SDC-prober-gadget with capabilities to fetch SDC Diagnostic info

SDC can provide diagnostic info, if there is a SDC debug header in the 
request. This info is useful when there is a failure in SDC request 
processing and the user would like to see the additional info provided by 
SDC to help in debugging the problem.

Add capabilities to SDC prober gadget to let the user specify whethere the 
gadget should fetch SDC diagnostic info 

Original issue reported on code.google.com by [email protected] on 10 Apr 2009 at 9:18

Allow access for unauthenticated users.

My company needs to be able to send requests over SDC that are initiated by 
unauthenticated users. Unfortunately this appears to be completely impossible 
with the current version of SDC.

A solution that would not require enabling full anonymous access would be 
allowing a Google App Engine application to specify the principal that is used 
by SDC to authorize requests.

Original issue reported on code.google.com by [email protected] on 2 Dec 2011 at 11:10

1.3-rc0 does not attempt to start the connection healthchecker

What steps will reproduce the problem?
1. bin/start.sh


What is the expected output? What do you see instead?

Should at least observe "healthcheck thread is started" in the agent.log
when set at info logging level.

What version of the product are you using? On what operating system?

1.3-rc0

Please provide any additional information below.

In SdcConnection.java a RUN_HEALTH_CHECK flag was added to the code:

// Setup Healthcheck
if (RUN_HEALTH_CHECK) {
    healthCheckHandler.setFrameSender(frameSender);
    healthCheckHandler.setFailCallback(this);
    frameReceiver.registerDispatcher(FrameInfo.Type.HEALTH_CHECK,
healthCheckHandler);
    healthCheckHandler.start();
}

Howeever, RUN_HEALTH_CHECK is defined as:

private final static boolean RUN_HEALTH_CHECK = false;

And therefore the health checker will never run... unless you change the
code and recompile. :)



Original issue reported on code.google.com by [email protected] on 27 May 2010 at 2:47

Windows supprt

Would really like the ability to run SDC as a service on Windows. 

If a native openssh server is needed would cygwin so do.

Original issue reported on code.google.com by miller.garym on 3 Jun 2011 at 5:27

[email protected] in 2-Step Verification Enrollment Report?

What steps will reproduce the problem?
1. GApps Dashboard -> Usage & Reports -> Additional Reports
2. 2-Step Verification Enrollment Report -> Download
3. Enrollmentreport.csv

What is the expected output? What do you see instead?
Under Settings -> Security, I have turned on Enforcement for 2-step 
Verfication, and I have previously enrolled all users in 2-step, I expect that 
the last two fields in
"date","account_id","account_name","enrolled_2-step_verification","enforced_2-st
ep_verification",
should be true,true for all users.

I do see true,true for all users in my domain, but I also see
"2012-09-12","71a41e6e0c0f3baa","[email protected]",false,
true,

This is confusing enough.  However, more confusing is that I do not recall 
signing up for SDC?  I do have a linux/Ubuntu VPS running my domain, but I did 
not install SDC on that.  Our other PCs are under Win7.

In any case, following directions, I went to
https://www.google.com/a/cpanel/mydomain.com/SdcSettings
I see no boxes checked.  Just to be sure I save this with the black boxes 
(direction to deactivate SDC).  After three days, I still see
https://www.google.com/a/cpanel/ingber.com/SdcSettings
in my EnrollmentReport.csv?

I am following instructions on
http://support.google.com/a/bin/answer.py?hl=en&answer=115739#SdcUsername

What version of the product are you using? On what operating system?


Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 12 Sep 2012 at 2:26

Healthcheck-Gadget Not Working / Not Available

What steps will reproduce the problem?
1. set up healthcheck-gadget based on doc., the gadget url is not available - 
and returns invalid gadget error.
2. when using the url from source file to set up, there is no data reported.

What is the expected output? What do you see instead?
No output seen.

What version of the product are you using? On what operating system?
Latest

Please provide any additional information below.
Customer reported on Google App Engine forum as below:
-------------
Reported by [email protected], Mar 11, 2010
For some unknown reason the source of the gadget below is taken:
http://google-secure-data-connector.googlecode.com/svn/trunk/data-connector-agen
t/resources/gadgets/healthcheck-gadget.xml
(not working)

Querying the SVN repository of Google itself
(http://google-secure-data-connector.googlecode.com/svn/), I found changes
(new releases) in one of the professionals in Google (Vasu Nori), a valid
address for that gadget:
http://google-secure-data-connector.googlecode.com/svn/changes/vnori/x2a4/data-c
onnector-agent/resources/gadgets/healthcheck-gadget.xml
(alternative palliative)

It would be extremelly important to find out why was disabled the gadget
version of the production and when the gadget will be reposted.

Our installed SDC is passing by instabilities, the gadget could help to
monitor its status.

--------------

Original issue reported on code.google.com by [email protected] on 24 Aug 2011 at 3:21

Password does not accept non alphanumeric characters

What steps will reproduce the problem?
1. Setup SDC on your Dashboard with a strong password containing 
non-alphanumeric passwords
2. Setup your localConfig.xml with the password
3. Try starting the agent

What is the expected output? What do you see instead?
It connects to SDC and functions as normal
Instead the logs just hangs on:
log4j:ERROR Could not find value for key log4j.appender.A.layout
log4j:ERROR No layout set for the appender named [A].


What version of the product are you using? On what operating system?
1.3-rc2 Arch Linux (fully updated)

Please provide any additional information below.
Either prevent passwords from being entered with non-alphanumeric characters 
when setting up SDC or fix password input to allow such characters.

Original issue reported on code.google.com by [email protected] on 11 Jan 2013 at 9:33

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.